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

Transits

Two endpoints for transit work:

EndpointCreditsWhat it does
POST /v1/transits50Transit chart for a specific date, overlaid on natal location
POST /v1/transit-calendar100Calendar of transit events over a date range

If you want to see the finished result first: transits in the AstroWay app run the same computation and draw the overlay on a wheel.

Calculates planet positions on a given transit date in the natal location’s coordinates.

All natal chart parameters (date, time, timezoneOffset, latitude, longitude, houseSystem) plus:

ParameterTypeRequiredDescription
transitDatestringYesTransit date YYYY-MM-DD
transitTimestringNo (12:00:00)Transit time HH:mm:ss
transitTzOffsetnumberNo (0)Transit timezone offset
Terminal window
curl -X POST https://api.astroway.info/v1/transits \
-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,
"transitDate": "2026-04-14",
"transitTime": "12:00:00",
"transitTzOffset": 3
}'

Same structure as /v1/chart - full chart with planets, houses, aspects - but calculated for the transit date.


Scans a date range and returns a list of transit events: exact aspects of transit planets to natal planets, ingresses, retrogrades.

ParameterTypeRequiredDescription
startDatestringYesRange start YYYY-MM-DD
endDatestringYesRange end YYYY-MM-DD
Terminal window
curl -X POST https://api.astroway.info/v1/transit-calendar \
-H "X-Api-Key: aw_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"natal": {
"date": "1990-07-14",
"time": "14:30:00",
"timezoneOffset": 3,
"latitude": 50.4501,
"longitude": 30.5234
},
"startDate": "2026-04-01",
"endDate": "2026-04-30"
}'
{
"startDate": "2026-04-01",
"endDate": "2026-04-30",
"maxOrb": 1,
"count": 42,
"events": [
{
"jd": 2461132.97998,
"date": "2026-04-02T11:31:10.000Z",
"transitPlanetId": 2,
"natalPlanetId": 9,
"aspect": { "name": "Trine", "i18nKey": "aspect_trine", "angle": 120, "orb": 12, "symbol": "", "isMajor": true, "color": "#3366cc" },
"transitLongitude": 345.005969,
"natalLongitude": 225.005747,
"isRetrograde": false
}
]
}
EndpointCreditsWhat it adds
/v1/forecast-calendar100Annual forecast - 365-day heatmap
/v1/progressions50Secondary progressions
/v1/solar-return50Solar return (annual chart)
/v1/aspect-timeline100Aspect timeline over range
Was this helpful?
Suggest an edit

Last updated: