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

Horary Planetary Hours

POST
/horary/planetary-hours
request.sh
curl -X POST https://api.astroway.info/v1/horary/planetary-hours \
-H "X-Api-Key: aw_live_..." \
-H "Content-Type: application/json" \
-d '{ "dayOfWeek": 6, "sunriseHour": 5.05, "sunsetHour": 21.2, "currentHour": 14.5 }'

Return the planetary hour ruler at the exact moment of a horary question and check if it matches the ASC ruler.

Media type application/json
object
date required
string
/^\d{4}-\d{2}-\d{2}$/
latitude required
number
nullable
longitude required
number
nullable
timezoneOffset
number
0 nullable
Example
{
"dayOfWeek": 6,
"sunriseHour": 5.05,
"sunsetHour": 21.2,
"currentHour": 14.5
}

Successful calculation

Media type application/json
object
ok
boolean
data
object
hourRuler
string
nullable
dayRuler
string
nullable
ascRuler
string
nullable
match
boolean
nullable
hourNumber
number
nullable
hourStart
string
nullable
hourEnd
string
nullable
Example
{
"ok": true,
"data": {
"hourRuler": "Venus",
"dayRuler": "Saturn",
"ascRuler": "Venus",
"match": true,
"hourNumber": 4,
"hourStart": "14:02",
"hourEnd": "15:04"
}
}

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"
}
}
Корисно?