// industry · Astrology education platforms
API for astrology education & LMS
Natal charts, rectification, aspects with full meta layer. The tool that academic astrology courses are built on.
🎯
sub-arcsecond
🔬
174 CI snapshots
📚
5 traditions
💰
20 credits/chart
// 01 / problem
The problem
Astro education is either Solar Fire (desktop, license, manual copy-paste) or legacy web tools. A modern LMS platform needs an API that matches pro-software accuracy and exports JSON for the student side.
// 02 / solution
How AstroWay solves it
AstroWay uses the same engine (Swiss Ephemeris) as Solar Fire — sub-arcsecond accuracy. Rectification via the Trutine method, all aspects with weighted coefficients, full disposition tree. One JSON — everything you need for a quiz or an interpretation.
// 03 / endpoints
Endpoints used
- POST /v1/chart — natal with houses + aspects
- POST /v1/rectification — Trutine method
- POST /v1/aspects — list + orbs + applying/separating
- POST /v1/dispositors — dispositions
// 04 / code sample
TypeScript starter
// Power student-facing rectification tool (TS SDK in roadmap)
const r = await fetch('https://api.astroway.info/v1/rectification/trutine', {
method: 'POST',
headers: { 'X-Api-Key': process.env.AW_KEY!, 'Content-Type': 'application/json' },
body: JSON.stringify({
approxDate: '1991-08-24',
events: [{ when: '2018-06-15', kind: 'marriage' }, { when: '2021-03-02', kind: 'job' }],
}),
});
const { data: rectified } = await r.json(); Build a astrology education platforms feature
Generate an API key, hit any of the listed endpoints in 5 minutes. 10,000 credits free.