List of tokens available for traded directly across the cross-chain bridge.
GET https://www.okx.com/api/v5/dex/cross-chain/supported/tokens
Parameter | Type | Required | Description |
---|---|---|---|
chainId | String | No | Chain ID (e.g., 1 for Ethereum. See Chain IDs) |
Parameter | Type | Description |
---|---|---|
chainId | String | Chain ID (e.g., 1 for Ethereum. See Chain IDs) |
decimals | Integer | The precision of tokens (e.g., 18 ) |
tokenContractAddress | String | Token contract address (e.g., 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 ) |
tokenName | String | Token name (e.g., USDC ) |
tokenSymbol | String | Token symbol (e.g., 6 ) |
curl --location --request GET 'https://www.okx.com/api/v5/dex/cross-chain/supported/tokens' \
--header 'OK-ACCESS-PROJECT: 86af********d1bc' \
--header 'OK-ACCESS-KEY: 37c541a1-****-****-****-10fe7a038418' \
--header 'OK-ACCESS-SIGN: leaV********3uw=' \
--header 'OK-ACCESS-PASSPHRASE: 1****6' \
--header 'OK-ACCESS-TIMESTAMP: 2023-10-18T12:21:41.274Z'
{
"code": "0",
"data": [
{
"chainId": "1",
"decimals": 6,
"tokenContractAddress": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"tokenName": "USDC",
"tokenSymbol": "USDC"
},
{
"chainId": "1",
"decimals": 18,
"tokenContractAddress": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"tokenName": "Wrapped Ether",
"tokenSymbol": "WETH"
}
],
"msg": ""
}