API pour l'éducation astrologique & LMS
Thèmes natals, rectification, aspects avec une couche méta complète. L'outil sur lequel s'appuient les cours d'astrologie académique.
Problème
L'éducation en astrologie repose soit sur Solar Fire (desktop, licence, copier-coller manuel), soit sur des outils web obsolètes. Une plateforme LMS moderne a besoin d'une API offrant la précision des logiciels pros et exportant du JSON pour le côté étudiant.
Comment AstroWay résout
AstroWay utilise le même moteur (Swiss Ephemeris) que Solar Fire — précision sous-seconde d'arc. Rectification par la méthode Trutine, tous les aspects avec coefficients pondérés, arbre de dispositions complet. Un seul JSON — tout ce dont tu as besoin pour un quiz ou une interprétation.
Quels endpoints
- POST /v1/chart — thème natal avec maisons + aspects
- POST /v1/rectification — méthode Trutine
- POST /v1/aspects — liste + orbes + appliquant/séparant
- POST /v1/dispositors — dispositions
Démarrage TypeScript
// 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(); Construire une fonctionnalité pour plateformes éducatives en astrologie
Génère une clé API, appelle n'importe quel endpoint de la liste en 5 minutes. 10 000 crédits gratuits.