Documentation
Ask on ChatGPT

REST API - Symbols Discovery

Use the symbols endpoint to discover every trading pair we have stored for a given exchange, including delisted markets when historical files exist.

GET
/symbols

List Available Symbols

Enumerate every symbol CryptoHFTData has stored for a specific exchange, including historical delisted markets when files exist.

Query Parameters

ParameterTypeRequiredDescription
exchangestringYesExchange identifier (for example, binance_spot)
data_typestringNoOptional filter that limits results to a specific dataset (for example, trades or orderbook)

Example Request

bash
curl "https://api.cryptohftdata.com/symbols?exchange=binance_spot&data_type=trades"

Example Response

json
{
  "exchange": "binance_spot",
  "data_type": "trades",
  "count": 2,
  "symbols": ["BTCUSDT", "ETHUSDT"]
}

Tip

Parameter values are case-insensitive. We automatically normalize the exchange and data type names, so TRADES andtrades resolve to the same dataset.

Have questions?

Our support team is available to help you with integration.

Contact Support