tickers_latest
Pack: coinpaprika · Endpoint: https://gateway.pipeworx.io/coinpaprika/mcp
Latest price + market cap + volume. Without coin_id returns all tickers; with coin_id returns one.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
coin_id | string | no | |
quotes | string | no | Comma-sep quote currencies — USD,BTC,ETH,EUR,GBP,JPY (default USD) |
Example call
curl -X POST https://gateway.pipeworx.io/coinpaprika/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"tickers_latest","arguments":{}}}'
Response shape
Full JSON Schema
{
"oneOf": [
{
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Coin ID"
},
"name": {
"type": "string",
"description": "Coin name"
},
"symbol": {
"type": "string",
"description": "Coin symbol"
},
"rank": {
"type": "number",
"description": "Market cap rank"
},
"circulating_supply": {
"type": "number",
"description": "Circulating supply"
},
"total_supply": {
"type": "number",
"description": "Total supply"
},
"max_supply": {
"type": "number",
"description": "Maximum supply"
},
"beta_value": {
"type": "number",
"description": "Beta volatility measure"
},
"first_data_at": {
"type": "string",
"description": "First data timestamp"
},
"last_updated": {
"type": "string",
"description": "Last update timestamp"
},
"quotes": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"price": {
"type": "number",
"description": "Current price"
},
"volume_24h": {
"type": "number",
"description": "24h trading volume"
},
"market_cap": {
"type": "number",
"description": "Market capitalization"
},
"percent_change_1h": {
"type": "number",
"description": "1h price change %"
},
"percent_change_24h": {
"type": "number",
"description": "24h price change %"
},
"percent_change_7d": {
"type": "number",
"description": "7d price change %"
}
}
},
"description": "Price quotes by currency"
}
}
},
"description": "Array of all tickers with latest prices and market data"
},
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Coin ID"
},
"name": {
"type": "string",
"description": "Coin name"
},
"symbol": {
"type": "string",
"description": "Coin symbol"
},
"rank": {
"type": "number",
"description": "Market cap rank"
},
"circulating_supply": {
"type": "number",
"description": "Circulating supply"
},
"total_supply": {
"type": "number",
"description": "Total supply"
},
"max_supply": {
"type": "number",
"description": "Maximum supply"
},
"beta_value": {
"type": "number",
"description": "Beta volatility measure"
},
"first_data_at": {
"type": "string",
"description": "First data timestamp"
},
"last_updated": {
"type": "string",
"description": "Last update timestamp"
},
"quotes": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"price": {
"type": "number",
"description": "Current price"
},
"volume_24h": {
"type": "number",
"description": "24h trading volume"
},
"market_cap": {
"type": "number",
"description": "Market capitalization"
},
"percent_change_1h": {
"type": "number",
"description": "1h price change %"
},
"percent_change_24h": {
"type": "number",
"description": "24h price change %"
},
"percent_change_7d": {
"type": "number",
"description": "7d price change %"
}
}
},
"description": "Price quotes by currency"
}
},
"description": "Single ticker with latest price and market data"
}
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"coinpaprika": {
"url": "https://gateway.pipeworx.io/coinpaprika/mcp"
}
}
}
See Getting Started for client-specific install steps.