Перейти до вмісту
AstroWay/api v2.73.0 · 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 '{ "date": "2024-06-15", "time": "14:30:00", "timezoneOffset": 3, "latitude": 50.45, "longitude": 30.52 }'

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
{
"date": "2024-06-15",
"time": "14:30:00",
"timezoneOffset": 3,
"latitude": 50.45,
"longitude": 30.52
}

Successful calculation

Media type application/json
object
ok
boolean
data
object
hourRuler
string
dayRuler
string
ascRuler
string
match
boolean
hourNumber
number
hourStart
string
hourEnd
string
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"
}
}
Корисно?