DEX API
Get the list of tokens pairs supported by the cross-chain bridge

Get the list of tokens pairs supported by the cross-chain bridge#

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

Request address#

GET https://www.okx.com/api/v5/dex/cross-chain/supported/bridge-tokens-pairs

Request param#

ParameterTypeRequiredDescription
fromChainIdIntegerNoChain ID (e.g., 1 for Ethereum. See Chain IDs)

Response param#

ParameterTypeRequiredDescription
fromChainIdStringYESSource Chain ID (e.g., 1 for Ethereum. See Chain IDs)
toChainIdStringYESDestination Chain ID (e.g., 10 for Ethereum. See Chain IDs)
fromTokenAddressStringYESThe contract address of a token to be sold (e.g., 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE )
toTokenAddressStringYESThe contract address of a token to be bought (e.g., TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8)
fromTokenSymbolStringYESSource Chain Token symbol (e.g.,USDT)
toTokenSymbolStringYESDestination Chain Token symbol (e.g.,USDT)

Request example#

shell
curl --location --request GET 'https://www.okx.com/api/v5/dex/cross-chain/supported/bridge-tokens-pairs?fromChainId=784' \
--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": [
      {
        "fromChainId": 1,
        "toChainId": 10,
        "fromTokenAddress": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
        "toTokenAddress": "0x0b2c639c533813f4aa9d7837caf62653d097ff85",
        "fromTokenSymbol": "USDC",
        "toTokenSymbol": "USDC"
      }
  ],
  "msg": ""
}