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

Primary Directions

POST
/primary-directions
request.sh
curl -X POST https://api.astroway.info/v1/primary-directions \
-H "X-Api-Key: aw_live_..." \
-H "Content-Type: application/json" \
-d '{ "date": "1990-05-15", "time": "14:30:00", "timezoneOffset": 3, "latitude": 50.45, "longitude": 30.52, "key": 0.9856353, "maxAge": 80, "aspectAngles": [ 0, 60, 90, 120, 180 ] }'

Calculate primary directions (Ptolemaic or Regiomontanus) up to a maximum age. Returns a timeline of directed aspect hits.

Media type application/json

Natal chart plus the directional rate in degrees per year (Naibod 0.9856353 by default), the age to search to, and the aspect angles to test.

object
date required
string
/^\d{4}-\d{2}-\d{2}$/
time required
string
/^\d{2}:\d{2}:\d{2}$/
timezoneOffset

Hours from UTC at the given moment, not minutes. Fractional zones are hours too: 5.5 for India, 5.75 for Nepal, -3.5 for Newfoundland. Defaults to 0, meaning UTC.

number
0 nullable >= -14 <= 14
latitude required
number
>= -90 <= 90
longitude required
number
>= -180 <= 180
houseSystem
string
default: P
name
string
""
city
string
""
zodiacType
string
Allowed values: tropical sidereal
ayanamsaId
number
nullable
ayanamsa

Sidereal school by name. Lahiri when omitted. Equivalent to ayanamsaId; send either.

string
Allowed values: fagan-bradley lahiri de-luce raman krishnamurti kp yukteshwar jn-bhasin true-citra djwhal-khul
cosmogram
boolean
key
number
<= 2
maxAge
integer
<= 120
aspectAngles
Array<number>
<= 64 items
Example
{
"date": "1990-05-15",
"time": "14:30:00",
"timezoneOffset": 3,
"latitude": 50.45,
"longitude": 30.52,
"key": 0.9856353,
"maxAge": 80,
"aspectAngles": [
0,
60,
90,
120,
180
]
}

Successful calculation

Media type application/json
object
ok
boolean
data
object
directions
Array<object>
nullable
object
promissor
string
nullable
promissorId
number
nullable
significator
string
nullable
significatorId
number
nullable
aspectAngle
number
nullable
arc
number
nullable
ageYears
number
nullable
isDirect
boolean
nullable
Example
{
"ok": true,
"data": {
"directions": [
{
"promissor": "Venus",
"promissorId": 3,
"significator": "MC",
"significatorId": -2,
"aspectAngle": 60,
"arc": 0.09232215600522409,
"ageYears": 0.09366766389680249,
"isDirect": false
}
]
}
}

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