Skip to main content
TraderDaddy Pro
CLOSED
Developer API

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.

$49.99/mo add-on — available to Premium subscribers

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.

http
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.

text
https://api.traderdaddy.pro/api/v1
Fetch unusual activity — example
curl
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-Reset

When 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

json
{
  "error": "Unauthorized",
  "message": "API key is missing or invalid."
}

HTTP status codes

200OK — request succeeded, data in response body
400Bad Request — missing or invalid query parameters
401Unauthorized — API key missing or malformed
403Forbidden — key does not have permission for this resource
429Too Many Requests — rate limit exceeded, retry after X-RateLimit-Reset
500Internal Server Error — contact support if persistent

Getting Started

Four steps from zero to live data.

  1. 1

    Subscribe to Premium

    API access requires an active Premium subscription ($34.99/mo). View pricing

  2. 2

    Add Developer API access

    From your account, go to Settings → Developer tab and add the API add-on ($49.99/mo).

  3. 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. 4

    Start making requests

    Pass your key in the X-API-Key header. All endpoints return JSON. See the Endpoints Reference above for the full list.

Code Examples

Drop-in snippets for popular languages.

python
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}")
javascript
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()}`);
});
bash
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.