Transit periods
GET/api/transits/periodsPro
Returns gate entry and exit events for all planets at minute precision. Uses hourly scanning with binary search refinement to find exact transition times.
Request
Parameters
Response
| Field | Description |
|---|---|
planet | Planet name (one of the 13 HD planets) |
gate | HD gate number (1–64) |
line | Line number (1–6) |
entered_at | ISO timestamp when planet entered this gate (minute precision) |
exited_at | ISO timestamp when planet exited, or null if still in gate at range end |
duration_hours | Duration in hours |
zodiac_sign | Zodiac sign at entry |
retrograde_at_entry | Whether the planet was retrograde when entering the gate |
Computation
Transit periods are computed in two phases: an hourly scan detects gate changes, then binary search narrows each transition to minute precision. This provides exact transition times without minute-by-minute polling.
Chart requests
Costs 1 Chart request per call (flat rate, not granularity-based). Maximum range: 366 days.