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

Life Path Number (vedic)

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

Calculate the Life Path number from birth date (year + month + day, reduced). Numerology: Vedic system.

fields
string

Comma-separated dotted paths, relative to data, to keep in the response. A path is applied to every element of an array, so planets.name means the name of each planet. Paths that match nothing come back in _fields_unmatched; a list where nothing matches at all is a 400, because an empty object would be a confident wrong answer.

Example
planets.name,planets.longitude
precision
integer
<= 15

Round every non-integer number in the response to this many decimal places. Integers are left alone, because an id is not a measurement. Ecliptic longitudes ship with fourteen decimals by default; 2 is about a tenth of an arcminute.

Example
4
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
lifePath
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",
"lifePath": {
"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"
}
}
Корисно?