Mundane Chart Key Dates#

/api/astro/mundane-dates/

Use this endpoint to receive the list of key dates for the mundane chart.

Request#

Method POST

It requires the year parameter, which should be from 1000 to 2900.

Response#

{
    "sun_ingressions": [
        {
            "date": {
                "year": 2024,
                "month": 3,
                "day": 20,
                "hour": 3,
                "minute": 6,
                "second": 32,
                "tz": 0
            },
            "ingression_degree": 0,
            "planet_a": "Sun", // planet in principial place
            "planet_b": null, // other planet in principial place
        },
        // The same for ingression in 90, 190 and 270 degrees
    ],
    "lunations": [
        {
            "date": {
                "year": 2024,
                "month": 4,
                "day": 8,
                "hour": 18,
                "minute": 21,
                "second": 2,
                "tz": 0
            },
            "aspect": 0,
            "synod_duration": 29.375589878764004, // synod cycle in days
            "planet_a": "Sun", // planet in principial place
            "planet_b": "Moon", // other planet in principial place
        },
        {
            "date": {
                "year": 2024,
                "month": 4,
                "day": 13,
                "hour": 6,
                "minute": 34,
                "second": 35,
                "tz": 0
            },
            "aspect": 60 // aspect between luminaries
        },
        // the same for other lunations untill the next Sun's ingression in 0 Aries
    ],
    "synods": [
        {
            "planet_a": "Mars", // planet in principial place
            "planet_b": "Jupiter", // another planet in principial place
            "date": {
                "year": 2024,
                "month": 8,
                "day": 14,
                "hour": 15,
                "minute": 21,
                "second": 29,
                "tz": 0
            },
            "synod_duration": 808.2019052393734 // in days
        },
        // the same for other combinations of upper planets.
        // Normally the previous synod is shown untill it happens within current solar cycle.
    ]
}