GET
/
analytics
/
realized-volatility
/
seasonality
/
day-of-week
Seasonality: Volatility Day of Week
curl --request GET \
  --url https://api.amberdata.com/markets/derivatives/analytics/realized-volatility/seasonality/day-of-week \
  --header 'x-api-key: <api-key>'
{
  "status": 200,
  "title": "OK",
  "description": "Successful request",
  "payload": {
    "data": [
      {
        "weekday": "MON",
        "historicalVolatility1day": 47.63749442254257
      },
      {
        "weekday": "TUES",
        "historicalVolatility1day": 66.74062109842409
      },
      {
        "weekday": "WED",
        "historicalVolatility1day": 58.81535538177604
      },
      {
        "weekday": "THURS",
        "historicalVolatility1day": 65.65627018256752
      },
      {
        "weekday": "FRI",
        "historicalVolatility1day": 64.22261054527364
      },
      {
        "weekday": "SAT",
        "historicalVolatility1day": 61.98930042059116
      },
      {
        "weekday": "SUN",
        "historicalVolatility1day": 40.94387769358899
      }
    ]
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

exchange
string
default:gdax
required

[Required] The exchange for which to retrieve the volatility cone. [Examples] gdax

pair
string
default:btc_usd
required

[Required] The underlying pair for which to retrieve the volatility cone. [Examples] btc_usd

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

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

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

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

Response

200
application/json

200

The response is of type object.