Skip to main content
Returns the list of supported symbols (tokens) configured on your gateway. The gateway administrator configures which tokens are available for each blockchain.

Request

GET http://your-gateway:180/v1/symbol/supportSymbols

Query Parameters

chain
string
Filter by blockchain network. Example: TRON, ETH, BSC, POLYGON. Omit to return symbols for all chains.
symbol
string
Filter by token symbol. Example: USDT, USDC. Omit to return all supported symbols.

cURL


Response

A successful request returns HTTP 200 with the R<List<SupportSymbol>> envelope.

SupportSymbol Object

symbol
string
The token symbol, e.g. "USDT", "USDC", "ETH".
chain
string
The blockchain network, e.g. "TRON", "ETH", "BSC".
contractAddress
string | null
The token contract address on this chain. null for native coins (e.g., ETH on Ethereum).
decimals
integer
The number of decimal places for this token. Example: 6 for ERC20 USDT, 6 for TRC20 USDT, 18 for BEP20 USDT.

Example Response

Last modified on June 26, 2026