Zum Inhalt

Gesundheits-Horoskop für gestern

Der Gesundheits-Horoskop für gestern-Endpunkt bietet Einblicke in Ihr körperliches, geistiges und emotionales Wohlbefinden für den vorherigen Tag. Er hilft Benutzern, über Selbstpflege, Ernährung, Bewegung und emotionale Balance nachzudenken.


Sprache: Nur Englisch (derzeit)

Sprachunterstützung: Dieser /api/v1/horoscope/reports/*-basierte Endpunkt unterstützt derzeit nur Englisch (lang=en).

Endpunkt

Methode Pfad
POST https://api.numerologyapi.com/api/v1/horoscope/reports/health/yesterday

Anforderungs-Body

Name Erforderlich Typ Beispiel Beschreibung
dob Ja string 1992-07-16 Date of birth (YYYY-MM-DD). Pattern: ^\d{4}-\d{2}-\d{2}$
timezone Nein string America/New_York IANA timezone used to resolve period anchors accurately. Default: UTC
include_snapshot Nein boolean (optional) - Optionaler Schalter für den kompakten Modus. Setzen Sie auf false, um den Snapshot-Block aus dem Antwort-Payload zu entfernen.
include_positions Nein boolean (optional) - Optionaler Schalter für den kompakten Modus. Setzen Sie auf false, um die Positions-Arrays aus dem Antwort-Payload zu entfernen.
zodiac_system Nein string (optional) tropical Zodiac computation mode. Allowed: sidereal, tropical
ayanamsa Nein string (optional) lahiri Sidereal ayanamsa system (used when sidereal mode is selected). Allowed: lahiri, fagan_bradley, krishnamurti, raman, yukteswar
house_system Nein string (optional) placidus House calculation system. Allowed: placidus, whole_sign, equal, koch
node_type Nein string (optional) true Lunar node mode. Allowed: true, mean
tenant_id Nein string (optional) docs-smoke Optionaler Override für Tenant/Cache-Namespace.
birth_time Nein string (optional) 13:45 Birth time (HH:MM, 24h). Pattern: ^\d{2}:\d{2}$
birth_latitude Nein Zahl (optional) 40.7128 Birth latitude. Provide with Geburtslängengrad.
birth_longitude Nein Zahl (optional) -74.0060 Birth longitude. Provide with Geburtsbreitengrad.
birth_timezone Nein Zeichenkette (optional) America/New_York Zeitverschiebung für die Geburtszeit (IANA).

Beispiel für den personalisierten Modus (Empfohlen)

Der personalisierte Modus aktiviert zusätzliche deterministische Swiss Ephemeris-Vektoren (z. B. Häuser, Zeitvektoren und optionale astrologische Schichten). Das bedeutet, dass zwei Benutzer mit demselben Sternzeichen dennoch unterschiedliche Report-Editorial erhalten können, wenn die Geburtsdaten unterschiedlich sind.

curl --request POST \
  --url "https://api.numerologyapi.com/api/v1/horoscope/reports/health/yesterday?lang=en" \
  --header "X-API-Key: YOUR_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
  "dob": "1992-07-16",
  "timezone": "America/New_York",
  "zodiac_system": "tropical",
  "ayanamsa": "lahiri",
  "house_system": "placidus",
  "node_type": "true",
  "tenant_id": "docs-smoke",
  "birth_time": "13:45",
  "birth_latitude": 40.7128,
  "birth_longitude": -74.006,
  "birth_timezone": "America/New_York"
}'

Beispiel für den öffentlichen Modus (Allgemein, basierend auf dem Sternzeichen)

Der öffentliche Modus ist für die Produktion geeignet und wird mit nicht-personalisierten Schichten berechnet. Er basiert auf dem Sternzeichen, sodass Benutzer mit demselben Sternzeichen für die gleiche Periode die gleiche Kernausgabe erhalten. Verwenden Sie diesen Modus, wenn Sie eine stabile Ausgabe auf Sternzeichenebene ohne Unterschiede in den Geburtsvektoren pro Benutzer wünschen.

curl --request POST \
  --url "https://api.numerologyapi.com/api/v1/horoscope/reports/health/yesterday?lang=en" \
  --header "X-API-Key: YOUR_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
  "dob": "1992-07-16",
  "timezone": "America/New_York"
}'

Beispiel für eine Antwort

{
  "report_type": "horoscope",
  "sign": "CANCER",
  "period": "daily",
  "start": "2026-04-06T00:00:00",
  "end": "2026-04-07T00:00:00",
  "data": {
    "period": "daily",
    "start": "2026-04-06T00:00:00",
    "end": "2026-04-07T00:00:00",
    "snapshot": {
      "timestamp": "2026-04-06T12:00:00",
      "zodiac_system": "tropical",
      "ayanamsa": "Lahiri",
      "ayanamsa_value": 24.223957,
      "ayanamsa_system": "lahiri",
      "sun_sign": "ARIES",
      "moon_sign": "SAGITTARIUS",
      "rising_sign": "VIRGO",
      "house_system": "P",
      "house_cusps": [
        161.6924,
        186.013827,
        215.276659,
        248.620341,
        282.855058,
        314.297647,
        341.6924,
        6.013827,
        35.276659,
        68.620341,
        102.855058,
        134.297647
      ],
      "positions": [
        {
          "name": "Sun",
          "longitude": 16.695254281843585,
          "tropical_longitude": 16.695254281843585,
          "sidereal_longitude": 352.4696842613283,
          "latitude": -0.00018486859804063628,
          "speed": 0.9838592440067431,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 16.695254281843585,
          "house": 8,
          "retrograde": false,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "Moon",
          "longitude": 246.20634598560315,
          "tropical_longitude": 246.20634598560315,
          "sidereal_longitude": 221.9807759650879,
          "latitude": -5.159075906065195,
          "speed": 11.917766091088254,
          "sign": "SAGITTARIUS",
          "tropical_sign": "SAGITTARIUS",
          "sidereal_sign": "SCORPIO",
          "degree_in_sign": 6.20634598560315,
          "house": 3,
          "retrograde": false,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "Mercury",
          "longitude": 349.09116013015586,
          "tropical_longitude": 349.09116013015586,
          "sidereal_longitude": 324.86559010964066,
          "latitude": -2.0227941185015896,
          "speed": 1.1040688553531324,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "AQUARIUS",
          "degree_in_sign": 19.091160130155856,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "Venus",
          "longitude": 38.403521496285705,
          "tropical_longitude": 38.403521496285705,
          "sidereal_longitude": 14.177951475770499,
          "latitude": -0.2100747691954559,
          "speed": 1.2277873612128276,
          "sign": "TAURUS",
          "tropical_sign": "TAURUS",
          "sidereal_sign": "ARIES",
          "degree_in_sign": 8.403521496285705,
          "house": 9,
          "retrograde": false,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "Mars",
          "longitude": 357.41457661666834,
          "tropical_longitude": 357.41457661666834,
          "sidereal_longitude": 333.18900659615315,
          "latitude": -1.022830830154259,
          "speed": 0.7801295276068009,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 27.41457661666834,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "Jupiter",
          "longitude": 106.18208970974885,
          "tropical_longitude": 106.18208970974885,
          "sidereal_longitude": 81.95651968923363,
          "latitude": 0.37491548479233955,
          "speed": 0.08061285837290831,
          "sign": "CANCER",
          "tropical_sign": "CANCER",
          "sidereal_sign": "GEMINI",
          "degree_in_sign": 16.18208970974885,
          "house": 11,
          "retrograde": false,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "Saturn",
          "longitude": 6.229689516334033,
          "tropical_longitude": 6.229689516334033,
          "sidereal_longitude": 342.0041194958188,
          "latitude": -2.133051362883477,
          "speed": 0.12347938287797783,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 6.229689516334033,
          "house": 8,
          "retrograde": false,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "Uranus",
          "longitude": 59.00799569051915,
          "tropical_longitude": 59.00799569051915,
          "sidereal_longitude": 34.78242567000394,
          "latitude": -0.16951486082595787,
          "speed": 0.04638393426695234,
          "sign": "TAURUS",
          "tropical_sign": "TAURUS",
          "sidereal_sign": "TAURUS",
          "degree_in_sign": 29.007995690519152,
          "house": 9,
          "retrograde": false,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "Neptune",
          "longitude": 2.409033650067719,
          "tropical_longitude": 2.409033650067719,
          "sidereal_longitude": 338.1834636295525,
          "latitude": -1.3090544166206362,
          "speed": 0.03695581189067009,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 2.409033650067719,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "Pluto",
          "longitude": 305.2988199447644,
          "tropical_longitude": 305.2988199447644,
          "sidereal_longitude": 281.0732499242492,
          "latitude": -3.963709502554748,
          "speed": 0.013826434115081634,
          "sign": "AQUARIUS",
          "tropical_sign": "AQUARIUS",
          "sidereal_sign": "CAPRICORN",
          "degree_in_sign": 5.298819944764375,
          "house": 5,
          "retrograde": false,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "Chiron",
          "longitude": 26.031447089654094,
          "tropical_longitude": 26.031447089654094,
          "sidereal_longitude": 1.8058770691388786,
          "latitude": 0.3615106335198085,
          "speed": 0.059486081878264464,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "ARIES",
          "degree_in_sign": 26.031447089654094,
          "house": 8,
          "retrograde": false,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "Ceres",
          "longitude": 38.658149091606624,
          "tropical_longitude": 38.658149091606624,
          "sidereal_longitude": 14.432579071091418,
          "latitude": -4.550613607026484,
          "speed": 0.3967735813924988,
          "sign": "TAURUS",
          "tropical_sign": "TAURUS",
          "sidereal_sign": "ARIES",
          "degree_in_sign": 8.658149091606624,
          "house": 9,
          "retrograde": false,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "North Node",
          "longitude": 338.2610428791939,
          "tropical_longitude": 338.2610428791939,
          "sidereal_longitude": 314.03547285867865,
          "latitude": -0.0,
          "speed": -0.09665162257722339,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "AQUARIUS",
          "degree_in_sign": 8.261042879193894,
          "house": 6,
          "retrograde": true,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "South Node",
          "longitude": 158.26104287919384,
          "tropical_longitude": 158.26104287919384,
          "sidereal_longitude": 134.03547285867865,
          "latitude": -0.0,
          "speed": -0.09665162257722339,
          "sign": "VIRGO",
          "tropical_sign": "VIRGO",
          "sidereal_sign": "LEO",
          "degree_in_sign": 8.261042879193838,
          "house": 12,
          "retrograde": true,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "Lilith",
          "longitude": 251.95622167634042,
          "tropical_longitude": 251.95622167634042,
          "sidereal_longitude": 227.7306516558252,
          "latitude": -5.12712820835031,
          "speed": 0.11202064540414153,
          "sign": "SAGITTARIUS",
          "tropical_sign": "SAGITTARIUS",
          "sidereal_sign": "SCORPIO",
          "degree_in_sign": 11.95622167634042,
          "house": 4,
          "retrograde": false,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "Pallas",
          "longitude": 353.65502172259676,
          "tropical_longitude": 353.65502172259676,
          "sidereal_longitude": 329.42945170208156,
          "latitude": 3.633599449031079,
          "speed": 0.3277147102038955,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "AQUARIUS",
          "degree_in_sign": 23.655021722596757,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "Juno",
          "longitude": 302.16473839162774,
          "tropical_longitude": 302.16473839162774,
          "sidereal_longitude": 277.93916837111254,
          "latitude": 11.567474045954965,
          "speed": 0.25636851686956236,
          "sign": "AQUARIUS",
          "tropical_sign": "AQUARIUS",
          "sidereal_sign": "CAPRICORN",
          "degree_in_sign": 2.1647383916277363,
          "house": 5,
          "retrograde": false,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "Vesta",
          "longitude": 343.0668050763758,
          "tropical_longitude": 343.0668050763758,
          "sidereal_longitude": 318.8412350558606,
          "latitude": -3.7896259298861326,
          "speed": 0.4785595343264754,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "AQUARIUS",
          "degree_in_sign": 13.066805076375772,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.223956738607626
        },
        {
          "name": "Eris",
          "longitude": 25.1792745145396,
          "tropical_longitude": 25.1792745145396,
          "sidereal_longitude": 0.9537044940243795,
          "latitude": -10.395488413842067,
          "speed": 0.01081078682790229,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "ARIES",
          "degree_in_sign": 25.1792745145396,
          "house": 8,
          "retrograde": false,
          "ayanamsa_value": 24.223956738607626
        }
      ],
      "aspects": [
        {
          "body1": "Sun",
          "body2": "Mercury",
          "aspect": "semi-sextile",
          "orb": 2.4,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Sun",
          "body2": "Jupiter",
          "aspect": "square",
          "orb": 0.51,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Sun",
          "body2": "Uranus",
          "aspect": "semi-square",
          "orb": 2.69,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Sun",
          "body2": "Lilith",
          "aspect": "trine",
          "orb": 4.74,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Venus",
          "aspect": "quincunx",
          "orb": 2.2,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Saturn",
          "aspect": "trine",
          "orb": 0.02,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Uranus",
          "aspect": "opposition",
          "orb": 7.2,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Neptune",
          "aspect": "trine",
          "orb": 3.8,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Pluto",
          "aspect": "sextile",
          "orb": 0.91,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Ceres",
          "aspect": "quincunx",
          "orb": 2.45,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "North Node",
          "aspect": "square",
          "orb": 2.05,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "South Node",
          "aspect": "square",
          "orb": 2.05,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Lilith",
          "aspect": "conjunction",
          "orb": 5.75,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Juno",
          "aspect": "sextile",
          "orb": 4.04,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Vesta",
          "aspect": "square",
          "orb": 6.86,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Jupiter",
          "aspect": "trine",
          "orb": 2.91,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Pluto",
          "aspect": "semi-square",
          "orb": 1.21,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Lilith",
          "aspect": "square",
          "orb": 7.13,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Pallas",
          "aspect": "conjunction",
          "orb": 4.56,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Juno",
          "aspect": "semi-square",
          "orb": 1.93,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Vesta",
          "aspect": "conjunction",
          "orb": 6.02,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Saturn",
          "aspect": "semi-sextile",
          "orb": 2.17,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Pluto",
          "aspect": "square",
          "orb": 3.1,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Ceres",
          "aspect": "conjunction",
          "orb": 0.25,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "North Node",
          "aspect": "sextile",
          "orb": 0.14,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "South Node",
          "aspect": "trine",
          "orb": 0.14,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Pallas",
          "aspect": "semi-square",
          "orb": 0.25,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Juno",
          "aspect": "square",
          "orb": 6.24,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Vesta",
          "aspect": "sextile",
          "orb": 4.66,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Uranus",
          "aspect": "sextile",
          "orb": 1.59,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Neptune",
          "aspect": "conjunction",
          "orb": 4.99,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Chiron",
          "aspect": "semi-sextile",
          "orb": 1.38,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Pallas",
          "aspect": "conjunction",
          "orb": 3.76,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Juno",
          "aspect": "sextile",
          "orb": 4.75,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Eris",
          "aspect": "semi-sextile",
          "orb": 2.24,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Jupiter",
          "body2": "Uranus",
          "aspect": "semi-square",
          "orb": 2.17,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Jupiter",
          "body2": "North Node",
          "aspect": "trine",
          "orb": 7.92,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Jupiter",
          "body2": "Pallas",
          "aspect": "trine",
          "orb": 7.47,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Jupiter",
          "body2": "Vesta",
          "aspect": "trine",
          "orb": 3.12,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Neptune",
          "aspect": "conjunction",
          "orb": 3.82,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Pluto",
          "aspect": "sextile",
          "orb": 0.93,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Ceres",
          "aspect": "semi-sextile",
          "orb": 2.43,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "North Node",
          "aspect": "semi-sextile",
          "orb": 2.03,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "South Node",
          "aspect": "quincunx",
          "orb": 2.03,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Lilith",
          "aspect": "trine",
          "orb": 5.73,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Juno",
          "aspect": "sextile",
          "orb": 4.06,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Neptune",
          "aspect": "sextile",
          "orb": 3.4,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Pluto",
          "aspect": "trine",
          "orb": 6.29,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Chiron",
          "aspect": "semi-sextile",
          "orb": 2.98,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Pallas",
          "aspect": "sextile",
          "orb": 5.35,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Juno",
          "aspect": "trine",
          "orb": 3.16,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Neptune",
          "body2": "Pluto",
          "aspect": "sextile",
          "orb": 2.89,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Neptune",
          "body2": "Juno",
          "aspect": "sextile",
          "orb": 0.24,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Pluto",
          "body2": "Ceres",
          "aspect": "square",
          "orb": 3.36,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Pluto",
          "body2": "North Node",
          "aspect": "semi-sextile",
          "orb": 2.96,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Pluto",
          "body2": "South Node",
          "aspect": "quincunx",
          "orb": 2.96,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Pluto",
          "body2": "Juno",
          "aspect": "conjunction",
          "orb": 3.13,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "North Node",
          "aspect": "semi-square",
          "orb": 2.77,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "South Node",
          "aspect": "sesquiquadrate",
          "orb": 2.77,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Lilith",
          "aspect": "sesquiquadrate",
          "orb": 0.92,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Pallas",
          "aspect": "semi-sextile",
          "orb": 2.38,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Juno",
          "aspect": "square",
          "orb": 6.13,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Vesta",
          "aspect": "semi-square",
          "orb": 2.04,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Eris",
          "aspect": "conjunction",
          "orb": 0.85,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "North Node",
          "aspect": "sextile",
          "orb": 0.4,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "South Node",
          "aspect": "trine",
          "orb": 0.4,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "Pallas",
          "aspect": "semi-square",
          "orb": 0.0,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "Juno",
          "aspect": "square",
          "orb": 6.49,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "Vesta",
          "aspect": "sextile",
          "orb": 4.41,
          "exact": false,
          "applying": false
        },
        {
          "body1": "North Node",
          "body2": "South Node",
          "aspect": "opposition",
          "orb": 0.0,
          "exact": true,
          "applying": false
        },
        {
          "body1": "North Node",
          "body2": "Lilith",
          "aspect": "square",
          "orb": 3.7,
          "exact": false,
          "applying": false
        },
        {
          "body1": "North Node",
          "body2": "Vesta",
          "aspect": "conjunction",
          "orb": 4.81,
          "exact": false,
          "applying": false
        },
        {
          "body1": "North Node",
          "body2": "Eris",
          "aspect": "semi-square",
          "orb": 1.92,
          "exact": false,
          "applying": false
        },
        {
          "body1": "South Node",
          "body2": "Lilith",
          "aspect": "square",
          "orb": 3.7,
          "exact": false,
          "applying": false
        },
        {
          "body1": "South Node",
          "body2": "Vesta",
          "aspect": "opposition",
          "orb": 4.81,
          "exact": false,
          "applying": false
        },
        {
          "body1": "South Node",
          "body2": "Eris",
          "aspect": "sesquiquadrate",
          "orb": 1.92,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Lilith",
          "body2": "Vesta",
          "aspect": "square",
          "orb": 1.11,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Lilith",
          "body2": "Eris",
          "aspect": "sesquiquadrate",
          "orb": 1.78,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Pallas",
          "body2": "Eris",
          "aspect": "semi-sextile",
          "orb": 1.52,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Juno",
          "body2": "Eris",
          "aspect": "square",
          "orb": 6.99,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Vesta",
          "body2": "Eris",
          "aspect": "semi-square",
          "orb": 2.89,
          "exact": false,
          "applying": false
        }
      ]
    },
    "metrics": {
      "sample_count": 1,
      "aspect_counts": {
        "semi-sextile": 10,
        "square": 14,
        "semi-square": 10,
        "trine": 12,
        "quincunx": 4,
        "opposition": 3,
        "sextile": 14,
        "conjunction": 10,
        "sesquiquadrate": 4
      },
      "retrograde_bodies": [
        "North Node",
        "South Node"
      ],
      "sign_changes": []
    },
    "notable_events": [
      "Moon trine Saturn exact on Apr 06",
      "Sun square Jupiter exact on Apr 06",
      "Saturn sextile Pluto exact on Apr 06",
      "Venus sextile North Node exact on Apr 06",
      "Ceres sextile North Node exact on Apr 06",
      "Neptune sextile Juno exact on Apr 06",
      "Moon sextile Pluto exact on Apr 06",
      "Venus trine South Node exact on Apr 06",
      "Ceres trine South Node exact on Apr 06",
      "Chiron conjunction Eris exact on Apr 06",
      "Venus conjunction Ceres exact on Apr 06",
      "North Node retrograde emphasis"
    ],
    "period_events": [
      {
        "timestamp": "2026-04-06T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Moon",
        "body2": "Saturn",
        "sign": null,
        "aspect": "trine",
        "exactness": 0.02,
        "narrative_priority": 1.884,
        "section_bias": {
          "general": 1.7999999999999998,
          "love_singles": 0.4,
          "love_couples": 0.4,
          "friendship": 0.3,
          "health": 0.8,
          "career": 0.8,
          "money": 0.5
        },
        "description": "Moon trine Saturn exact on Apr 06"
      },
      {
        "timestamp": "2026-04-06T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Sun",
        "body2": "Jupiter",
        "sign": null,
        "aspect": "square",
        "exactness": 0.51,
        "narrative_priority": 1.86,
        "section_bias": {
          "general": 2.0,
          "career": 1.3,
          "lifestyle": 0.9,
          "money": 0.8
        },
        "description": "Sun square Jupiter exact on Apr 06"
      },
      {
        "timestamp": "2026-04-06T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Saturn",
        "body2": "Pluto",
        "sign": null,
        "aspect": "sextile",
        "exactness": 0.93,
        "narrative_priority": 1.839,
        "section_bias": {
          "general": 1.6,
          "career": 1.3,
          "health": 0.5,
          "money": 0.5,
          "love_couples": 0.4
        },
        "description": "Saturn sextile Pluto exact on Apr 06"
      },
      {
        "timestamp": "2026-04-06T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Venus",
        "body2": "North Node",
        "sign": null,
        "aspect": "sextile",
        "exactness": 0.14,
        "narrative_priority": 1.768,
        "section_bias": {
          "general": 1.4,
          "love_singles": 1.2,
          "love_couples": 1.0,
          "money": 0.5,
          "friendship": 0.4,
          "career": 0.4
        },
        "description": "Venus sextile North Node exact on Apr 06"
      },
      {
        "timestamp": "2026-04-06T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Ceres",
        "body2": "North Node",
        "sign": null,
        "aspect": "sextile",
        "exactness": 0.4,
        "narrative_priority": 1.755,
        "section_bias": {
          "general": 1.4,
          "career": 0.4,
          "love_singles": 0.3
        },
        "description": "Ceres sextile North Node exact on Apr 06"
      },
      {
        "timestamp": "2026-04-06T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Neptune",
        "body2": "Juno",
        "sign": null,
        "aspect": "sextile",
        "exactness": 0.24,
        "narrative_priority": 1.708,
        "section_bias": {
          "general": 1.0,
          "health": 0.5,
          "lifestyle": 0.6
        },
        "description": "Neptune sextile Juno exact on Apr 06"
      },
      {
        "timestamp": "2026-04-06T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Moon",
        "body2": "Pluto",
        "sign": null,
        "aspect": "sextile",
        "exactness": 0.91,
        "narrative_priority": 1.675,
        "section_bias": {
          "general": 2.0,
          "love_singles": 0.4,
          "love_couples": 0.8,
          "friendship": 0.3,
          "health": 0.3,
          "career": 0.5
        },
        "description": "Moon sextile Pluto exact on Apr 06"
      },
      {
        "timestamp": "2026-04-06T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Venus",
        "body2": "South Node",
        "sign": null,
        "aspect": "trine",
        "exactness": 0.14,
        "narrative_priority": 1.658,
        "section_bias": {
          "general": 1.2999999999999998,
          "love_singles": 0.9,
          "love_couples": 1.0,
          "money": 0.5,
          "friendship": 0.7,
          "lifestyle": 0.4
        },
        "description": "Venus trine South Node exact on Apr 06"
      },
      {
        "timestamp": "2026-04-06T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Ceres",
        "body2": "South Node",
        "sign": null,
        "aspect": "trine",
        "exactness": 0.4,
        "narrative_priority": 1.645,
        "section_bias": {
          "general": 1.2999999999999998,
          "lifestyle": 0.4,
          "friendship": 0.3
        },
        "description": "Ceres trine South Node exact on Apr 06"
      },
      {
        "timestamp": "2026-04-06T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Chiron",
        "body2": "Eris",
        "sign": null,
        "aspect": "conjunction",
        "exactness": 0.85,
        "narrative_priority": 1.623,
        "section_bias": {
          "general": 1.0,
          "health": 0.8,
          "love_couples": 0.4
        },
        "description": "Chiron conjunction Eris exact on Apr 06"
      },
      {
        "timestamp": "2026-04-06T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Venus",
        "body2": "Ceres",
        "sign": null,
        "aspect": "conjunction",
        "exactness": 0.25,
        "narrative_priority": 1.598,
        "section_bias": {
          "general": 0.6,
          "love_singles": 0.9,
          "love_couples": 1.0,
          "money": 0.5,
          "friendship": 0.4
        },
        "description": "Venus conjunction Ceres exact on Apr 06"
      },
      {
        "timestamp": "2026-04-06T12:00:00",
        "event_type": "retrograde_emphasis",
        "body1": "North Node",
        "body2": null,
        "sign": null,
        "aspect": null,
        "exactness": null,
        "narrative_priority": 1.125,
        "section_bias": {
          "general": 1.4,
          "career": 0.4,
          "love_singles": 0.3
        },
        "description": "North Node retrograde emphasis"
      },
      {
        "timestamp": "2026-04-06T12:00:00",
        "event_type": "retrograde_emphasis",
        "body1": "South Node",
        "body2": null,
        "sign": null,
        "aspect": null,
        "exactness": null,
        "narrative_priority": 1.035,
        "section_bias": {
          "general": 1.2999999999999998,
          "lifestyle": 0.4,
          "friendship": 0.3
        },
        "description": "South Node retrograde emphasis"
      }
    ],
    "factor_values": {
      "sun_in_sign": "ARIES",
      "moon_in_sign": "SAGITTARIUS",
      "rising_sign": "VIRGO",
      "transits_archetypes": "retrograde_review",
      "aspects": "sextile",
      "daily_house_focus": "ninth_house"
    }
  },
  "sections": [
    {
      "section": "health",
      "title": "Health daily outlook: protective and intuitive (high)",
      "summary": "On April 6, Cancer meets a high-voltage flow in energy management, recovery, and habits. Protect your baseline energy before adding more commitments. Moon trine Saturn peaks on Apr 06. For health rhythm, retrograde review favors revision before expansion; For wellbeing, translate this into recovery, regulation, and sustainable pacing. Listen to your body’s signals: fatigue isn’t weakness; it’s a signal to pause. This supports steadier energy management. Also, At body-regulation level, Sextile patterns ease coordination and keep momentum usable; For health, route this through sustainable habits and recovery-aware pacing. What’s one small comfort you can create for yourself today? A warm drink, a cozy blanket, or a quiet walk? This supports steadier energy management. Try a 5-minute ‘body scan’ before bed: notice warmth, tension, or warmth in limbs. That shift improves regulation and recovery.",
      "deep_report": "This day’s deep narrative is built in order: central influence first, then supportive nuance where it counts. In health terms, keep regulation as the anchor theme.\n\nAt day-end integration, this layer matters: The opening thesis centers on transit pattern of retrograde review. For health rhythm, retrograde review favors revision before expansion; For wellbeing, translate this into recovery, regulation, and sustainable pacing. The wellbeing thesis starts with Listen to your body’s signals: fatigue isn’t weakness; it’s a signal to pause. Stabilize it using Try a 5-minute ‘body scan’ before bed: notice warmth, tension, or warmth in limbs. Hold what’s one ‘no’ you can say to protect your rest while reducing Sleep on your back or side to reduce pressure on your spine—adjust pillow placement. As Moon trine Saturn peaks on Apr 06 peaks, rebalance effort and restoration in energy management, recovery, and habits today.\n\nA follow-on influence adjusts the tone; the practical consequence is this: The next important influence is aspect climate of sextile. At body-regulation level, Sextile patterns ease coordination and keep momentum usable; For health, route this through sustainable habits and recovery-aware pacing. Recovery friction appears near The sextile between your health and emotional balance demands you prioritize rest as a non-negotiable act of self-respect. Stabilize rhythm with Keep a water bottle by your bed to sip slowly throughout the night; hydration supports recovery. Use what’s one small comfort you can create for yourself today to reduce conditions where sleep feels elusive. As Sun square Jupiter peaks on Apr 06 comes into focus, use it to regulate your rhythm in energy management, recovery, and habits today.\n\nThe daily edge comes from honoring the strongest influence before reacting to noise.",
      "highlights": [
        "Retrograde review favors revision before expansion.",
        "Sextile patterns ease coordination and keep momentum usable.",
        "Lunar tone in Sagittarius brings bold, direct, and action-led reactivity to the foreground.",
        "House activation highlights beliefs, expansion, travel, and perspective shifts as the most activated life areas this cycle."
      ],
      "cautions": [
        "Sleep on your back or side to reduce pressure on your spine—adjust pillow placement.",
        "If sleep feels elusive, prioritize short, restorative naps over marathon sessions.",
        "Monitor emotional fatigue masking as physical exhaustion. Your Sagittarius moon may push boundaries, but your Cancer heart needs boundaries too—set gentle limits on what feels like ‘enough.’.",
        "If you’re drawn to travel or intellectual pursuits, ensure they’re aligned with your deepest values—not just the allure of the unknown."
      ],
      "actions": [
        "Try a 5-minute ‘body scan’ before bed: notice warmth, tension, or warmth in limbs.",
        "Keep a water bottle by your bed to sip slowly throughout the night; hydration supports recovery.",
        "Pack a ‘wellness snack’ for your next outing—nuts, fruit, or herbal tea. Your body’s energy is unpredictable; fuel it with something that feels nourishing, not restrictive.",
        "Plan a small, intentional trip today—one that forces you to step outside your comfort zone, not just physically, but in how you engage with the world."
      ],
      "scores": {
        "momentum": 100.0,
        "clarity": 40.2,
        "opportunity": 100.0,
        "focus": 91.8,
        "stability": 27.9,
        "connection": 79.2
      },
      "intensity": "high",
      "factor_details": [
        {
          "factor_type": "sun_in_sign",
          "factor_value": "ARIES",
          "weight": 1.0,
          "factor_insights": {
            "motivation": "This is your chance to merge your natural drive with the grounding needs of your physical self. Trust that discipline today will pay off in quiet, sustainable gains.",
            "caution": "If you feel stiffness or fatigue, adjust your routine. Aries thrives on action, but Cancer’s health depends on listening to signals of wear. Skipping this check could derail progress.",
            "reflection": "Consider how you’ve been treating your body lately. Have you been giving it the care it deserves, or just the energy it demands? Today, bridge the gap.",
            "daily_tip": "End the day with a 5-minute cooling-down routine (deep breathing, static stretches). This helps ground your nervous system and prevents stiffness from Aries’ energy.",
            "affirmation": "I honor my body’s needs as fiercely as I pursue my goals. Every movement today is intentional, every rest is sacred."
          }
        },
        {
          "factor_type": "moon_in_sign",
          "factor_value": "SAGITTARIUS",
          "weight": 1.15,
          "factor_insights": {
            "motivation": "Embrace the pull of adventure within your health routine—even small, purposeful steps (like a brisk walk or mindful stretching) align your body’s rhythm with your soul’s curiosity.",
            "caution": "Watch for emotional fatigue masking as physical exhaustion. Your Sagittarius moon may push boundaries, but your Cancer heart needs boundaries too—set gentle limits on what feels like ‘enough.’",
            "reflection": "Reflect on a time you balanced adventure with care—what worked? Your body remembers these moments. Replicate the harmony: move with intention, not against it.",
            "daily_tip": "Pack a ‘wellness snack’ for your next outing—nuts, fruit, or herbal tea. Your body’s energy is unpredictable; fuel it with something that feels nourishing, not restrictive.",
            "affirmation": "I honor my body’s dual nature—where my emotions rest and my spirit yearns. Today, I move with intention, not against my limits. My health thrives when I balance restlessness with care."
          }
        },
        {
          "factor_type": "rising_sign",
          "factor_value": "VIRGO",
          "weight": 1.0,
          "factor_insights": {
            "motivation": "This is your chance to prove that health isn’t about extremes but the steady alignment of effort with your body’s rhythm—like a garden where patience yields flourishing roots.",
            "caution": "Overcorrecting habits (e.g., extreme dieting or over-exercising) may drain your emotional reserves. Instead, focus on small, sustainable tweaks that feel effortless.",
            "reflection": "Consider: What’s one health decision I’ve made out of habit rather than genuine need? Let your Cancer core guide you to what truly nourishes—not what feels ‘right’ to your Virgo mind.",
            "daily_tip": "End your day by journaling one health-related observation: What felt easy today? What felt like a struggle? Use this to refine tomorrow’s approach.",
            "affirmation": "My Virgo rising’s precision serves my Cancer core’s care—today, I choose balance over perfection in every step."
          }
        },
        {
          "factor_type": "transits_archetypes",
          "factor_value": "retrograde_review",
          "weight": 1.3,
          "factor_insights": {
            "motivation": "Listen to your body’s signals: fatigue isn’t weakness; it’s a signal to pause.",
            "caution": "Sleep on your back or side to reduce pressure on your spine—adjust pillow placement.",
            "reflection": "What’s one ‘no’ you can say to protect your rest? Silence is a form of strength.",
            "daily_tip": "Try a 5-minute ‘body scan’ before bed: notice warmth, tension, or warmth in limbs.",
            "affirmation": "Today, I move with intention, not exhaustion."
          }
        },
        {
          "factor_type": "aspects",
          "factor_value": "sextile",
          "weight": 1.2,
          "factor_insights": {
            "motivation": "The sextile between your health and emotional balance demands you prioritize rest as a non-negotiable act of self-respect.",
            "caution": "If sleep feels elusive, prioritize short, restorative naps over marathon sessions.",
            "reflection": "What’s one small comfort you can create for yourself today? A warm drink, a cozy blanket, or a quiet walk?",
            "daily_tip": "Keep a water bottle by your bed to sip slowly throughout the night; hydration supports recovery.",
            "affirmation": "My sextile energy flows freely when I honor my limits. I trust my body’s wisdom in guiding me."
          }
        },
        {
          "factor_type": "daily_house_focus",
          "factor_value": "ninth_house",
          "weight": 1.08,
          "factor_insights": {
            "motivation": "Your ninth house energy today demands a deliberate shift toward deeper inquiry—let curiosity about the unknown guide your curiosity about your own capacity for transformation.",
            "caution": "If you’re drawn to travel or intellectual pursuits, ensure they’re aligned with your deepest values—not just the allure of the unknown.",
            "reflection": "Reflect on how your beliefs have evolved or shifted over the past year. The ninth house’s energy is catalytic—it doesn’t just expand your mind; it forces you to confront what you’ve been unwilling to question.",
            "daily_tip": "Plan a small, intentional trip today—one that forces you to step outside your comfort zone, not just physically, but in how you engage with the world.",
            "affirmation": "I embrace the paradox of expansion: the more I learn, the more I understand that knowledge is a journey, not a destination."
          }
        }
      ],
      "debug_trace": null
    }
  ],
  "_enterprise": {
    "client": "The Numerology API",
    "plan": "Enterprise",
    "request_id": "1ecc63816e8321f2",
    "quota": "unlimited",
    "usage_tracking": false
  },
  "_api_metadata_": {
    "api_name": "The Numerology API by Dakidarts®",
    "api_version": "1.0.0",
    "endpoint_name": "horoscope_health_yesterday_post",
    "endpoint_description": "Provides yesterday's health and wellness horoscope.",
    "developer": "Dakidarts®",
    "copyright": "© 2026 Dakidarts®. All rights reserved.",
    "documentation_url": "https://docs.numerologyapi.com/",
    "response_timestamp": "2026-04-07T23:44:37.847055+01:00",
    "data_source": "Internal Engine / Astro Numerology Interpretation Engine (ANIE)",
    "cacheable_status": true,
    "report_issue": "https://github.com/dakidarts/the-numerology-api/issues",
    "response_language": "en",
    "supported_languages": [
      "en"
    ],
    "notes": ""
  }
}

Zuordnung