Primary Directions
POST
/primary-directions
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 ] }'const res = await fetch('https://api.astroway.info/v1/primary-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, "key": 0.9856353, "maxAge": 80, "aspectAngles": [ 0, 60, 90, 120, 180 ] }),});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/primary-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, 'key': 0.9856353, 'maxAge': 80, 'aspectAngles': [ 0, 60, 90, 120, 180 ] },)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('primary-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, 'key' => 0.9856353, 'maxAge' => 80, 'aspectAngles' => [0, 60, 90, 120, 180], ],]);$result = json_decode($r->getBody(), true);if (!$result['ok']) throw new \RuntimeException($result['error']['message']);print_r($result['data']);Calculate primary directions (Ptolemaic or Regiomontanus) up to a maximum age. Returns a timeline of directed aspect hits.
Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ” 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
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
key
number
maxAge
integer
aspectAngles
Array<number>
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 ]}Responses
Section titled “ Responses ”Successful calculation
Media type application/json
object
ok
boolean
data
object
directions
Array<object>
object
promissor
string
promissorId
number
significator
string
significatorId
number
aspectAngle
number
arc
number
ageYears
number
isDirect
boolean
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" }} Корисно?
Дякуємо за фідбек.