Skip to content
AstroWay/api v2.201.7 · docs
all systems operational

Natal Chart

The POST /v1/chart endpoint is the foundation of most requests. It returns a full natal chart: planet positions, house cusps, aspects between planets, chart sect. Cost: 20 credits (Tier 2).

ParameterTypeRequiredDescription
datestringYesBirth date YYYY-MM-DD
timestringYesBirth time HH:mm:ss
timezoneOffsetnumberYesUTC offset in hours (e.g. 2 for Kyiv in summer)
latitudenumberNo (0)Latitude in decimal degrees
longitudenumberNo (0)Longitude in decimal degrees
houseSystemstringNo (P)House system: P Placidus, K Koch, W Whole Sign, E Equal and others
namestringNoName (echoed in response)
citystringNoCity (echoed in response)
zodiacTypestringNotropical (default) or sidereal
cosmogrambooleanNotrue - no houses (when location unknown)

Natal chart for Kyiv, July 14, 1990, 14:30:

Terminal window
curl -X POST https://api.astroway.info/v1/chart \
-H "X-Api-Key: aw_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"date": "1990-07-14",
"time": "14:30:00",
"timezoneOffset": 3,
"latitude": 50.4501,
"longitude": 30.5234,
"houseSystem": "P"
}'
{
"input": {
"name": "",
"date": "1990-07-14",
"time": "14:30:00",
"timezoneOffset": 3,
"latitude": 50.4501,
"longitude": 30.5234,
"houseSystem": "P",
"city": "",
"cosmogram": false
},
"julianDay": 2448086.979167,
"siderealTime": 6.971672,
"planets": [
{
"id": 0,
"name": "Sun",
"longitude": 111.77244,
"latitude": 0.000162,
"distance": 1.016462,
"speedLong": 0.953753,
"isRetrograde": false,
"declination": 21.681363
},
{
"id": 1,
"name": "Moon",
"longitude": 9.061363,
"latitude": 4.639701,
"distance": 0.002511,
"speedLong": 13.770219,
"isRetrograde": false,
"declination": 7.854711
}
],
"houses": {
"system": "P",
"cusps": [
212.0953,
239.7536,
274.2018,
312.6334,
346.2069,
12.1755,
32.0953,
59.7536,
94.2018,
132.6334,
166.2069,
192.1755
],
"ascendant": 212.0953,
"mc": 132.6334
},
"aspects": [
{
"planet1": "Sun",
"planet2": "Jupiter",
"type": {
"name": "Conjunction",
"angle": 0,
"isMajor": true
},
"orb": 0.548,
"isApplying": true
}
],
"chartSect": "diurnal"
}
CodeSystemNotes
PPlacidusDefault, most popular
KKochPopular in Germany
WWhole SignClassical Hellenistic
EEqualEqual from ASC
RRegiomontanusHorary astrology
CCampanusSpatial system
TTopocentricPolich-Page
BAlcabitiusMedieval tradition

Full list of 15 systems - in API reference.

If birth time is known but location isn’t, pass "cosmogram": true. Houses and ASC/MC are not calculated, cost is the same (20 credits).

X-Credits-Used: 20
X-Credits-Remaining: 4980
X-Credits-Reset: 2026-05-01T00:00:00Z
X-Request-Id: 8aec43e9bc749b37e998a489bbad1757
Was this helpful?
Suggest an edit

Last updated: