astroAPI

← Zurück zur Übersicht

POST /v1/radix API-Key noetig Berechnung

Kompletter Radix: Planeten + Haeuser + Aspekte in einer Antwort.

Beschreibung

Der zentrale Radix-Endpunkt. Nimmt Geburtsdaten und Ort entgegen und liefert per "include"-Parameter steuerbar Planetenpositionen, Haeusersystem und Aspekte. Default: alle drei.

Parameter

NameInTypPflichtBeschreibung
birth.datetime body string ja ISO 8601, z.B. "1980-05-17T14:32:00".
birth.timezone body string nein IANA-Zone. Pflicht, wenn datetime keinen Offset enthaelt.
birth.location.latitude body number ja Dezimalgrad.
birth.location.longitude body number ja Dezimalgrad.
options.house_system body string nein Default "koch". Alle Werte siehe Doku "Haeusersysteme".
options.include body array nein Teilmenge von ["planets","houses","aspects"]. Default alle drei.
options.aspects.orbs body mixed nein Orben-Konfiguration wie bei /v1/aspects.
options.aspects.aspect_types body array nein Welche Kategorien.
options.aspects.include_axes body boolean nein AC und MC als Aspekt-Punkte? Default true.

Beispiel-Aufruf

Variante: Direkter HTTP-Aufruf, keine Abhaengigkeit.
curl -sS \
  -H "X-API-Key: ak_test_<DEIN_KEY>" \
  -H "Content-Type: application/json" \
  -X POST \
  -d '{
    "birth": {
        "datetime": "1980-05-17T14:32:00",
        "timezone": "Europe/Berlin",
        "location": {
            "latitude": 52.52,
            "longitude": 13.405
        }
    },
    "options": {
        "house_system": "koch",
        "aspects": {
            "orbs": "classic",
            "aspect_types": [
                "major"
            ]
        }
    }
}' \
  "https://astroapi.services/v1/radix"