GET
/
analytics
/
instruments
/
most-traded
Instruments Most Traded
curl --request GET \
  --url https://api.amberdata.com/markets/derivatives/analytics/instruments/most-traded \
  --header 'x-api-key: <api-key>'
{
  "status": 200,
  "title": "OK",
  "description": "Successful request",
  "payload": {
    "data": [
      {
        "currency": "BTC",
        "instrument": "BTC-7JUN24-72000-C",
        "contractVolume": 227.89999999999915
      },
      {
        "currency": "BTC",
        "instrument": "BTC-14JUN24-73000-C",
        "contractVolume": 221.09999999999997
      },
      {
        "currency": "BTC",
        "instrument": "BTC-28JUN24-80000-C",
        "contractVolume": 177.6999999999998
      },
      {
        "currency": "BTC",
        "instrument": "BTC-7JUN24-70000-C",
        "contractVolume": 174.5
      },
      {
        "currency": "BTC",
        "instrument": "BTC-7JUN24-68000-C",
        "contractVolume": 174.29999999999984
      },
      {
        "currency": "BTC",
        "instrument": "BTC-3JUN24-69500-C",
        "contractVolume": 152.20000000000002
      },
      {
        "currency": "BTC",
        "instrument": "BTC-7JUN24-71000-C",
        "contractVolume": 151.59999999999985
      },
      {
        "currency": "BTC",
        "instrument": "BTC-28JUN24-60000-P",
        "contractVolume": 142.89999999999995
      },
      {
        "currency": "BTC",
        "instrument": "BTC-28JUN24-85000-C",
        "contractVolume": 135.9
      },
      {
        "currency": "BTC",
        "instrument": "BTC-28JUN24-68000-P",
        "contractVolume": 131.99999999999994
      }
    ],
    "metadata": {
      "api-version": "2023-09-30"
    }
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

exchange
string
default:deribit
required

[Required] The exchange for which to retrieve the listed option level 1 quotes. [Examples] deribit | okex | bybit

currency
string
default:BTC
required

[Required] The underlying currency for which there are listed option instruments. [Examples] BTC | SOL_USDC Note: inverse options have underlying currencies formatted as (BTC, ETH) while linear option currency formats include the stable coin in the same (SOL_USDC)

startDate
string<date-time>
default:2024-06-01

[Required] Payload only includes data after this date (inclusive). [Formats] seconds | milliseconds | iso8601 [Examples] 1578531600 | 1578531600000 | 2020-09-01T01:00:00

endDate
string
default:2024-06-03

[Required] Payload only includes data before this date (exclusive). [Formats] seconds | milliseconds | iso8601 [Examples] 1578531600 | 1578531600000 | 2020-09-01T01:00:00

timeFormat
string

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

blockTradeId
boolean

[Optional] This flag enables users to filter for only blockTrade or non-blockTrades. If the user wants everything returned they can choose to leave the parameter blank.

Response

200
application/json

Successful request

The response is of type object.