Professional REST API with 15+ years of options data, real-time Greeks, AI-Based Unusual Activity scores, Volatility Forecasts, and comprehensive metrics. Built for algorithmic trading and quantitative research.
{
"options": [
{
"symbol": "SPY220615C00400000",
"strike": "400.0",
"type": "call",
"expiration_date": "2022-06-15",
"bid": "2.15",
"ask": "2.18",
"volume": 12450,
"open_interest": 54320,
"implied_volatility": "0.285",
"delta": "0.52",
"gamma": "0.028",
"theta": "-0.15",
"vega": "0.32"
}
]
}
Clean, well-documented REST API with comprehensive options data and analytics.
Complete options chains with pricing, Greeks, and volume data.
80+ calculated metrics including volatility, Greeks exposure, and sentiment.
Real-time and historical OHLC data with volume.
Simple, clean API designed for developers.
import requests
headers = {
'X-USER-EMAIL': '[email protected]',
'X-USER-TOKEN': 'your-api-token'
}
# Get SPY options chain
response = requests.get(
'https://optionomics.ai/api/v1/stocks/SPY/options',
headers=headers
)
options = response.json()['options']
# Filter ATM calls
atm_calls = [
opt for opt in options
if opt['type'] == 'call'
and abs(float(opt['moneyness'])) < 5
]
const headers = {
'X-USER-EMAIL': '[email protected]',
'X-USER-TOKEN': 'your-api-token'
};
// Get AAPL metrics
const response = await fetch(
'https://optionomics.ai/api/v1/stocks/AAPL/metrics',
{ headers }
);
const data = await response.json();
console.log(`Put/Call Ratio: ${ data.metrics.put_call_ratio }`);
console.log(`IV Percentile: ${ data.metrics.iv_percentile }%`);
req, _ := http.NewRequest("GET",
"https://optionomics.ai/api/v1/stocks/TSLA/quote",
nil)
req.Header.Set("X-USER-EMAIL", "[email protected]")
req.Header.Set("X-USER-TOKEN", "your-api-token")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
var result map[string]interface{}
json.NewDecoder(resp.Body).Decode(&result)
curl -X GET \ "https://optionomics.ai/api/v1/stocks/SPY/options?date=2024-01-15" \ -H "X-USER-EMAIL: [email protected]" \ -H "X-USER-TOKEN: your-api-token"
Complete historical database for backtesting, research, and model training.
Build, backtest, and deploy algorithmic strategies
Build automated options strategies based on Greeks, volatility, or flow patterns.
Test your hypotheses against 15+ years of real market data across all conditions.
Train models on comprehensive options data with rich features and labels.
Discover new patterns and relationships in options market data.
Enterprise-grade API infrastructure built for reliability and performance.
100 requests/minute
Clean JSON
< 200ms avg
Token-based
Professional API from $99/month
API Access
Join quant traders using professional options data API.
Data you can trust. API you can depend on.