with Botcake and ByBit?
Get a list of tools associated with the specified page. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
botcake: {
type: "app",
app: "botcake",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://botcake.io/api/public_api/v1/pages/${this.botcake.$auth.page_id}/keywords`,
headers: {
"access-token": `${this.botcake.$auth.api_key}`,
},
})
},
})
The ByBit API offers programmatic access to ByBit's crypto trading platform, enabling you to automate trades, manage accounts, and retrieve market data. With Pipedream, you can harness this API to create custom workflows that react to market changes, automate trading strategies, or synchronize your ByBit data with other services for analysis or record-keeping.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bybit: {
type: "app",
app: "bybit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bybit.com/v2/public/time`,
})
},
})