Skip to main content
GET
/
prices
/
spot
/
instruments
Pair Price
curl --request GET \
  --url https://api.amberdata.com/markets/prices/spot/instruments \
  --header 'x-api-key: <api-key>'
{
  "status": 200,
  "title": "OK",
  "description": "Successful request",
  "payload": [
    {
      "asset": "btc",
      "assetArcId": "AMB:BTC000000000",
      "assetName": "Bitcoin",
      "assetSymbol": "btc",
      "exchange": "binanceus",
      "startDate": "2020-09-11T20:41:00.000Z",
      "endDate": "2024-09-11T20:41:00.000Z"
    }
  ]
}

Authorizations

x-api-key
string
header
default:API_KEY
required

Query Parameters

instrument
string
default:btc_usdc
required

The specific pair instrument to return prices for. [Examples] btc_usdt | eth_usdc

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[]