with CoinMarketCal and Botcake?
Obtain a list of all available event categories in CoinMarketCal. See the docs here
Obtain a list of all available coins in CoinMarketCal. See the docs here
Get a list of tools associated with the specified page. See the documentation
CoinMarketCal API delivers information on cryptocurrency events. It can serve as a critical data source for market sentiment analysis, trading, and investment strategies. With Pipedream, you can trigger workflows based on this data, process and analyze it, or connect it to other services to create comprehensive crypto market tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
coinmarketcal: {
type: "app",
app: "coinmarketcal",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://developers.coinmarketcal.com/v1/events`,
headers: {
"x-api-key": `${this.coinmarketcal.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})