get
/api/v1/moon/phases
Get Moon phases for a month
Overview
Returns all major Moon phases (New, First Quarter, Full, Last Quarter) for a specified month.
Parameters
| Name | Type | In | Required | Description |
|---|---|---|---|---|
year | string | query | Yes | Year (YYYY) |
month | string | query | Yes | Month (1-12) |
Response
200 — Moon phases for the month
yearnumber requiredmonthnumber requiredphasesarray requiredarray of object
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/phases" \
-H "Authorization: Bearer YOUR_API_KEY"Example Response
JSON
{
"year": 0,
"month": 0,
"phases": [
{
"phase": "New Moon",
"illumination": 75.5,
"date": "2025-11-26"
}
]
}