Next OpEx date

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.

DateCycleNote
Friday, May 8, 2026WeeklyWeekly Friday cycle
Friday, May 15, 2026MonthlyStandard monthly OpEx
Friday, May 22, 2026WeeklyWeekly Friday cycle
Friday, May 29, 2026WeeklyWeekly 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.

Official exchange calendars can change. For exchange-level validation, compare against the current Cboe options expiration calendar before operational use.

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