Skip to main content
GET
/
prices
/
spot
/
assets
Asset Price
curl --request GET \
  --url https://api.amberdata.com/markets/prices/spot/assets \
  --header 'x-api-key: <api-key>'
{
  "status": 200,
  "title": "OK",
  "description": "Successful request",
  "payload": [
    {
      "asset": "btc",
      "assetArcId": "AMB:BTC000000000",
      "priceUSD": 90532.21881230843,
      "timestamp": "2020-09-11T20:41:00.000Z",
      "volumeAsset": 1874.335247657359
    }
  ]
}

Authorizations

x-api-key
string
header
default:API_KEY
required

Query Parameters

asset
string
default:btc
required

The specific asset to return prices for. [Examples] btc | eth

timeFormat
string
default:hr

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

timeInterval
string
default:day

The time interval of the timeseries in the return payload.

startDate
string<date-time>
default:2026-01-01

Payload only includes data after this date (inclusive).

endDate
string<date-time>
default:2026-01-11

Payload only includes data up-to this date (exclusive).

Response

200 - application/json

Successful request

status
integer
Example:

200

title
string
Example:

"OK"

description
string
Example:

"Successful request"

payload
object[]