GET
/
dictionary
/
symbols
/
{symbolId}
Get Symbol by ID
curl --request GET \
  --url https://api.bron.org/dictionary/symbols/{symbolId}
{
  "name": "Bitcoin",
  "symbol": "BTC",
  "symbolId": "s20012"
}

Path Parameters

symbolId
string
required

Query Parameters

symbolIds
string[]

Filter results to only include these specific symbol IDs

assetIds
string[]

Filter results to only include symbols that are used by these specific asset IDs. Useful when you want to know which symbols are available for certain assets.

limit
string
offset
string

Response

OK

name
string
required

The full name of what this symbol represents

Examples:

"Bitcoin"

symbol
string
required

The ticker symbol that traders and users recognize

Examples:

"BTC"

symbolId
string
required

The unique ID for this symbol

Examples:

"s20012"