List of tokens pairs available for traded directly across the cross-chain bridge.
GET https://www.okx.com/api/v5/dex/cross-chain/supported/bridge-tokens-pairs
Parameter | Type | Required | Description |
---|---|---|---|
fromChainId | String | No | Chain ID (e.g., 1 for Ethereum. See Chain IDs) |
Parameter | Type | Required | Description |
---|---|---|---|
fromChainId | String | YES | Source Chain ID (e.g., 1 for Ethereum. See Chain IDs) |
toChainId | String | YES | Destination Chain ID (e.g., 10 for Ethereum. See Chain IDs) |
fromTokenAddress | String | YES | The contract address of a token to be sold (e.g., 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE ) |
toTokenAddress | String | YES | The contract address of a token to be bought (e.g., TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8 ) |
fromTokenSymbol | String | YES | Source Chain Token symbol (e.g.,USDT ) |
toTokenSymbol | String | YES | Destination Chain Token symbol (e.g.,USDT ) |
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'
{
"code": "0",
"data": [
{
"fromChainId": "1",
"toChainId": "10",
"fromTokenAddress": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"toTokenAddress": "0x0b2c639c533813f4aa9d7837caf62653d097ff85",
"fromTokenSymbol": "USDC",
"toTokenSymbol": "USDC"
}
],
"msg": ""
}