The Kucoin Futures API allows developers to programmatically access Kucoin's futures trading functionality. Using the API, developers can create applications that can trade futures contracts on Kucoin's platform.
Here are some examples of what you can build using the Kucoin Futures API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
kucoin_futures: {
type: "app",
app: "kucoin_futures",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api-futures.kucoin.com/api/v1/timestamp`,
headers: {
"api_key": `${this.kucoin_futures.$auth.api_key}`,
"secret_key": `${this.kucoin_futures.$auth.secret_key}`,
"passphrase": `${this.kucoin_futures.$auth.passphrase}`,
},
})
},
})
Kucoin Futures uses API keys for authentication. When you connect your Kucoin Futures account, Pipedream securely stores the keys so you can easily authenticate to Kucoin Futures APIs in both code and no-code steps.
To connect your Kucoin Futures account to Pipedream,