GET
/
exchanges
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
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
A comprehensive list of all exchanges with relevant details.
data
object[]