How can I see a list of symbols related to a specific exchange, market, or asset?
You can filter through different exchanges and symbols on our /v1/symbols endpoint.
To get a list of all symbols related to a particular exchange or asset, you can use the filter_exchange_id and filter_asset_id parameter. Here are some examples:
To see a list of symbols for Coinbase exchange:
https://rest.coinapi.io/v1/symbols?filter_exchange_id=COINBASE
To see a list of symbols for Chainlink (LINK):
https://rest.coinapi.io/v1/symbols?filter_asset_id=LINK
You can also specify particular exchanges, markets, and assets with the filter_symbol_id parameter.
To see a list of symbols for Binance exchange (as an alternative to using filter_exchange_id)
https://rest.coinapi.io/v1/symbols?filter_symbol_id=BINANCE_
To see a list of symbols for Binance's Spot market:
https://rest.coinapi.io/v1/symbols?filter_symbol_id=BINANCE_SPOT_
To see a list of symbols for Binance's Spot market with BTC as the asset base:
https://rest.coinapi.io/v1/symbols?filter_symbol_id=BINANCE_SPOT_BTC_
To see a list of symbols with ETH as the base and BTC as the quote:
https://rest.coinapi.io/v1/symbols?filter_symbol_id=_ETH_BTC
To see a list of symbols for Spot markets with XRP as the base and USD as the quote:
https://rest.coinapi.io/v1/symbols?filter_symbol_id=_SPOT_XRP_USD
You may refer to this section of our documentation to learn more about the pattern we use for different symbol types: https://docs.coinapi.io/market-data/rest-api/metadata#symbol-identifier
To learn more about symbols, please see here: https://docs.coinapi.io/market-data/rest-api/metadata#list-all-symbols-get