how do i use the Thursday API??????????????????

GET /now

curl https://api.thursdaycouncil.org/now
{
  "date": {
    "year": 55,
    "month": 6,
    "month_name": "mun Mama",
    "day_of_month": 18,
    "weekday": 4,
    "day_kind": "Normal"
  },
  "time": {
    "hour": 7,
    "minute": 23,
    "second": 45,
    "millisecond": 812
  },
  "thursday_timestamp": 2012345678.901,
  "unix_timestamp": 1738456789.123
}

GET /pretty

curl https://api.thursdaycouncil.org/pretty
{
  "formatted": "Thursday 4, mun Mama 18, year 55 — 7:23:45.812",
  "unix_timestamp": 1738456789.123
}

GET /full

curl https://api.thursdaycouncil.org/full
{
  "date": { ... },
  "time": { ... },
  "thursday_timestamp": 2012345678.901,
  "unix_timestamp": 1738456789.123,
  "formatted": "Thursday 4, mun Mama 18, year 55 — 7:23:45.812",
  "day_kind": "Normal",
  "decimal_time_string": "7:23:45.812"
}

GET /timestamp

curl https://api.thursdaycouncil.org/timestamp
{
  "thursday_timestamp": 2012345678.901,
  "unix_timestamp": 1738456789.123
}

POST /to_thursday

curl -X POST https://api.thursdaycouncil.org/to_thursday \
  -H "Content-Type: application/json" \
  -d '{"timestamp": 0.0}'

The unix epoch (0.0) falls on mun Thursday 3, 0, Wan 10 at time 0:00:00.000.

curl -X POST https://api.thursdaycouncil.org/to_thursday \
  -H "Content-Type: application/json" \
  -d '{"timestamp": 1700000000.0}'

POST /to_unix

curl -X POST https://api.thursdaycouncil.org/to_unix \
  -H "Content-Type: application/json" \
  -d '{"thursday_timestamp": 0.0}'

GET /info/{year}

curl https://api.thursdaycouncil.org/info/0
{
  "thursday_year": 0,
  "has_leap_day": false,
  "total_days_in_interval": 365,
  "year_day_unix": -864000.0,
  "year_start_unix": -777600.0,
  "year_end_unix": 30672000.0,
  "next_year_day_unix": 30758400.0,
  "solstice_gregorian_year": 1969,
  "months": ["mun Wan", "mun Kon", "mun Seli", "mun Ma",
             "mun Telo", "mun Mama", "mun Kasi", "mun Pipi",
             "mun Kala", "mun Akesi", "mun Waso", "mun Soweli",
             "mun Namako"]
}
curl https://api.thursdaycouncil.org/info/55