This service provides real-time options and equity data. Please note that there is a 15-minute delay in the data provided.
https://data.0dte-toolbox.com/
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.
https://data.0dte-toolbox.com/API/Key?api_key=abc123-def456
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.
num_days (integer, optional): Number of market days to return (1-30, default: 5).key (string, required): Your API key for authentication.https://data.0dte-toolbox.com/market-days?num_days=4&key=your-api-key-here
{
"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 /data/{ticker}/{period}?key=YOUR_API_KEY
Fetches data for a specific ticker and period from Redis. Requires API key authentication.
ticker (string, required): The stock ticker. Supported tickers are: SPY, SPX, QQQ.period (string, required): The time period for the data. Supported periods are: 0dte, week, month, alltime.key (string, required): Your API key for authentication.https://data.0dte-toolbox.com/data/SPY/week?key=your-api-key-here
In Excel, go to Data → Get Data → From Web and use the URL above with your API key.
strikePrice,callVolume,putVolume,...
...