Skip to main content
GET
/
v3
/
exchanges
/
{id}
/
tickers
Exchange tickers
curl --request GET \
  --url https://api.cryptorank.io/v3/exchanges/{id}/tickers \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 12345,
    "pairName": "BTC/USDT",
    "baseSymbol": "BTC",
    "quoteSymbol": "USDT",
    "marketType": "spot",
    "lastPrice": "65000.5",
    "priceUsd": "65000.5",
    "change24h": 1.23,
    "high24h": "65500",
    "low24h": "64000",
    "spread": 0.05,
    "volume24hUsd": "12500000",
    "volumeShare": 12.34,
    "tradeUrl": "https://www.binance.com/en/trade/BTC_USDT",
    "lastUpdated": "2026-05-15T12:34:56.000Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.cryptorank.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
number
required

Query Parameters

offset
number
default:0
Required range: 0 <= x <= 50000
limit
number
default:100
Required range: 1 <= x <= 500
baseSymbol
string

Filter by base asset symbol (exact match, case-insensitive).

Example:

"BTC"

quoteSymbol
string

Filter by quote asset symbol (exact match, case-insensitive).

Example:

"USDT"

sortBy
enum<string>
default:volume
Available options:
id,
lastPrice,
spread,
volume
sortOrder
enum<string>
default:desc
Available options:
asc,
desc

Response

200 - application/json
id
number
required
Example:

12345

pairName
string
required
Example:

"BTC/USDT"

baseSymbol
string
required
Example:

"BTC"

quoteSymbol
string
required
Example:

"USDT"

marketType
enum<string>
required

Market kind. perpetual is a derivative without an expiry date.

Available options:
spot,
perpetual,
futures
Example:

"spot"

lastPrice
string
required

Last price in the quote currency.

Example:

"65000.5"

priceUsd
string
required

Last price normalized to USD.

Example:

"65000.5"

change24h
object
required

24h change as a percent (open → last). Null when open price is unavailable.

Example:

1.23

high24h
object
required

24h high in the quote currency.

Example:

"65500"

low24h
object
required

24h low in the quote currency.

Example:

"64000"

spread
object
required

Bid-ask spread as a percent: (ask − bid) / ask × 100. Null when bid/ask is unavailable.

Example:

0.05

volume24hUsd
string
required

24h trade volume in USD.

Example:

"12500000"

volumeShare
object
required

Share of the exchange's total 24h volume across all tickers (percent).

Example:

12.34

tradeUrl
object
required

Direct link to the trading pair on the exchange. Null when unavailable.

Example:

"https://www.binance.com/en/trade/BTC_USDT"

lastUpdated
string
required

ISO 8601, UTC.

Example:

"2026-05-15T12:34:56.000Z"