Skip to content
AstroWay/api v2.19.0 · docs
all systems operational
UA EN

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": {
"date": "1990-07-14",
"time": "14:30:00",
"timezoneOffset": 3,
"latitude": 50.4501,
"longitude": 30.5234,
"houseSystem": "P"
},
"julianDay": 2448087.979166,
"siderealTime": 8.234,
"planets": [
{
"name": "Sun",
"longitude": 111.87,
"latitude": 0.0,
"speed": 0.955,
"sign": "cancer",
"signIndex": 3,
"house": 10,
"retrograde": false
},
{
"name": "Moon",
"longitude": 87.23,
"latitude": -4.2,
"speed": 13.3,
"sign": "gemini",
"signIndex": 2,
"house": 8,
"retrograde": false
}
],
"houses": {
"system": "P",
"cusps": [12.34, 43.21, 72.56, 100.12, 130.45, 162.78, 192.34, 223.21, 252.56, 280.12, 310.45, 342.78],
"ascendant": 12.34,
"mc": 280.12
},
"aspects": [
{
"planet1": "Sun",
"planet2": "Moon",
"type": "sextile",
"orb": 1.36,
"applying": 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: 01HXY2A7ZM...
Was this helpful?
Suggest an edit

Last updated: