curl --request GET \
--url https://api.example.com/api/graph/v1/options/{symbol}/options-analysisimport requests
url = "https://api.example.com/api/graph/v1/options/{symbol}/options-analysis"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/graph/v1/options/{symbol}/options-analysis', 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}/options-analysis",
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}/options-analysis"
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}/options-analysis")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/graph/v1/options/{symbol}/options-analysis")
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{
"computed_at": "2026-03-05T15:30:00Z",
"cvd_trend": "bullish",
"flow_direction": "bullish",
"flow_signal_count_24h": 5,
"flow_strength": 72,
"gex_gamma_flip": 860,
"gex_regime": "long_gamma",
"iv_rank": 32.5,
"iv_term_structure": "contango",
"max_pain": 870,
"max_pain_quality": "reliable",
"symbol": "NVDA",
"underlying_price": 875.5
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Get batch-computed options analysis summary
Returns max pain, GEX regime, IV term structure, flow summary, and CVD for a symbol.
curl --request GET \
--url https://api.example.com/api/graph/v1/options/{symbol}/options-analysisimport requests
url = "https://api.example.com/api/graph/v1/options/{symbol}/options-analysis"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/graph/v1/options/{symbol}/options-analysis', 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}/options-analysis",
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}/options-analysis"
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}/options-analysis")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/graph/v1/options/{symbol}/options-analysis")
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{
"computed_at": "2026-03-05T15:30:00Z",
"cvd_trend": "bullish",
"flow_direction": "bullish",
"flow_signal_count_24h": 5,
"flow_strength": 72,
"gex_gamma_flip": 860,
"gex_regime": "long_gamma",
"iv_rank": 32.5,
"iv_term_structure": "contango",
"max_pain": 870,
"max_pain_quality": "reliable",
"symbol": "NVDA",
"underlying_price": 875.5
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Path Parameters
Response
Options analysis summary
Phase 1 batch options analysis payload for a single symbol.
Combines max-pain positioning, GEX regime, IV term structure, and institutional flow signals into a unified snapshot used downstream by the strike advisor scoring engine.
Ticker symbol
Current underlying spot price
Feed access for underlying_price: 'realtime_sip' | 'delayed' | 'byok'
Max pain strike price from open interest weighting
Max pain reliability flag: 'reliable' or 'insufficient'
Gamma exposure regime: 'long_gamma', 'short_gamma', or 'neutral'
Strike where dealer gamma flips sign
Strike with highest absolute net gamma (GEX pin strike)
IV term structure shape: 'contango', 'backwardation', 'flat', or 'humped'
IV rank (0-100) relative to 252-day history
Net institutional flow direction: 'bullish', 'bearish', or 'neutral'
Flow signal strength (0-100)
Number of unusual flow signals in trailing 24 hours
CVD trend direction: 'bullish', 'bearish', or 'neutral'
CVD divergence flag: 'bullish_divergence', 'bearish_divergence', or None
Timestamp when this analysis was computed