cURL
curl --request GET \ --url https://api.coincap.io/v2/exchanges \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "kraken", "name": "Kraken", "rank": 1, "percentTotalVolume": "5.23", "volumeUsd": "1500000000.00", "tradingPairs": 250, "socket": true, "exchangeUrl": "https://www.kraken.com", "updated": 1633017600000 } ] }
Retrieve a complete list of all exchanges, including their details and trading information.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
A comprehensive list of all exchanges with relevant details.
Show child attributes
Unique identifier for the exchange.
"kraken"
Proper name of the exchange.
"Kraken"
Rank based on total exchange volume.
1
Daily volume percentage relative to all exchanges.
"5.23"
Daily volume represented in USD.
"1500000000.00"
Number of trading pairs offered by the exchange.
250
Indicates if trade socket is available.
true
Website URL of the exchange.
"https://www.kraken.com"
UNIX timestamp (milliseconds) since the information was last updated.
1633017600000