Next OpEx Date
The next standard monthly equity and ETF OpEx after the already-passed April 17, 2026 cycle is Friday, May 15, 2026. Use this page for the immediate answer, nearby weekly cycles, and the API path for listed expirations.
Next monthly OpEx
Friday, May 15, 2026
Standard monthly OpEx
Next quarterly OpEx
Thursday, June 18, 2026
Quarterly OpEx cycles fall in March, June, September, and December.
April 2026 status
Already passed
April monthly OpEx was Friday, April 17, 2026.
Interpretation
What the answer means operationally
OpEx is a calendar label, but the useful trading object is a listed contract. The standard monthly cycle is the third-Friday anchor that most people mean when they ask when OpEx is this month. Weekly options can create additional expirations around the same window, while index products such as SPXW can add even more short-dated expirations. That means the right workflow is two-stage: use the calendar to understand the cycle, then ask the API which expirations are actually listed for the ticker.
The distinction matters in backtests and scanners. A model that assumes every Friday exists for every underlying will create invalid chain requests, and a model that treats a quarterly OpEx exactly like a normal weekly date can miss the open-interest concentration that often changes liquidity, spreads, and dealer hedging behavior. The calendar answer gets you oriented; listed expirations keep the implementation falsifiable.
Nearby weekly and monthly expiration dates
These are the next Friday-cycle dates from the calendar helper. Use the API for exact currently listed expirations on a specific ticker.
| Date | Cycle | Note |
|---|---|---|
| Friday, May 8, 2026 | Weekly | Weekly Friday cycle |
| Friday, May 15, 2026 | Monthly | Standard monthly OpEx |
| Friday, May 22, 2026 | Weekly | Weekly Friday cycle |
| Friday, May 29, 2026 | Weekly | Weekly Friday cycle |
Fetch the next listed dates instead of hard-coding them
Use the expirations endpoint for the ticker you care about, then request contracts or chains only for dates the API returns.
Implementation
A compact API sequence for OpEx-aware tools
A robust expiration widget should first request listed dates, then classify them relative to the standard monthly calendar, and only then request chains or contracts. This keeps the UI stable when a symbol has unusual listing depth, when a holiday moves the standard cycle, or when a ticker has no contracts on a date that a generic calendar would otherwise suggest.
curl "https://api.cutemarkets.com/v1/tickers/expirations/SPY/" \
-H "Authorization: Bearer YOUR_API_KEY"
curl "https://api.cutemarkets.com/v1/options/chain/SPY/?expiration_date=2026-05-15&limit=100" \
-H "Authorization: Bearer YOUR_API_KEY"Last verified
Date-sensitive calendar references on this page were checked on May 7, 2026. Calendar math is useful for planning, but listed contracts and exchange calendars should still be verified before production workflows run.
Next OpEx date FAQ
What is the next monthly OpEx date after April 2026?
After the April 17, 2026 monthly OpEx, the next standard monthly equity and ETF options expiration is Friday, May 15, 2026.
Is every Friday an OpEx date?
Many active equity and ETF options have Friday weekly expirations, but monthly OpEx usually refers to the standard third-Friday monthly cycle.
What happens when OpEx falls on a market holiday?
If the standard monthly expiration Friday is a market holiday, the expiration normally moves to the prior business day.
Related pages
Monthly OpEx dates
See the full standard monthly table for 2026 and 2027.
Quarterly OpEx dates
Jump to the March, June, September, and December quarterly cycles.
Expiring stock options list
Start with the 2026 calendar list of popular stock and ETF option underlyings.
Expiration data workflow
Use the calendar-vs-listed-expiration workflow before requesting chains, contracts, quotes, or bars.
Full expiration calendar
Use the interactive calendar for weekly, monthly, quarterly, and holiday-adjusted OpEx dates.
Stock options 2026 calendar
Translate expiring-stock lookups into ticker-specific listed option expiration workflows.
Calendar by ticker
Use the ticker-by-ticker 2026 expiration article for SPY, QQQ, AAPL, NVDA, TSLA, IWM, and TLT.
TSLA weekly expirations
Check TSLA weekly expiration dates, February 2025 context, and the listed-date API workflow.
Next OpEx date
Get the immediate answer for the next standard monthly OpEx and nearby weekly cycles.
Expirations API docs
Fetch listed expiration dates for any underlying ticker with one endpoint.
Options data catalog
Browse contracts, chains, quotes, trades, bars, and reference endpoints.