Trade API

Get the List of Tokens Supported by the Cross-Chain Bridges#

List of tokens available for trading directly across the cross-chain bridge.

Request URL#

GET https://web3.okx.com/api/v5/dex/cross-chain/supported/tokens

Request Parameters#

ParameterTypeRequiredDescription
chainIndexStringNoUnique identifier for the chain.
e.g., 1: Ethereum.
See more here.
chainIdStringNoUnique identifier for the chain.
It will be deprecated in the future.

Response Parameters#

ParameterTypeDescription
chainIndexStringUnique identifier for the chain.
chainIdStringUnique identifier for the chain.
It will be deprecated in the future.
decimalsIntegerThe precision of tokens (e.g., 18)
tokenContractAddressStringToken contract address (e.g., 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2)
tokenNameStringToken name (e.g., USDC)
tokenSymbolStringToken symbol (e.g., 6)

Request Example#

shell
curl --location --request GET 'https://web3.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'

Response Example#

200
{
  "code": "0",
  "data": [
      {
        "chainIndex":"1",
        "chainId": "1",
        "decimals": 6,
        "tokenContractAddress": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
        "tokenName": "USDC",
        "tokenSymbol": "USDC"
      },
      {
        "chainIndex":"1",
        "chainId": "1",
        "decimals": 18,
        "tokenContractAddress": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
        "tokenName": "Wrapped Ether",
        "tokenSymbol": "WETH"
      }
  ],
  "msg": ""
}