Lunar Return Chart Data Endpoint #
POST /api/v5/chart-data/lunar-return #
Calculates the Lunar Return chart for the return happening on or after the specified date. The Lunar Return occurs when the Moon returns to the exact same position as in the natal chart (happens every ~27 days).
Request Body #
subject(object, required): Natal subject.{ "name": "John Doe", "year": 1990, "month": 1, "day": 1, "hour": 12, "minute": 0, "city": "London", "nation": "GB", "longitude": -0.1278, "latitude": 51.5074, "timezone": "Europe/London" }year(integer, required): Year to search.month(integer, required): Month to search.day(integer, optional): Day (1-31) to start the search from. Defaults to 1. Useful for finding later returns in the same month.return_location(object, optional): Relocation for the return.wheel_type(string, optional): “dual” or “single”.
Complete Request Example #
{
"subject": {
"name": "John Doe",
"year": 1990,
"month": 1,
"day": 1,
"hour": 12,
"minute": 0,
"city": "London",
"nation": "GB",
"lng": -0.1278,
"lat": 51.5074,
"tz_str": "Europe/London"
},
"year": 2024,
"month": 5,
"day": 1,
"wheel_type": "single"
}
Response Body #
status(string): “OK”.return_type(string): “Lunar”.wheel_type(string): “single”.chart_data(object): Single chart data (since wheel_type is single).
Complete Response Example #
{
"status": "OK",
"return_type": "Lunar",
"wheel_type": "single",
"chart_data": {
"planets": { ... },
"houses": [ ... ],
"aspects": [ ... ]
}
}