Skip to main content
GET
/
v1
/
exchanges
Python (ticksupply library)
# pip install ticksupply
from ticksupply import Client

client = Client(api_key="<api-key>")
for ex in client.exchanges.list():
    print(ex)
[
  {
    "code": "binance",
    "display_name": "Binance"
  },
  {
    "code": "okx_spot",
    "display_name": "OKX Spot"
  }
]

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"

Last modified on February 6, 2026