DEX API
获取仅跨链桥交易的币种列表

获取仅跨链桥交易的币种列表#

获取仅通过跨链桥交易的币种列表

请求地址#

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

请求参数#

参数类型必传描述
chainIdInteger链 ID (如1: Ethereum,更多可查看链 ID 列表)

响应参数#

参数类型必传描述
chainIdString链 ID (如1: Ethereum,更多可查看链 ID 列表)
decimalsInteger币种精度 (如: 18)
tokenContractAddressString币种合约地址 (如 :0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2)
tokenNameString币种符号 (如:USDC)
tokenSymbolString币种精度 (如: 6)

请求示例#

shell
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'

响应示例#

200
{
  "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": ""
}