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

A*C*G Line Report

POST
/acg/line-report
request.sh
curl -X POST https://api.astroway.info/v1/acg/line-report \
-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, "planet": "Venus", "angle": "DSC", "language": "uk" }'

One line in full: its geometry, every life area it touches with weight and polarity, and the interpretation text for that planet-and-angle pair. Rising and setting curves arrive as several disjoint segments; all of them are returned.

Media type application/json

Birth data for a single natal chart. Required: date (YYYY-MM-DD), time (HH:mm:ss), latitude and longitude in decimal degrees. The short forms lat, lon, lng and tz are rejected with 400 INVALID_FIELD; pass the full names. timezoneOffset is hours from UTC and defaults to 0, meaning UTC. city is a display label only: nothing here geocodes it, so it never stands in for coordinates.

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
planet required
string
>= 2 characters
angle required
string
Allowed values: MC IC ASC DSC
includeCoordinates
boolean
default: true
language
string
Allowed values: uk en de pl es pt fr it nl cs ro hu el tr ar hi ja ko vi id ru
Example
{
"date": "1990-05-15",
"time": "14:30:00",
"timezoneOffset": 3,
"latitude": 50.45,
"longitude": 30.52,
"planet": "Venus",
"angle": "DSC",
"language": "uk"
}

Successful calculation

Media type application/json
object
ok
boolean
data
object
line
object
planet
string
nullable
planetId
number
nullable
type
string
nullable
segmentCount
number
nullable
pointCount
number
nullable
segments
Array<Array<Array<number>>>
nullable
language
string
nullable
requestedLanguage
string
nullable
categories
Array<object>
nullable
object
id
string
nullable
name
string
nullable
weight
number
nullable
polarity
string
nullable
interpretation
object
title
string
nullable
text
string
nullable
lang
string
nullable
Example
{
"ok": true,
"data": {
"line": {
"planet": "Venus",
"planetId": 3,
"type": "DSC",
"segmentCount": 1,
"pointCount": 171,
"segments": [
[
[
-84.97850360981103
]
]
]
},
"language": "uk",
"requestedLanguage": "uk",
"categories": [
{
"id": "love",
"name": "Кохання",
"weight": 3,
"polarity": "supportive"
}
],
"interpretation": {
"title": "Венера - DSC",
"text": "Зростання привабливості, чарівності, популярності. Удачливість. Максимальна ймовірність знайти кохання, партнера, вирішити проблеми взаємин. Партнерство, інтенсивне особисте життя, більше спілкування та взаємодії, більше вечірок і цікавих зустрічей. Гармонія та співпраця заради досягнення спільних цілей. Вдале вирішення юридичних і фінансових питань. Вкладення грошей у спільні проєкти. Вдале залагодження спірних питань, популярність, здатність встановлювати особисті контакти. Багато спокус. Хороші можливості в реалізації творчих планів, визнання ваших талантів, здібностей. Сприятливо для діяльності, пов'язаної з мистецтвом, красою, естетикою.",
"lang": "uk"
}
}
}

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