View as Markdown
CoinMarketCap icon

CoinMarketCap ACTION

Get Latest Listings

Returns a paginated list of all active cryptocurrencies with latest market data. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's CoinMarketCap account once, then configure and run Get Latest Listings 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: "coinmarketcap-latest-listings",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    coinmarketcap: { authProvisionId: "apn_xxxxxxx" },
    start: 10,
    limit: 10,
  },
})

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.

Get Latest Listings inputs
Property Type Description
start Start integer
Optionally offset the start (1-based index) of the paginated list of items to return.
Optional
limit Limit integer
Optionally specify the number of results to return. Use this parameter and the "start" parameter to determine your own pagination size.
Optional
volume24hMin Volume24hMin integer
Optionally specify a threshold of minimum 24 hour USD volume to filter results by.
Optional
convert Convert string
Optionally calculate market quotes in up to 120 currencies at once by passing a comma-separated list of cryptocurrency or fiat currency symbols. Each additional convert option beyond the first requires an additional call credit. A list of supported fiat options can be found at https://coinmarketcap.com/api/documentation/v1/#section/Standards-and-Conventions. Each conversion is returned in its own "quote" object.
Optional
convertId Convert ID string
Optionally calculate market quotes by CoinMarketCap ID instead of symbol. This option is identical to convert outside of ID format. Ex: Convert ID = 1,2781 would replace Convert = BTC,USD in your query. This parameter cannot be used when Convert is used.
Optional
sort Sort string
What field to sort the list of cryptocurrencies by.
Optional
sortDir SortDir string
The direction in which to order cryptocurrencies against the specified sort.
Optional
cryptocurrencyType CryptocurrencyType string
The type of cryptocurrency to include.
Optional
aux Supplemental Fields string[]
Optionally specify supplemental data fields to return.
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
coinmarketcap-latest-listings
Version
0.1.3
App
CoinMarketCap
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes