---
title: "Coin Tickers by ID"
method: GET
path: "/coins/{id}/tickers"
tags: ["Coins"]
---

# Coin Tickers by ID

`GET /coins/{id}/tickers`

This endpoint allows you to **query the coin tickers on both centralized exchange (CEX) and decentralized exchange (DEX) based on a particular coin ID**

## Path parameters

- `id` string, required

## Query parameters

- `exchange_ids` string
- `include_exchange_logo` boolean
- `page` number
- `order` 'trust_score_desc' | 'trust_score_asc' | 'volume_desc' | 'volume_asc'
- `depth` boolean

## Response `200`

Get coin tickers

- CoinsTickers
  - `name` string — coin name
  - `tickers` object[] — list of tickers
    - `base` string — coin ticker base currency
    - `target` string — coin ticker target currency
    - `market` object — coin ticker exchange
      - `name` string, required — exchange name
      - `identifier` string, required — exchange identifier
      - `has_trading_incentive` boolean, required — exchange trading incentive
      - `logo` string — exchange image url
    - `last` number — coin ticker last price
    - `volume` number — coin ticker volume
    - `cost_to_move_up_usd` number — coin ticker cost to move up in usd
    - `cost_to_move_down_usd` number — coin ticker cost to move down in usd
    - `converted_last` object — coin ticker converted last price
      - `btc` number
      - `eth` number
      - `usd` number
    - `converted_volume` object — coin ticker converted volume
      - `btc` number
      - `eth` number
      - `usd` number
    - `trust_score` string — coin ticker trust score
    - `bid_ask_spread_percentage` number — coin ticker bid ask spread percentage
    - `timestamp` string — coin ticker timestamp
    - `last_traded_at` string — coin ticker last traded timestamp
    - `last_fetch_at` string — coin ticker last fetch timestamp
    - `is_anomaly` boolean — coin ticker anomaly
    - `is_stale` boolean — coin ticker stale
    - `trade_url` string — coin ticker trade url
    - `token_info_url` string, nullable — coin ticker token info url
    - `coin_id` string — coin ticker base currency coin ID
    - `target_coin_id` string — coin ticker target currency coin ID

---

[API](https://skmtc.dev/coingecko/apis/coingecko-api.md) · [All operations](https://skmtc.dev/coingecko/apis/coingecko-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/coingecko/coingecko-api/revisions/0484eb6fcafa/schema)
