Get full options context for a symbol
curl --request GET \
--url https://api.example.com/api/graph/v1/options/{symbol}import requests
url = "https://api.example.com/api/graph/v1/options/{symbol}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/graph/v1/options/{symbol}', 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.example.com/api/graph/v1/options/{symbol}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.example.com/api/graph/v1/options/{symbol}"
req, _ := http.NewRequest("GET", url, nil)
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.example.com/api/graph/v1/options/{symbol}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/graph/v1/options/{symbol}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"symbol": "<string>",
"last_price": 123,
"source": "realtime_sip",
"options_confluence_score": 123,
"best_options_strategy": "<string>",
"strategy_scores": {},
"strategy_metadata": {},
"recommended_contract": {},
"iv_percentile": 123,
"iv_rank": 123,
"iv_skew": 123,
"put_call_ratio": 123,
"chain_total_oi": 123,
"chain_volume_1d": 123,
"unusual_activity": false,
"pricing_edge_bull": 123,
"pricing_edge_bear": 123,
"greek_alignment_bull": 123,
"greek_alignment_bear": 123,
"theta_drag_15d": 123,
"bullish_confluence": 123,
"bearish_confluence": 123,
"net_confluence": 123,
"directional_bias": "<string>",
"iv_surface": {
"time": "2023-11-07T05:31:56Z",
"atm_iv": 123,
"atm_iv_change": 123,
"iv_7d": 123,
"iv_14d": 123,
"iv_21d": 123,
"iv_30d": 123,
"iv_45d": 123,
"term_slope": 123,
"term_structure_shape": "<string>",
"skew_ratio": 123,
"skew_percentile": 123,
"iv_percentile_30d": 123,
"iv_percentile_60d": 123,
"iv_percentile_90d": 123,
"realized_vol_20d": 123,
"iv_rv_ratio": 123,
"data_quality": 123
},
"flow_signals": [
{
"time": "2023-11-07T05:31:56Z",
"signal_type": "<string>",
"direction": "<string>",
"strength": 50,
"total_volume": 123,
"volume_vs_avg": 123,
"net_premium": 123
}
],
"quality_gates": {
"spread_quality": "<string>",
"minimum_oi": "<string>",
"iv_floor": "<string>",
"theta_drag": "<string>"
},
"updated_at": "2023-11-07T05:31:56Z"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Options Screener
Get full options context for a symbol
Get complete options context including confluence score, IV surface,
flow signals, strategy scores, and quality gates.
Combines data from:
- FalkorDB graph vertex (options properties)
- `iv_surface_daily` TimescaleDB hypertable (latest surface)
- `options_flow_signals` TimescaleDB hypertable (recent flow)
## Performance Target
<300ms response time.
GET
/
api
/
graph
/
v1
/
options
/
{symbol}
Get full options context for a symbol
curl --request GET \
--url https://api.example.com/api/graph/v1/options/{symbol}import requests
url = "https://api.example.com/api/graph/v1/options/{symbol}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/graph/v1/options/{symbol}', 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.example.com/api/graph/v1/options/{symbol}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.example.com/api/graph/v1/options/{symbol}"
req, _ := http.NewRequest("GET", url, nil)
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.example.com/api/graph/v1/options/{symbol}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/graph/v1/options/{symbol}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"symbol": "<string>",
"last_price": 123,
"source": "realtime_sip",
"options_confluence_score": 123,
"best_options_strategy": "<string>",
"strategy_scores": {},
"strategy_metadata": {},
"recommended_contract": {},
"iv_percentile": 123,
"iv_rank": 123,
"iv_skew": 123,
"put_call_ratio": 123,
"chain_total_oi": 123,
"chain_volume_1d": 123,
"unusual_activity": false,
"pricing_edge_bull": 123,
"pricing_edge_bear": 123,
"greek_alignment_bull": 123,
"greek_alignment_bear": 123,
"theta_drag_15d": 123,
"bullish_confluence": 123,
"bearish_confluence": 123,
"net_confluence": 123,
"directional_bias": "<string>",
"iv_surface": {
"time": "2023-11-07T05:31:56Z",
"atm_iv": 123,
"atm_iv_change": 123,
"iv_7d": 123,
"iv_14d": 123,
"iv_21d": 123,
"iv_30d": 123,
"iv_45d": 123,
"term_slope": 123,
"term_structure_shape": "<string>",
"skew_ratio": 123,
"skew_percentile": 123,
"iv_percentile_30d": 123,
"iv_percentile_60d": 123,
"iv_percentile_90d": 123,
"realized_vol_20d": 123,
"iv_rv_ratio": 123,
"data_quality": 123
},
"flow_signals": [
{
"time": "2023-11-07T05:31:56Z",
"signal_type": "<string>",
"direction": "<string>",
"strength": 50,
"total_volume": 123,
"volume_vs_avg": 123,
"net_premium": 123
}
],
"quality_gates": {
"spread_quality": "<string>",
"minimum_oi": "<string>",
"iv_floor": "<string>",
"theta_drag": "<string>"
},
"updated_at": "2023-11-07T05:31:56Z"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Path Parameters
Query Parameters
Include recommended contract for best strategy (adds ~200ms)
Response
Options context
Full options context for a symbol.
Standalone options confluence score (0-100)
Best strategy recommendation
Per-strategy viability scores (0-100)
Show child attributes
Show child attributes
Static parameters for scored strategies
Show child attributes
Show child attributes
Recommended contract for best strategy
IV surface data for a single day.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Quality gate results for options trading.
Show child attributes
Show child attributes