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

Moon Aspects

POST
/api/v1/moon-aspects

Calculate all aspects the Moon makes within a date range (applying and separating), useful for electional and horary work.

object
Example
{
"startDate": "2024-06-01",
"endDate": "2024-06-30",
"orb": 8
}

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"
}
}