Supported Tokens
Returns a curated set of popular, non-rebasing tokens supported by Hinkal transactions, grouped by chain ID.
Pass chainId to fetch a single chain, or omit it to return every supported chain.
Query parameters
chainIdintegerOptionalExample:
Optional EVM chain ID to filter by — one of the supported chains (1 Ethereum, 10 Optimism, 137 Polygon, 8453 Base, 42161 Arbitrum). Omit to return all.
1Responses
200
Supported tokens grouped by chain ID
application/json
400
Unsupported chainId
application/json
500
Server error
application/json
get/supported-tokens
GET /supported-tokens HTTP/1.1
Host: api.hinkal.io
Accept: */*
{
"success": true,
"tokens": {
"10": [
{
"chainId": 10,
"erc20TokenAddress": "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85",
"name": "USD Coin",
"symbol": "USDC",
"decimals": 6,
"logoURI": "https://assets.coingecko.com/coins/images/6319/thumb/USD_Coin_icon.png"
},
{
"chainId": 10,
"erc20TokenAddress": "0x94b008aA00579c1307b0EF2c499aD98a8ce58e58",
"name": "Tether USD",
"symbol": "USDT",
"decimals": 6,
"logoURI": "https://assets.coingecko.com/coins/images/325/thumb/Tether.png"
}
]
}
}Last updated