get_exchanges_tickers
Retrieve cryptocurrency trading data from specific exchanges, including prices, volumes, and market metrics for informed trading decisions.
Instructions
When using this tool, always use the jq_filter parameter to reduce the response size and improve performance.
Only omit if you're sure you don't need the data.
This endpoint allows you to query exchange's tickers based on exchange's ID
Response Schema
{
$ref: '#/$defs/ticker_get_response',
$defs: {
ticker_get_response: {
type: 'object',
properties: {
name: {
type: 'string',
description: 'coin name'
},
tickers: {
type: 'array',
description: 'list of tickers',
items: {
type: 'object',
properties: {
base: {
type: 'string',
description: 'coin ticker base currency'
},
bid_ask_spread_percentage: {
type: 'number',
description: 'coin ticker bid ask spread percentage'
},
coin_id: {
type: 'string',
description: 'coin ticker base currency coin ID'
},
converted_last: {
type: 'object',
description: 'coin ticker converted last price',
properties: {
btc: {
type: 'number'
},
eth: {
type: 'number'
},
usd: {
type: 'number'
}
}
},
converted_volume: {
type: 'object',
description: 'coin ticker converted volume',
properties: {
btc: {
type: 'number'
},
eth: {
type: 'number'
},
usd: {
type: 'number'
}
}
},
cost_to_move_down_usd: {
type: 'number',
description: 'coin ticker cost to move down in usd'
},
cost_to_move_up_usd: {
type: 'number',
description: 'coin ticker cost to move up in usd'
},
is_anomaly: {
type: 'boolean',
description: 'coin ticker anomaly'
},
is_stale: {
type: 'boolean',
description: 'coin ticker stale'
},
last: {
type: 'number',
description: 'coin ticker last price'
},
last_fetch_at: {
type: 'string',
description: 'coin ticker last fetch timestamp'
},
last_traded_at: {
type: 'string',
description: 'coin ticker last traded timestamp'
},
market: {
type: 'object',
description: 'coin ticker exchange',
properties: {
has_trading_incentive: {
type: 'boolean',
description: 'exchange trading incentive'
},
identifier: {
type: 'string',
description: 'exchange identifier'
},
name: {
type: 'string',
description: 'exchange name'
},
logo: {
type: 'string',
description: 'exchange image url'
}
},
required: [ 'has_trading_incentive',
'identifier',
'name'
]
},
target: {
type: 'string',
description: 'coin ticker target currency'
},
target_coin_id: {
type: 'string',
description: 'coin ticker target currency coin ID'
},
timestamp: {
type: 'string',
description: 'coin ticker timestamp'
},
token_info_url: {
type: 'string',
description: 'coin ticker token info url'
},
trade_url: {
type: 'string',
description: 'coin ticker trade url'
},
trust_score: {
type: 'string',
description: 'coin ticker trust score'
},
volume: {
type: 'number',
description: 'coin ticker volume'
}
}
}
}
}
}
}
}
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| coin_ids | No | filter tickers by coin IDs, comma-separated if querying more than 1 coin *refers to [`/coins/list`](/reference/coins-list). | |
| depth | No | include 2% orderbook depth (Example: cost_to_move_up_usd & cost_to_move_down_usd),default: false | |
| dex_pair_format | No | set to `symbol` to display DEX pair base and target as symbols, default: `contract_address` | |
| include_exchange_logo | No | include exchange logo, default: false | |
| order | No | use this to sort the order of responses, default: trust_score_desc | |
| page | No | page through results | |
| jq_filter | No | A jq filter to apply to the response to include certain fields. Consult the output schema in the tool description to see the fields that are available. For example: to include only the `name` field in every object of a results array, you can provide ".results[].name". For more information, see the [jq documentation](https://jqlang.org/manual/). |