get
/api/v1/moon/today
Get today's Moon phase
Overview
Shorthand endpoint for current Moon phase.
Response
200 — Today's Moon phase
phasestring required- Enum:
New MoonWaxing CrescentFirst QuarterWaxing GibbousFull MoonWaning GibbousLast QuarterWaning Crescent illuminationnumber required- Percentage of Moon illuminated
datestring required- ISO date string
Example Request
cURL
curl "https://api.almuten.io/api/v1/moon/today" \
-H "Authorization: Bearer YOUR_API_KEY"Example Response
JSON
{
"phase": "New Moon",
"illumination": 75.5,
"date": "2025-11-26"
}