Get Signal Supported Chains#
Returns a list of all blockchain networks supported by the Signal service.
Request URL#
GET https://web3.okx.com/api/v6/dex/market/signal/supported/chain
Request Parameters#
No
Response Parameters#
| Parameter | Type | Description |
|---|---|---|
| chainIndex | String | Unique identifier of the chain. |
| chainName | String | Chain name (e.g., Ethereum). |
| chainLogo | String | Chain icon. |
Request Example#
Shell
curl --location --request GET 'https://web3.okx.com/api/v6/dex/market/signal/supported/chain' \
--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#
Json
{
"code": "0",
"data": [
{
"chainIndex": "1",
"chainLogo": "https://static.coinall.ltd/cdn/wallet/logo/ETH-20220328.png",
"chainName": "Ethereum"
},
{
"chainIndex": "196",
"chainLogo": "https://static.coinall.ltd/cdn/wallet/logo/okb_22400.png",
"chainName": "X Layer"
},
{
"chainIndex": "501",
"chainLogo": "https://static.coinall.ltd/cdn/wallet/logo/SOL-20220525.png",
"chainName": "Solana"
},
{
"chainIndex": "8453",
"chainLogo": "https://static.coinall.ltd/cdn/web3/dex/market/base_v2.png",
"chainName": "Base"
},
{
"chainIndex": "56",
"chainLogo": "https://static.coinall.ltd/cdn/web3/oklinkadmin/picture/new_bsc_chain_color.png",
"chainName": "BNB Chain"
}
],
"msg": ""
}