What can I build using the Coinranking API?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
coinranking: {
type: "app",
app: "coinranking",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.coinranking.com/v2/coins`,
headers: {
"x-access-token": `${this.coinranking.$auth.api_key}`,
},
})
},
})
Coinranking uses API keys for authentication. When you connect your Coinranking account, Pipedream securely stores the keys so you can easily authenticate to Coinranking APIs in both code and no-code steps.
Use the Coinranking key generator to get a free API key.