GET
/
exchanges
/
{id}
curl --request GET \
  --url https://api.coincap.io/v2/exchanges/{id} \
  --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.

Path Parameters

id
string
required

Unique identifier for the exchange.

Example:

"kraken"

Response

200 - application/json
Details of the specified exchange.
data
object