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

Human Design Chart

POST
/human-design
request.sh
curl -X POST https://api.astroway.info/v1/human-design \
-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 }'

Calculate a full Human Design BodyGraph chart: type, strategy, authority, profile, definition, incarnation cross, centers, channels, and gate activations. Centre identifiers are PascalCase with no separator and are stable: Head, Ajna, Throat, G, Heart, SolarPlexus, Spleen, Sacral, Root. channels[].centerA and centerB use the same nine. These identifiers are English and have no localised twin yet, unlike the sign and planet names on /public/moon-phase.

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
key additional
nullable
Example
{
"date": "1990-05-15",
"time": "14:30:00",
"timezoneOffset": 3,
"latitude": 50.45,
"longitude": 30.52
}

Successful calculation

Media type application/json
object
ok
boolean
data
object
input
object
name
string
nullable
date
string
nullable
time
string
nullable
timezoneOffset
number
nullable
latitude
number
nullable
longitude
number
nullable
houseSystem
string
nullable
city
string
nullable
cosmogram
boolean
nullable
type
string
nullable
strategy
string
nullable
notSelfTheme
string
nullable
authority
string
nullable
profile
object
profile
string
nullable
personalityLine
number
nullable
designLine
number
nullable
geometry
string
nullable
definition
string
nullable
cross
object
name
string
nullable
type
string
nullable
gates
Array<number>
nullable
activations
Array<object>
nullable
object
planet
string
nullable
planetId
number
nullable
gate
number
nullable
line
number
nullable
color
number
nullable
tone
number
nullable
base
number
nullable
longitude
number
nullable
isPersonality
boolean
nullable
personalityActivations
Array<object>
nullable
object
planet
string
nullable
planetId
number
nullable
gate
number
nullable
line
number
nullable
color
number
nullable
tone
number
nullable
base
number
nullable
longitude
number
nullable
isPersonality
boolean
nullable
designActivations
Array<object>
nullable
object
planet
string
nullable
planetId
number
nullable
gate
number
nullable
line
number
nullable
color
number
nullable
tone
number
nullable
base
number
nullable
longitude
number
nullable
isPersonality
boolean
nullable
centers
Array<object>
nullable
object
name
string
nullable
defined
boolean
nullable
open
boolean
nullable
gates
Array<number>
nullable
activeGates
Array<number>
nullable
channels
Array<object>
nullable
object
gate1
number
nullable
gate2
number
nullable
centerA
string
nullable
centerB
string
nullable
activatedBy
Array<string>
nullable
designJd
number
nullable
personalityJd
number
nullable
Example
{
"ok": true,
"data": {
"input": {
"name": "",
"date": "1990-05-15",
"time": "14:30:00",
"timezoneOffset": 3,
"latitude": 50.45,
"longitude": 30.52,
"houseSystem": "P",
"city": "",
"cosmogram": false
},
"type": "Projector",
"strategy": "Wait for the Invitation",
"notSelfTheme": "Bitterness",
"authority": "Emotional (Solar Plexus)",
"profile": {
"profile": "6/3",
"personalityLine": 6,
"designLine": 3,
"geometry": "Left Angle"
},
"definition": "Split",
"cross": {
"name": "Left Angle Cross of Dedication",
"type": "LAC",
"gates": [
23
]
},
"activations": [
{
"planet": "Sun",
"planetId": 0,
"gate": 23,
"line": 6,
"color": 6,
"tone": 2,
"base": 2,
"longitude": 54.37601980167181,
"isPersonality": true
}
],
"personalityActivations": [
{
"planet": "Sun",
"planetId": 0,
"gate": 23,
"line": 6,
"color": 6,
"tone": 2,
"base": 2,
"longitude": 54.37601980167181,
"isPersonality": true
}
],
"designActivations": [
{
"planet": "Sun",
"planetId": 0,
"gate": 30,
"line": 3,
"color": 1,
"tone": 1,
"base": 1,
"longitude": 326.37601741834976,
"isPersonality": false
}
],
"centers": [
{
"name": "Head",
"defined": true,
"open": false,
"gates": [
61
],
"activeGates": [
61
]
}
],
"channels": [
{
"gate1": 13,
"gate2": 33,
"centerA": "G",
"centerB": "Throat",
"activatedBy": [
"personality"
]
}
],
"designJd": 2447937.835688273,
"personalityJd": 2448026.9791666665
}
}

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