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

Challenge Cycles (kabbalistic-strict)

POST
/numerology/kabbalistic-strict/challenge

Calculate four Challenge cycles — life-area difficulties to master, derived from birth date components. Numerology — Kabbalistic (Mathers strict) system.

curl -X POST https://api.astroway.info/v1/numerology/kabbalistic-strict/challenge \
-H "X-Api-Key: aw_live_..." \
-H "Content-Type: application/json" \
-d '{ "name": "John Smith", "date": "1990-05-15" }'
object
Example
{
"name": "John Smith",
"date": "1990-05-15"
}

Successful calculation

object
ok
boolean
Example
true
data
object
system
string
challenges
object
first
object
reduced
number
meaning
object
archetype
string
second
object
reduced
number
third
object
reduced
number
fourth
object
reduced
number
Example
{
"ok": true,
"data": {
"system": "kabbalistic-strict",
"challenges": {
"first": {
"reduced": 4,
"meaning": {
"archetype": "The Builder"
}
},
"second": {
"reduced": 1
},
"third": {
"reduced": 3
},
"fourth": {
"reduced": 5
}
}
}
}

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