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

Symbolic Directions

POST
/symbolic-directions
request.sh
curl -X POST https://api.astroway.info/v1/symbolic-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, "targetDate": "2026-05-15", "key": "solar_arc", "converse": false }'

Calculate symbolic arc directions to natal points for a target date. Key: “one_degree” (default), “naibod”, or “solar_arc” (the arc of the progressed Sun).

Media type application/json

Natal chart plus a target date and the directional key: one degree per year, the Naibod rate, or the arc of the progressed Sun.

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
targetDate required
string
/^\d{4}-\d{2}-\d{2}$/
targetTime
string
/^\d{2}:\d{2}:\d{2}$/
targetTzOffset
number
nullable
converse
boolean
key
string
Allowed values: one_degree naibod solar_arc
Example
{
"date": "1990-05-15",
"time": "14:30:00",
"timezoneOffset": 3,
"latitude": 50.45,
"longitude": 30.52,
"targetDate": "2026-05-15",
"key": "solar_arc",
"converse": false
}

Successful calculation

Media type application/json
object
ok
boolean
data
object
planets
Array<object>
nullable
object
id
number
nullable
name
string
nullable
longitude
number
nullable
latitude
number
nullable
distance
number
nullable
speedLong
number
nullable
speedLat
number
nullable
speedDist
number
nullable
isRetrograde
boolean
nullable
declination
number
nullable
rightAscension
number
nullable
houses
object
system
string
nullable
cusps
Array<number>
nullable
ascendant
number
nullable
mc
number
nullable
armc
number
nullable
vertex
number
nullable
equatorialAsc
number
nullable
coAscWK
number
nullable
coAscMunkasey
number
nullable
polarAsc
number
nullable
arc
number
nullable
key
string
nullable
Example
{
"ok": true,
"data": {
"planets": [
{
"id": 0,
"name": "Sun",
"longitude": 88.88433907245339,
"latitude": -0.000020054940759470553,
"distance": 1.0108955908980104,
"speedLong": 0.0026244022051665704,
"speedLat": 0.00003805311526169511,
"speedDist": 0.00022039347866615117,
"isRetrograde": false,
"declination": 18.867035147029778,
"rightAscension": 52.00919841916813
}
],
"houses": {
"system": "P",
"cusps": [
204.4762693189664
],
"ascendant": 204.4762693189664,
"mc": 111.58258128601301,
"armc": 75.95565327444125,
"vertex": 11.135477875348158,
"equatorialAsc": 164.74875654391414,
"coAscWK": 149.27468505332592,
"coAscMunkasey": 168.73706704232438,
"polarAsc": 329.2746850533259
},
"arc": 34.50831927078158,
"key": "solar_arc"
}
}

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