GET
/
tokens
/
prices
/
{symbol}
/
latest
Latest
curl --request GET \
  --url https://api.amberdata.com/market/tokens/prices/{symbol}/latest \
  --header 'x-api-key: <api-key>'
{
  "status": 200,
  "title": "OK",
  "description": "Successful request",
  "payload": [
    {
      "address": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2",
      "circulatingSupply": 1000000,
      "dailyPercentChangeUSD": -1.0245,
      "dailyVolumeUSD": 3954194.30424895,
      "hourlyPercentChangeUSD": 1.53884,
      "marketCapUSD": 504322007.06200004,
      "name": "Maker",
      "priceUSD": 504.322007062,
      "symbol": "MKR",
      "totalSupply": 1000000,
      "weeklyPercentChangeUSD": -7.69287
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

symbol
string
default:mkr
required

The symbol of the token for which to retrieve the price.

Query Parameters

timeFormat
string
default:ms

[Optional] Time format of the timestamps in the return payload. [Defaults] milliseconds | ms* | iso | iso8601 | hr | human_readable

Response

200
application/json

200

The response is of type object.