1 Month Ago

What date is 1 month before 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)

Friday, March 27, 2026

Unix timestamp: 1774569600 · ISO 8601: 2026-03-27T00:00:00Z

Worked Examples From Reference Dates

Start Date1 month beforeUnix Timestamp
January 1, 2024Friday, December 1, 20231701388800
July 4, 2024Tuesday, June 4, 20241717459200
January 1, 2025Sunday, December 1, 20241733011200
June 15, 2025Thursday, May 15, 20251747267200
January 1, 2026Monday, December 1, 20251764547200

How to Calculate This Yourself

JavaScript (with day.js)

dayjs().subtract(1, '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=1)

Bash (GNU date)

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