View as Markdown
CoinMarketCal icon

CoinMarketCal ACTION

Search Events

Retrieve a list of events based on specified filters. See the docs here
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's CoinMarketCal account once, then configure and run Search Events from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "coinmarketcal-search-events",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    coinmarketcal: { authProvisionId: "apn_xxxxxxx" },
    dateRangeStart: "Date Range Start",
    dateRangeEnd: "Date Range End",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Search Events inputs
Property Type Description
dateRangeStart Date Range Start string
Start date (default value is today) (format like 2017-11-25).
Optional
dateRangeEnd Date Range End string
End date (default value is date of furthest event) (format like 2017-11-25).
Optional
coins Coins string[]
The Ids of the coins.
Optional Dynamic
categories Categories string[]
The Ids of the categories.
Optional Dynamic
sortBy Sort By string
The order in which the results will be listed.
Optional
showOnly Show Only string
The type of results that will be listed.
Optional
showViews Show Views boolean
Show the number of views of the event.
Optional
translations Translations string
Translated title and description.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
coinmarketcal-search-events
Version
0.0.3
App
CoinMarketCal
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes