The most trusted crypto events database in the industry.
Exposes an HTTP API for scheduling messages to be emitted at a future time
Emit new event based on a time interval before an upcoming event in the calendar. This source uses Pipedream's Task Scheduler. See the documentation for more information and instructions for connecting your Pipedream account.
Emit new event at a specified time before a card is due.
Emit new event when a Calendar event is upcoming, this source is using reminderMinutesBeforeStart
property of the event to determine the time it should emit.
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
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}`,
},
})
},
})
Pipedream is an API that allows you to build applications that can connect to
various data sources and processes them in real-time. You can use Pipedream to
create applications that can perform ETL (Extract, Transform, and Load) tasks,
as well as to create data-driven workflows.
Some examples of applications you can build using the Pipedream API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pipedream: {
type: "app",
app: "pipedream",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pipedream.com/v1/users/me`,
headers: {
Authorization: `Bearer ${this.pipedream.$auth.api_key}`,
},
})
},
})