Skip to content

Put/Call Data API

Retrieve options market data including put/call ratios and volume. Track options positioning and sentiment.

GET /v1/putcalldata/{market}/{ticker}

Requires API key via token query parameter.

ParameterTypeRequiredDescription
marketstringYesMarket identifier (e.g., S&P 500, NASDAQ)
tickerstringYesStock ticker symbol (e.g., AAPL, MSFT)
ParameterTypeRequiredDescription
tokenstringYesYour API key
dateFromstringNoStart date (YYYY-MM-DD)
dateTostringNoEnd date (YYYY-MM-DD)
Terminal window
curl "https://api.finbrain.tech/v1/putcalldata/S%26P%20500/AAPL?token=YOUR_API_KEY"
{
"ticker": "AMZN",
"name": "Amazon.com Inc.",
"putCallData": [
{
"date": "2024-03-19",
"ratio": 0.4,
"callCount": 788319,
"putCount": 315327
}
]
}
FieldTypeDescription
tickerstringStock ticker symbol
namestringCompany name
putCallDataarrayArray of put/call data points
FieldTypeDescription
datestringDate (YYYY-MM-DD)
rationumberPut/call ratio
callCountintegerCall options count
putCountintegerPut options count
RatioInterpretation
> 1.2Heavy put activity (bearish/hedging)
0.7 - 1.2Normal range
< 0.7Heavy call activity (bullish)
CodeErrorDescription
400Bad RequestInvalid market or ticker
401UnauthorizedInvalid or missing API key
404Not FoundTicker not found
500Internal Server ErrorServer-side error