GET
/
spot
/
exchanges
/
information
Instruments
curl --request GET \
  --url https://api.amberdata.com/markets/spot/exchanges/information \
  --compressed \
  --header 'Accept-Encoding: <accept-encoding>' \
  --header 'x-api-key: <api-key>'
{
  "status": 200,
  "title": "OK",
  "description": "Successful request",
  "payload": {
    "metadata": {
      "next": "https://api.amberdata.com/markets/spot/exchanges/information?cursor=N4IglgdgxgNgrgEwKYEkIEMoBcwDckgBcWATnEgDTjTzICqEAznAA4sD2JWSCAogB5QAFuggBzJIyIAzdDEaUQOALZIAYp2XosREMrAwYYBVHYQEUqtM3bdAK0ZmQVFuglEAjFUZgAXgUIAVgAGYIBfIA",
      "api-version": "2023-09-30"
    },
    "data": [
      {
        "exchange": "binance",
        "instrument": "1000cat_bnb",
        "active": true,
        "ohlcv": {
          "startDate": 1734393600000,
          "endDate": 1739750400000
        },
        "orderBookSnapshot": {
          "startDate": 1734427800000,
          "endDate": 1739895780000
        },
        "orderBookEvent": {
          "startDate": 1734426029092,
          "endDate": 1739895599692
        },
        "ticker": {
          "startDate": 1734426147738,
          "endDate": 1739895595115
        },
        "trade": {
          "startDate": 1734426214300,
          "endDate": 1739894107524
        }
      },
      {
        "exchange": "binance",
        "instrument": "1000cat_fdusd",
        "active": true,
        "ohlcv": {
          "startDate": 1734393600000,
          "endDate": 1739750400000
        },
        "orderBookSnapshot": {
          "startDate": 1734427800000,
          "endDate": 1739895780000
        },
        "orderBookEvent": {
          "startDate": 1734426029293,
          "endDate": 1739895599593
        },
        "ticker": {
          "startDate": 1734426145880,
          "endDate": 1739895592405
        },
        "trade": {
          "startDate": 1734426221718,
          "endDate": 1739895250067
        }
      }
    ]
  }
}

Authorizations

x-api-key
string
header
required

Headers

Accept-Encoding
string
default:gzip, deflate, br
required
api-version
string

Query Parameters

exchange
string

only return data for the given exchanges (comma separated)

instrument
string

Only return data for the given pair.

timeFormat
string

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

includeInactive
boolean

[Optional] If true, endpoint returns all instruments, including delisted ones. [Defaults] True | False*.

Response

200 - application/json

200

The response is of type object.