← ramp.day

Ramp Day Calculator

Date → Day

Day → Date

API

Convert between dates and days since March 19, 2019, the start of Ramp (inclusive).

Usage

GET

https://ramp.day/api?date=YYYY-MM-DD
https://ramp.day/api?day=NUMBER
https://ramp.day/api

POST

https://ramp.day/api
with JSON body: {"date": "YYYY-MM-DD"} or {"day": NUMBER}

Examples

GET

https://ramp.day/api?day=1001

Response

{"date":"2021-12-13","day":1001}

GET (current date)

https://ramp.day/api

Response



			

POST

curl -X POST https://ramp.day/api \
  -d '{"date": "2021-12-13"}'

Response

{"day":1001,"date":"2021-12-13"}