curl --request GET \
--url https://api.amberdata.com/markets/derivatives/analytics/volatility/level-1-quotes-instrument/tradfi \
--header 'x-api-key: <api-key>'import requests
url = "https://api.amberdata.com/markets/derivatives/analytics/volatility/level-1-quotes-instrument/tradfi"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.amberdata.com/markets/derivatives/analytics/volatility/level-1-quotes-instrument/tradfi', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.amberdata.com/markets/derivatives/analytics/volatility/level-1-quotes-instrument/tradfi",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.amberdata.com/markets/derivatives/analytics/volatility/level-1-quotes-instrument/tradfi"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.amberdata.com/markets/derivatives/analytics/volatility/level-1-quotes-instrument/tradfi")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.amberdata.com/markets/derivatives/analytics/volatility/level-1-quotes-instrument/tradfi")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": 200,
"title": "OK",
"description": "Successful request",
"payload": {
"data": [
{
"ask": 2.17,
"askIv": 60.08,
"askVolume": null,
"bid": 2.1,
"bidIv": 59.49,
"bidVolume": null,
"currency": "IBIT",
"delta": 0.18074,
"exchange": "tradfi",
"exchangeTimestamp": "2025-04-30 19:00:06 136",
"expirationTimestamp": "2026-01-16 00:00:00 000",
"gamma": 0.00978,
"indexPrice": 53.495,
"instrument": "IBIT-16JAN26-100-C",
"instrumentNormalized": "TRADFI-IBIT-16JAN26-100-C",
"isAtm": false,
"isCarryForward": false,
"isExchangeProvidedGreeks": true,
"markIv": 59.76,
"markPrice": 2.13163,
"multiplier": 100,
"putCall": "C",
"rho": 0.05362,
"strike": 100,
"theta": -0.01947,
"timestamp": "2025-04-30 19:00:00 000",
"underlyingRate": 0.0415400005877018,
"vega": 0.119
},
{
"ask": 2.14,
"askIv": 59.9,
"askVolume": null,
"bid": 2.1,
"bidIv": 59.57,
"bidVolume": null,
"currency": "IBIT",
"delta": 0.18069,
"exchange": "tradfi",
"exchangeTimestamp": "2025-04-30 18:00:19 079",
"expirationTimestamp": "2026-01-16 00:00:00 000",
"gamma": 0.00977,
"indexPrice": 53.465,
"instrument": "IBIT-16JAN26-100-C",
"instrumentNormalized": "TRADFI-IBIT-16JAN26-100-C",
"isAtm": false,
"isCarryForward": false,
"isExchangeProvidedGreeks": true,
"markIv": 59.85,
"markPrice": 2.13317,
"multiplier": 100,
"putCall": "C",
"rho": 0.05358,
"strike": 100,
"theta": -0.01948,
"timestamp": "2025-04-30 18:00:00 000",
"underlyingRate": 0.0415400005877018,
"vega": 0.11892
}
]
}
}Level 1 Quotes Instrument
curl --request GET \
--url https://api.amberdata.com/markets/derivatives/analytics/volatility/level-1-quotes-instrument/tradfi \
--header 'x-api-key: <api-key>'import requests
url = "https://api.amberdata.com/markets/derivatives/analytics/volatility/level-1-quotes-instrument/tradfi"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.amberdata.com/markets/derivatives/analytics/volatility/level-1-quotes-instrument/tradfi', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.amberdata.com/markets/derivatives/analytics/volatility/level-1-quotes-instrument/tradfi",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.amberdata.com/markets/derivatives/analytics/volatility/level-1-quotes-instrument/tradfi"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.amberdata.com/markets/derivatives/analytics/volatility/level-1-quotes-instrument/tradfi")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.amberdata.com/markets/derivatives/analytics/volatility/level-1-quotes-instrument/tradfi")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": 200,
"title": "OK",
"description": "Successful request",
"payload": {
"data": [
{
"ask": 2.17,
"askIv": 60.08,
"askVolume": null,
"bid": 2.1,
"bidIv": 59.49,
"bidVolume": null,
"currency": "IBIT",
"delta": 0.18074,
"exchange": "tradfi",
"exchangeTimestamp": "2025-04-30 19:00:06 136",
"expirationTimestamp": "2026-01-16 00:00:00 000",
"gamma": 0.00978,
"indexPrice": 53.495,
"instrument": "IBIT-16JAN26-100-C",
"instrumentNormalized": "TRADFI-IBIT-16JAN26-100-C",
"isAtm": false,
"isCarryForward": false,
"isExchangeProvidedGreeks": true,
"markIv": 59.76,
"markPrice": 2.13163,
"multiplier": 100,
"putCall": "C",
"rho": 0.05362,
"strike": 100,
"theta": -0.01947,
"timestamp": "2025-04-30 19:00:00 000",
"underlyingRate": 0.0415400005877018,
"vega": 0.119
},
{
"ask": 2.14,
"askIv": 59.9,
"askVolume": null,
"bid": 2.1,
"bidIv": 59.57,
"bidVolume": null,
"currency": "IBIT",
"delta": 0.18069,
"exchange": "tradfi",
"exchangeTimestamp": "2025-04-30 18:00:19 079",
"expirationTimestamp": "2026-01-16 00:00:00 000",
"gamma": 0.00977,
"indexPrice": 53.465,
"instrument": "IBIT-16JAN26-100-C",
"instrumentNormalized": "TRADFI-IBIT-16JAN26-100-C",
"isAtm": false,
"isCarryForward": false,
"isExchangeProvidedGreeks": true,
"markIv": 59.85,
"markPrice": 2.13317,
"multiplier": 100,
"putCall": "C",
"rho": 0.05358,
"strike": 100,
"theta": -0.01948,
"timestamp": "2025-04-30 18:00:00 000",
"underlyingRate": 0.0415400005877018,
"vega": 0.11892
}
]
}
}Authorizations
Query Parameters
[Required] The underlying currency for which there are listed option instruments.
[Examples] IBIT | COIN
[Required] The option instrument subset with a given expiration date.
[Examples] 2027-01-15
[Required] Payload only includes data after this date (inclusive).
[Formats] seconds | milliseconds | iso8601
[Examples] 1578531600 | 1578531600000 | 2020-09-01T01:00:00
[Required] Payload only includes data before this date (exclusive).
[Formats] seconds | milliseconds | iso8601
[Examples] 1578531600 | 1578531600000 | 2020-09-01T01:00:00
[Optional] The option with strikes at or above the "minStrike". \n**[Examples]** 50 | 100
[Optional] The option with strikes at or below the "maxStrike". \n**[Examples]** 50 | 100
[Optional] The option instrument subset with a given strike price.
[Examples] 50 | 100
[Optional] Time interval of data frequency for the selected date range.
[Examples] minute | hour | day
[Note] Due to the density of data historical date ranges are limited to 60x 1-minute or 24x 1 hour intervals, per call.
[Optional] Time format of the timestamps in the return payload.
[Defaults] milliseconds | ms* | iso | iso8601 | hr | human_readable
[Optional] Time interval of data frequency for the selected date range.
[Examples] minute | hour
Response
Was this page helpful?