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

Soul Urge / Heart's Desire (pythagorean)

POST
/numerology/pythagorean/soul-urge
request.sh
curl -X POST https://api.astroway.info/v1/numerology/pythagorean/soul-urge \
-H "X-Api-Key: aw_live_..." \
-H "Content-Type: application/json" \
-d '{ "name": "John Smith", "date": "1990-05-15" }'

Calculate the Soul Urge number from the vowels of the full birth name. Numerology: Pythagorean system.

Media type application/json
object
name required
string
>= 2 characters <= 120 characters
date required
string
/^\d{4}-\d{2}-\d{2}$/
Example
{
"name": "John Smith",
"date": "1990-05-15"
}

Successful calculation

Media type application/json
object
ok
boolean
data
object
system
string
nullable
name
string
nullable
date
string
nullable
soulUrge
object
raw
number
nullable
reduced
number
nullable
isMaster
boolean
nullable
steps
Array<number>
nullable
meaning
object
number
number
nullable
archetype
string
nullable
strengths
Array<string>
nullable
shortRead
string
nullable
Example
{
"ok": true,
"data": {
"system": "pythagorean",
"name": "John Smith",
"date": "1990-05-15",
"soulUrge": {
"raw": 30,
"reduced": 3,
"isMaster": false,
"steps": [
30,
3
],
"meaning": {
"number": 3,
"archetype": "The Communicator",
"strengths": [
"expression"
],
"shortRead": "creative communicator..."
}
}
}
}

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