Exchange codes

You can explore all exchanges, assets, and get codes for them using our instrument explorer. Alternatively, if you want to obtain the data in a more programmatic way, use this endpoint.

What is this endpoint for?

This endpoint retrieves a list of exchanges and associated codes.

Endpoint

https://reference-data-api.kaiko.io/v1/exchanges

Parameters

No parameters supported

Fields

Field
Description

code

Kaiko identifier for the exchange.

kaiko_legacy_slug

Identifier used in delivery of aggregated data.

name

The exchange name.

Request example

curl --compressed -H 'Accept: application/json' 'https://reference-data-api.kaiko.io/v1/exchanges'

Response example

{
  "result": "success",
  "data": [
    {
      "code": "bfly",
      "name": "bitFlyer",
      "kaiko_legacy_slug": "bl"
    },
    {
      "code": "bfnx",
      "name": "Bitfinex",
      "kaiko_legacy_slug": "bf"
    }
    /* ... */
  ]
}

Last updated

Was this helpful?