Перейти до вмісту

Eclipses

POST
/api/v1/eclipses

Find solar and lunar eclipses within a given year or multi-year range. Returns type, date, and geographic visibility data.

object
Example
{
"year": 2024,
"yearsRange": 2
}

Successful calculation

object
ok
boolean
Example
true
data
object

Validation error

Example
{
"ok": false,
"error": {
"code": "INVALID_INPUT",
"message": "Validation failed: date: Date must be YYYY-MM-DD",
"details": [
{
"path": "date",
"message": "Date must be YYYY-MM-DD"
}
]
}
}

Missing or invalid API key

Example
{
"ok": false,
"error": {
"code": "INVALID_API_KEY",
"message": "Invalid API key"
}
}