with BuySellAds and CoinMarketCal?
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
Retrieve a list of events based on specified filters. See the docs here
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
buysellads: {
type: "app",
app: "buysellads",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://papi.buysellads.com/daily-stats`,
params: {
key: `${this.buysellads.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})