Get CEX Tokens API
Fetches a list of tokens supported by Houdini Swap, detailing their respective chains. This information is useful for constructing token selection interfaces in applications.
Endpoint: GET /tokens
GET /tokens
Response: A JSON object containing Token
details.
Parameters: none
Example Request:
GET /tokens
Example Response:
Response fields:
id
string
Unique identifier for the token.
name
string
Full name of the token (e.g., Tether).
symbol
string
The ticker symbol representing the token (e.g., USDT).
network
object
The blockchain network associated with the token. See NetworkDTO.
color*deprecated
string
Hex color code associated with the token.
keyword
string
Keywords related to the token for searchability.
displayName
string
A user-friendly display name for the token.
icon
string
URL for the token’s icon.
hasFixed*deprecated
boolean
Indicates if the token supports fixed swap.
hasFixedReverse*deprecated
boolean
Indicates if the token supports fixed swaps in reverse (using to
direction).
The network field refers to the NetworkDTO, which includes:
name
string
Full name of the blockchain network (e.g., Ethereum Mainnet).
shortName
string
Short identifier for the network (e.g., ETH).
memoNeeded
boolean
Indicates if a memo or extra ID is required for transactions.
addressValidation
string
Regular expression pattern for address validation on this network.
Last updated