3 Months From Today

What date is 3 months after today? The answer below was computed when this page was built; the live answer changes daily, so use the formula or the worked examples for any date you choose.

As of build time (April 27, 2026)

Monday, July 27, 2026

Unix timestamp: 1785110400 · ISO 8601: 2026-07-27T00:00:00Z

Worked Examples From Reference Dates

Start Date3 months afterUnix Timestamp
January 1, 2024Monday, April 1, 20241711929600
July 4, 2024Friday, October 4, 20241728000000
January 1, 2025Tuesday, April 1, 20251743465600
June 15, 2025Monday, September 15, 20251757894400
January 1, 2026Wednesday, April 1, 20261775001600

How to Calculate This Yourself

JavaScript (with day.js)

dayjs().add(3, 'month').format('YYYY-MM-DD')

Python

from datetime import date, timedelta
# For months/years use dateutil.relativedelta:
from dateutil.relativedelta import relativedelta
result = date.today() + relativedelta(months=3)

Bash (GNU date)

date -d "+3 months" +"%Y-%m-%d"
Need the full converter? Open the Timestamp Converter →