0DTE Toolbox - LiveData

This service provides real-time options and equity data. Please note that there is a 15-minute delay in the data provided.

Available Tickers

API Documentation

Base URL

https://data.0dte-toolbox.com/

Endpoints

Validate API Key

GET /API/Key?api_key=YOUR_KEY

Validate an API key and check its expiration status.

⚠️ Rate Limited: 10 requests per minute per IP address.

Example Request:

https://data.0dte-toolbox.com/API/Key?api_key=abc123-def456

Get Next Market Days

GET /market-days?num_days=5&key=YOUR_API_KEY

Returns the next N market (trading) days. If market is currently open, today is included. Requires API key.

Parameters:

Example Request:

https://data.0dte-toolbox.com/market-days?num_days=4&key=your-api-key-here

Example Response (JSON):

{
  "success": true,
  "market_days": ["2026-04-23", "2026-04-24", "2026-04-25", "2026-04-28"],
  "count": 4,
  "start_date": "2026-04-23",
  "end_date": "2026-04-28",
  "current_time": "2026-04-22T15:30:00-04:00"
}

Get Ticker Data

GET /data/{ticker}/{period}?key=YOUR_API_KEY

Fetches data for a specific ticker and period from Redis. Requires API key authentication.

URL Parameters:

Example Request:

https://data.0dte-toolbox.com/data/SPY/week?key=your-api-key-here

Excel Usage:

In Excel, go to Data → Get Data → From Web and use the URL above with your API key.

Example Response (CSV):

strikePrice,callVolume,putVolume,...
...