Symbolic Directions
POST
/symbolic-directions
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 }'const res = await fetch('https://api.astroway.info/v1/symbolic-directions', { method: 'POST', headers: { 'X-Api-Key': process.env.ASTROWAY_API_KEY, 'Content-Type': 'application/json', }, body: JSON.stringify({ "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 }),});const { ok, data, error } = await res.json();if (!ok) throw new Error(error.message);console.log(data);import os, requests
r = requests.post( 'https://api.astroway.info/v1/symbolic-directions', headers={'X-Api-Key': os.environ['ASTROWAY_API_KEY'], 'Content-Type': 'application/json'}, json={ '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 },)result = r.json()if not result['ok']: raise RuntimeError(result['error']['message'])print(result['data'])<?phpuse GuzzleHttp\Client;
$client = new Client(['base_uri' => 'https://api.astroway.info/v1/']);$r = $client->post('symbolic-directions', [ 'headers' => ['X-Api-Key' => getenv('ASTROWAY_API_KEY')], 'json' => [ '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, ],]);$result = json_decode($r->getBody(), true);if (!$result['ok']) throw new \RuntimeException($result['error']['message']);print_r($result['data']);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).
Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ” 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
time required
string
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
latitude required
number
longitude required
number
houseSystem
string
name
string
city
string
zodiacType
string
ayanamsaId
number
ayanamsa
Sidereal school by name. Lahiri when omitted. Equivalent to ayanamsaId; send either.
string
cosmogram
boolean
targetDate required
string
targetTime
string
targetTzOffset
number
converse
boolean
key
string
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}Responses
Section titled “ Responses ”Successful calculation
Media type application/json
object
ok
boolean
data
object
planets
Array<object>
object
id
number
name
string
longitude
number
latitude
number
distance
number
speedLong
number
speedLat
number
speedDist
number
isRetrograde
boolean
declination
number
rightAscension
number
houses
object
system
string
cusps
Array<number>
ascendant
number
mc
number
armc
number
vertex
number
equatorialAsc
number
coAscWK
number
coAscMunkasey
number
polarAsc
number
arc
number
key
string
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" }} Корисно?
Дякуємо за фідбек.