GET
/
coins
/
{coin_id}
/
exchanges
CLI
curl --request GET \
--url 'https://api.coinpaprika.com/v1/coins/btc-bitcoin/exchanges'
[
  {
    "id": "binance",
    "name": "Binance",
    "fiats": [
      {
        "name": "US Dollars",
        "symbol": "USD"
      }
    ],
    "adjusted_volume_24h_share": 11.26
  }
]

Path Parameters

coin_id
string
required
Example:

"btc-bitcoin"

Response

successful operation

id
string
Example:

"binance"

name
string
Example:

"Binance"

fiats
object[]
Example:
[{ "name": "US Dollars", "symbol": "USD" }]
adjusted_volume_24h_share
number
Example:

11.26