Skip to main content
GET
/
coins
/
{id}
/
tickers
Coin Tickers by ID
curl --request GET \
  --url https://api.coingecko.com/api/v3/coins/{id}/tickers \
  --header 'x-cg-demo-api-key: <api-key>'
{
  "name": "Bitcoin",
  "tickers": [
    {
      "base": "BTC",
      "target": "USDT",
      "market": {
        "name": "Binance",
        "identifier": "binance",
        "has_trading_incentive": false,
        "logo": "https://coin-images.coingecko.com/markets/images/52/small/binance.jpg?1706864274"
      },
      "last": 76894.07,
      "volume": 13786.06991,
      "cost_to_move_up_usd": 19320706.3958517,
      "cost_to_move_down_usd": 16360235.3694131,
      "converted_last": {
        "btc": 0.99664066,
        "eth": 36.004874,
        "usd": 76856
      },
      "converted_volume": {
        "btc": 13740,
        "eth": 496366,
        "usd": 1059536991
      },
      "trust_score": null,
      "bid_ask_spread_percentage": 0.010013,
      "timestamp": "2026-05-18T13:37:29+00:00",
      "last_traded_at": "2026-05-18T13:37:29+00:00",
      "last_fetch_at": "2026-05-18T13:37:29+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",
      "coin_mcap_usd": 1544810408447.1313
    }
  ]
}

Notes

  • Tickers are paginated to 100 items per page.
  • Use exchange_ids to filter tickers for a specific exchange.
  • When dex_pair_format=symbol, DEX pair base and target display as symbols (e.g. WETH, USDC) instead of contract addresses.
  • When sorting by volume, converted_volume is used instead of volume.

SDK Examples

const response = await client.coins.tickers.get('bitcoin');

console.log(JSON.stringify(response, null, 2));

Authorizations

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

Path Parameters

id
string
default:bitcoin
required

Coin ID. *refers to /coins/list

Query Parameters

exchange_ids
string

Exchange ID. *refers to /exchanges/list

Include exchange logo. Default: false

page
integer

Page through results

order
enum<string>

Sort the order of responses. Default: trust_score_desc

Available options:
trust_score_desc,
trust_score_asc,
volume_desc,
volume_asc
depth
boolean

Include 2% orderbook depth, i.e. cost_to_move_up_usd and cost_to_move_down_usd. Default: false

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

Coin tickers

name
string
required

Coin name

tickers
object[]
required

List of tickers