GET
/
exchanges
/
{id}
/
tickers
Exchange Tickers by ID
curl --request GET \
  --url https://api.coingecko.com/api/v3/exchanges/{id}/tickers \
  --header 'x-cg-demo-api-key: <api-key>'
{
  "name": "Binance",
  "tickers": [
    {
      "base": "BTC",
      "target": "USDT",
      "market": {
        "name": "Binance",
        "identifier": "binance",
        "has_trading_incentive": false,
        "logo": "https://assets.coingecko.com/markets/images/52/small/binance.jpg?1706864274"
      },
      "last": 69476,
      "volume": 20242.03975,
      "cost_to_move_up_usd": 19320706.3958517,
      "cost_to_move_down_usd": 16360235.3694131,
      "converted_last": {
        "btc": 1.000205,
        "eth": 20.291404,
        "usd": 69498
      },
      "converted_volume": {
        "btc": 20249,
        "eth": 410802,
        "usd": 1406996874
      },
      "trust_score": "green",
      "bid_ask_spread_percentage": 0.010014,
      "timestamp": "2024-04-08T04:02:01+00:00",
      "last_traded_at": "2024-04-08T04:02:01+00:00",
      "last_fetch_at": "2024-04-08T04:03:00+00:00",
      "is_anomaly": false,
      "is_stale": false,
      "trade_url": "https://www.binance.com/en/trade/BTC_USDT?ref=37754157",
      "token_info_url": null,
      "coin_id": "bitcoin",
      "target_coin_id": "tether"
    }
  ]
}

Note

  • Responses are paginated and limited to 100 tickers per page. You may specify the page number using the page params to retrieve the tickers accordingly.
  • order=base_target sorts tickers by base symbol, then target symbol, in lexicographical order (0 -> 9, followed by a -> z).
    This sorting method ensures stable pagination results, minimizing cases where cached responses might otherwise cause duplicate or missing tickers across paginated pages.
  • When dex_pair_format=symbol, the DEX pair base and target are displayed in symbol format (e.g. WETH, USDC) instead of as contract addresses.
  • Cache / Update Frequency: every 60 seconds for all the API plans.

Authorizations

x-cg-demo-api-key
string
header
required

Path Parameters

id
string
default:binance
required

exchange ID *refers to /exchanges/list.

Example:

"binance"

Query Parameters

coin_ids
string
default:bitcoin

filter tickers by coin IDs, comma-separated if querying more than 1 coin *refers to /coins/list.

include exchange logo, default: false

page
integer

page through results

depth
boolean

include 2% orderbook depth (Example: cost_to_move_up_usd & cost_to_move_down_usd),default: false

order
enum<string>

use this to sort the order of responses, default: trust_score_desc

Available options:
trust_score_desc,
trust_score_asc,
volume_desc,
volume_asc,
base_target
dex_pair_format
enum<string>

set to symbol to display DEX pair base and target as symbols, default: contract_address

Available options:
contract_address,
symbol

Response

200 - application/json

Get exchange tickers

The response is of type object.