astroAPI

← Zurück zur Übersicht

POST /v1/mercury-return API-Key noetig Berechnung

Mercury-Return — Convenience-Alias fuer /v1/returns mit planet=mercury.

Beschreibung

Identisch zu /v1/returns, der Transitplanet ist auf Merkur fixiert. Fuer Merkur typischerweise 3 Returns pro Jahr (direkt → retrograd → direkt). Body, Validierung und Antwort identisch zum generischen Endpunkt — siehe /v1/returns fuer das vollstaendige Schema.

Parameter

NameInTypPflichtBeschreibung
natal body object nein Wie /v1/returns — Geburtsdaten oder natal_positions.
from body string nein Suchstart (ISO 8601 UTC). Default: jetzt.
count body integer nein Anzahl Returns. Default 1, Maximum 50.
location body object nein
include body array nein
house_system body string nein

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 '{
    "natal": {
        "datetime": "1980-05-17T14:32:00",
        "timezone": "Europe/Berlin",
        "location": {
            "latitude": 52.52,
            "longitude": 13.405
        }
    },
    "count": 3
}' \
  "https://astroapi.services/v1/mercury-return"