Перейти до вмісту
AstroWay/api v2.73.0 · docs
усі системи в нормі

Moon Aspects

POST
/moon-aspects
request.sh
curl -X POST https://api.astroway.info/v1/moon-aspects \
-H "X-Api-Key: aw_live_..." \
-H "Content-Type: application/json" \
-d '{ "year": 2024, "month": 6 }'

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

Media type application/json
object
year required
integer
nullable
month required
integer
>= 1 <= 12
Example
{
"year": 2024,
"month": 6
}

Successful calculation

Media type application/json
object
ok
boolean
data
object
aspects
Array<object>
object
date
string
moon
object
longitude
number
sign
string
planet
string
type
string
exact
string
Example
{
"ok": true
}

Validation error

Media type application/json
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

Media type application/json
Example
{
"ok": false,
"error": {
"code": "INVALID_API_KEY",
"message": "Invalid API key"
}
}
Корисно?