Wallet API
Real-time Coin Price

Real-time Coin Price#

Batch query the real-time prices of cryptocurrencies. Up to 20 tokens can be queried in one request, in the array format shown in the request example.

Request Path#

POST https://www.okx.com/api/v5/waas/wallet/token/current-price

Request Parameters#

ParameterTypeRequiredDescription
chainIndexStringYesUnique identifier of the blockchain
tokenAddressStringYesToken address

Response Parameters#

ParameterTypeDescription
priceStringToken price
timeStringTimestamp of the price, Unix timestamp in milliseconds
chainIndexStringUnique identifier of the blockchain
tokenaddressStringToken address

Request Example#

shell
curl --location --request POST 'https://www.okx.com/api/v5/waas/wallet/token/current-price' \
--header 'Content-Type: application/json' \
--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' \
--data-raw '[
        {
            "chainIndex": "1",
            "tokenAddress":"0xdac17f958d2ee523a2206206994597c13d831ec7"
        },
        {
            "chainIndex":"1",
            "tokenAddress": "0xdac17f955d2ee523a2206206994597c13d831ein"
        }  
    ]'

Response Example#

200
{
    
    "code": 0,
    "msg": "success",
    "data": [
        {
            "price": "26.458143090226812",
            "time": "1716892020000",
            "chainIndex": "1",
            "tokenAddress": "0xc18360217d8f7ab5e7c516566761ea12ce7f9d72"
        }
    ]
}