GET
/
spot
/
exchanges
/
reference
Reference
curl --request GET \
  --url https://api.amberdata.com/markets/spot/exchanges/reference \
  --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/reference?cursor=N4IglgdgxgNgrgEwKYEkIEMoBcwDckgBcAZujAM5IA0408yA8gE5gDmkZASksUk0tAIkylGpFiIkAVQjk4AB3kB7JliQIAogA8oAC3QRWSckVIVqIHAFskAMRVX0WIiCtgYMMJShKICEzTEDk4uAFbkviA08uhGRACMNORgAF5CAKwADJkAvkA",
      "api-version": "2023-09-30"
    },
    "data": [
      {
        "exchange": "arkham",
        "instrument": "ada_usdt",
        "baseSymbol": "ada",
        "quoteSymbol": "usdt",
        "market": "spot",
        "exchangeEnabled": true,
        "limitsPriceMin": 0.0001,
        "limitsPriceMax": 1000,
        "limitsVolumeMin": 0.1,
        "limitsVolumeMax": 900000,
        "limitsMarketMin": null,
        "limitsMarketMax": null,
        "limitsLeverageMin": null,
        "limitsLeverageMax": 0,
        "limitsLeverageSuperMax": null,
        "limitsCostMin": 5,
        "limitsCostMax": null,
        "precisionPrice": 0.0001,
        "precisionVolume": 0.1,
        "precisionBase": null,
        "precisionQuote": null,
        "listingTimestamp": null
      }
    ]
  }
}
By default, instrument names are normalized to the "base_quote" format. If you wish to see the original exchange-native instrument names and details, set the includeOriginalReference parameter to true in your request. The response will then include an originalReference object with the exchange’s native data for each instrument.

Authorizations

x-api-key
string
header
required

Headers

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

Query Parameters

exchange
string

[Optional] Only return data for the given exchange(s) (comma separated)

instrument
string

Only return data for the given pair.

includeInactive
boolean

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

includeOriginalReference
boolean

[Optional] If true, endpoint returns originalReference. [Defaults] True | False*.

Response

200 - application/json

200

The response is of type object.