Skip to main content
All CollectionsAPI and Indicators
Which Symbols Are Traded on Each Exchange? Use the /exchange-symbols Endpoint
Which Symbols Are Traded on Each Exchange? Use the /exchange-symbols Endpoint

Easily Retrieve and Track All Symbols Traded on Your Selected Exchange

Updated over a month ago

Overview

The /exchange-symbols endpoint helps users:

Discover available symbols: View all currently traded symbols on an exchange.

Track changes: Identify symbols that have been delisted or newly added.

Enhance trading efficiency: Build systems that automatically adapt to symbol updates, reducing unnecessary API calls for delisted symbols.

Stay up to date: Data is refreshed daily at 12:00 UTC.

Supported exchanges for this endpoint can be found in our Exchange List.


Example API Call

To get all symbols traded on Binance, make the following API call:

[GET] https://api.taapi.io/exchange-symbols?secret=MY_SECRET&exchange=binance

Replace MY_SECRET with your actual API key.

Response Example

A successful response returns a JSON object containing the list of symbols traded on the selected exchange:

[
"ETH/BTC",
"LTC/BTC",
"BNB/BTC",
"NEO/BTC",
...
]

Key Features and Benefits

1. Monitor Symbol Changes: Easily identify newly added or delisted symbols to keep your trading strategies current.

2. Optimize API Usage: Avoid unnecessary API calls to outdated or invalid symbols.

3. Build Adaptive Systems: Automatically integrate new symbols into your trading systems for enhanced scalability and responsiveness.


Notes

• The list is updated daily at 12:00 UTC.

• Ensure your API key (MY_SECRET) has sufficient privileges to access this endpoint.

• Refer to the Exchange List to see the supported exchanges for this endpoint.

Did this answer your question?