TraderDaddy Pro API
Access real-time institutional options flow, gamma exposure, sector analytics, and 15+ endpoints via a simple REST API. Build trading tools, alerts, and dashboards powered by the same data your subscribers see.
Quick Start
Authenticate with your API key and start fetching data in minutes.
Authentication
Pass your API key in the X-API-Key request header on every request.
GET https://api.traderdaddy.pro/api/v1/unusual-activity X-API-Key: td_live_your_key_here
Base URL
All endpoints are served over HTTPS. Include the versioned prefix on every request.
https://api.traderdaddy.pro/api/v1
curl -H "X-API-Key: td_live_your_key_here" \ "https://api.traderdaddy.pro/api/v1/unusual-activity?minScore=85&timeFrame=today"
Rate Limits
Rate limits are applied per API key to ensure fair access across all integrations.
30 requests per minute per API key. Headers are returned with every response.
X-RateLimit-LimitX-RateLimit-RemainingX-RateLimit-ResetWhen the limit is exceeded the API returns HTTP 429. Check X-RateLimit-Reset for the Unix timestamp at which your quota resets.
Endpoints Reference
Click any endpoint to expand its parameters. All requests require the X-API-Key header.
Options Flow
Market Data
Gamma Exposure (GEX)
Sector Analysis
Signals & Scanners
Earnings & Events
Intelligence
Ticker Search
Error Handling
All errors return a JSON body with a consistent shape.
Error response format
{
"error": "Unauthorized",
"message": "API key is missing or invalid."
}HTTP status codes
Getting Started
Four steps from zero to live data.
- 1
Subscribe to Premium
API access requires an active Premium subscription ($34.99/mo). View pricing
- 2
Add Developer API access
From your account, go to Settings → Developer tab and add the API add-on ($49.99/mo).
- 3
Generate an API key
Once the add-on is active, click "Generate API Key" on the Developer tab. Keys are prefixed
td_live_. Store it securely — it will not be shown again. - 4
Start making requests
Pass your key in the
X-API-Keyheader. All endpoints return JSON. See the Endpoints Reference above for the full list.
Code Examples
Drop-in snippets for popular languages.
import requests
API_KEY = "td_live_your_key_here"
BASE_URL = "https://api.traderdaddy.pro/api/v1"
response = requests.get(
f"{BASE_URL}/unusual-activity",
headers={"X-API-Key": API_KEY},
params={"minScore": 85, "timeFrame": "today"}
)
data = response.json()
for flow in data["data"][:5]:
print(f"{flow['ticker']} {flow['sentiment']} ${flow['premium']:,.0f}")const API_KEY = "td_live_your_key_here";
const BASE_URL = "https://api.traderdaddy.pro/api/v1";
const response = await fetch(
`${BASE_URL}/unusual-activity?minScore=85&timeFrame=today`,
{ headers: { "X-API-Key": API_KEY } }
);
const { data } = await response.json();
data.slice(0, 5).forEach(flow => {
console.log(`${flow.ticker} ${flow.sentiment} $${flow.premium.toLocaleString()}`);
});curl -H "X-API-Key: td_live_your_key_here" \ "https://api.traderdaddy.pro/api/v1/unusual-activity?minScore=85&timeFrame=today"
Ready to build?
Add Developer API access from your account settings and start pulling live options flow data into your own tools.
