Simple

Coin Price by Token Addresses

This endpoint allows you to query one or more token prices using their token contract addresses

get/simple/token_price/{id}

Path parameters

idstring required
Example:ethereum

asset platform's ID <br> *refers to /asset_platforms.

Query parameters

contract_addressesstring required

the contract addresses of tokens, comma-separated if querying more than 1 token's contract address

vs_currenciesstring required

target currency of coins, comma-separated if querying more than 1 currency. <br> *refers to /simple/supported_vs_currencies.

include_market_capboolean

include market capitalization, default: false

include_24hr_volboolean

include 24hr volume, default: false

include_24hr_changeboolean

include 24hr change <br> default: false

include_last_updated_atboolean

include last updated price time in UNIX , default: false

precision'full' | '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12' | '13' | '14' | '15' | '16' | '17' | '18'

decimal place for currency price value

Response

price(s) of cryptocurrency

usdnumber

price in USD

usd_market_capnumber

market cap in USD

usd_24h_volnumber

24hr volume in USD

usd_24h_changenumber

24hr change in USD

last_updated_atnumber

last updated timestamp

Example response

{
  "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599": {
    "usd": 67187.3358936566,
    "usd_market_cap": 1317802988326.25,
    "usd_24h_vol": 31260929299.5248,
    "usd_24h_change": 3.63727894677354,
    "last_updated_at": 1711356300
  }
}

Changes