Skip to main content
GET
/
tickers
/
exchanges
Provides a comprehensive list of cryptocurrency exchanges supported by CoinStats.
curl --request GET \
  --url https://openapiv1.coinstats.app/tickers/exchanges \
  --header 'X-API-KEY: <api-key>'
[
  {
    "id": "binance",
    "name": "Binance",
    "icon": "https://static.coinstats.app/exchanges/binance.png",
    "rank": 1,
    "change24h": 5.25,
    "url": "https://www.binance.com",
    "volume24h": 12500000000,
    "volume7d": 85000000000,
    "volume1m": 350000000000
  }
]
2 credits per request

Authorizations

X-API-KEY
string
header
required

API key needed to access the endpoints. Example: 'demo-api-key'

Response

Returns a list of supported cryptocurrency exchanges available on CoinStats.

id
string
required

Unique identifier of the exchange

Example:

"binance"

name
string
required

Display name of the exchange

Example:

"Binance"

rank
number
required

Exchange rank based on trading volume

Example:

1

change24h
number
required

Percentage change in trading volume over the last 24 hours

Example:

5.25

volume24h
number
required

Total trading volume in USD over the last 24 hours

Example:

12500000000

volume7d
number
required

Total trading volume in USD over the last 7 days

Example:

85000000000

icon
string

URL to the exchange logo image

Example:

"https://static.coinstats.app/exchanges/binance.png"

url
string

Official website URL of the exchange

Example:

"https://www.binance.com"

volume1m
number

Total trading volume in USD over the last 30 days

Example:

350000000000

I