listings_latest

Pack: coinmarketcap · Endpoint: https://gateway.pipeworx.io/coinmarketcap/mcp

Paginated list of cryptocurrencies ranked by market cap (or volume/price-change); returns rank, price, market cap, 24h volume, and 24h change per coin. Sortable; up to 5000 results.

Parameters

NameTypeRequiredDescription
startnumberno1-based rank offset (default 1)
limitnumberno1-5000 (default 20)
sortstringnomarket_cap | volume_24h | percent_change_24h | name | symbol
convertstringnoQuote currency (default USD)

Example call

Arguments

{
  "limit": 10
}

curl

curl -X POST https://gateway.pipeworx.io/coinmarketcap/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"listings_latest","arguments":{"limit":10}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('listings_latest', {
  "limit": 10
});

More examples

{
  "start": 1,
  "limit": 50,
  "sort": "market_cap",
  "convert": "USD"
}

Response shape

FieldTypeDescription
dataarrayArray of top-ranked cryptocurrencies
statusobject
Full JSON Schema
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of top-ranked cryptocurrencies",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "description": "CMC cryptocurrency ID"
          },
          "name": {
            "type": "string",
            "description": "Cryptocurrency name"
          },
          "symbol": {
            "type": "string",
            "description": "Ticker symbol"
          },
          "slug": {
            "type": "string",
            "description": "URL-friendly slug"
          },
          "cmc_rank": {
            "type": "integer",
            "description": "Market cap rank"
          },
          "num_market_pairs": {
            "type": "integer",
            "description": "Number of trading pairs"
          },
          "circulating_supply": {
            "type": "number",
            "description": "Circulating supply"
          },
          "total_supply": {
            "type": "number",
            "description": "Total supply"
          },
          "max_supply": {
            "type": [
              "number",
              "null"
            ],
            "description": "Maximum supply cap"
          },
          "last_updated": {
            "type": "string",
            "description": "Last update ISO timestamp"
          },
          "date_added": {
            "type": "string",
            "description": "Date added to CMC"
          },
          "tags": {
            "type": "array",
            "description": "Associated tags",
            "items": {
              "type": "string"
            }
          },
          "platform": {
            "type": [
              "object",
              "null"
            ],
            "description": "Blockchain platform info"
          },
          "quote": {
            "type": "object",
            "description": "Price quotes in requested currency"
          }
        }
      }
    },
    "status": {
      "type": "object",
      "properties": {
        "timestamp": {
          "type": "string",
          "description": "ISO timestamp of the quote"
        },
        "error_code": {
          "type": "integer",
          "description": "Error code (0 for success)"
        },
        "error_message": {
          "type": [
            "string",
            "null"
          ],
          "description": "Error message if applicable"
        },
        "elapsed": {
          "type": "integer",
          "description": "Elapsed milliseconds"
        },
        "credit_count": {
          "type": "integer",
          "description": "API credits consumed"
        }
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "coinmarketcap": {
      "url": "https://gateway.pipeworx.io/coinmarketcap/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026