Skip to main content
GET
/
v1
/
exchanges
List exchanges
curl --request GET \
  --url https://api.ticksupply.com/v1/exchanges \
  --header 'X-Api-Key: <api-key>'
[
  {
    "code": "binance",
    "display_name": "Binance"
  },
  {
    "code": "coinbase",
    "display_name": "Coinbase"
  }
]

Authorizations

X-Api-Key
string
header
required

Your API key. Get one from the dashboard at https://app.ticksupply.com/api-keys

Response

List of exchanges

code
string
required

Exchange code (lowercase identifier)

Example:

"binance"

display_name
string
required

Human-readable exchange name

Example:

"Binance"