get

/api/v1/moon/today

Get today's Moon phase

Overview

Shorthand endpoint for current Moon phase.

Response

200 — Today's Moon phase

phase string required
Enum:
New MoonWaxing CrescentFirst QuarterWaxing GibbousFull MoonWaning GibbousLast QuarterWaning Crescent
illumination number required
Percentage of Moon illuminated
date string 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"
}