ephemeris_next_lunar_phase
Find the next occurrence of a specific lunar phase (new moon, full moon, first quarter, last quarter) after a given date. Returns UTC datetime, zodiac sign, and degree. Specify phase, optional start date, and number of results (1-12).
Instructions
Find the next occurrence of a specific Moon phase after a given date. Returns the exact UTC datetime, zodiac sign, and degree.
✅ USE THIS TOOL FOR: 'When is the next new moon?', 'When is the next full moon?', 'What date is the next quarter moon?', or any question about UPCOMING phase dates.
CREDIT COST: 1 credit per call.
EXAMPLE: Find the next new moon: phase='new_moon'
EXAMPLE: Find the next full moon after a specific date: phase='full_moon', after_date='2026-06-01'
EXAMPLE: Find the next 3 full moons: phase='full_moon', count=3
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| phase | Yes | The lunar phase to find. 'new_moon' = conjunction (0° Sun-Moon, start of cycle). 'full_moon' = opposition (180°). 'first_quarter' = 90° waxing. 'last_quarter' = 270° waning. | |
| after_date | No | ISO 8601 date to search from (e.g. '2026-06-01'). Defaults to today (UTC) if omitted. | |
| count | No | Number of upcoming occurrences to return (1-12). Default 1. |