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

Pinnacle Cycles (vedic)

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

Calculate four Pinnacle cycles with their age boundaries: life chapters of opportunity. 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
pinnacles
object
first
object
reduced
number
nullable
endsAtAge
number
nullable
second
object
reduced
number
nullable
endsAtAge
number
nullable
third
object
reduced
number
nullable
endsAtAge
number
nullable
fourth
object
reduced
number
nullable
endsAtAge
number
nullable
Example
{
"ok": true,
"data": {
"system": "vedic",
"pinnacles": {
"first": {
"reduced": 7,
"endsAtAge": 30
},
"second": {
"reduced": 4,
"endsAtAge": 39
},
"third": {
"reduced": 3,
"endsAtAge": 48
},
"fourth": {
"reduced": 8,
"endsAtAge": 57
}
}
}
}

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