Skip to content

Tomorrow Health Horoscope

The Tomorrow Health Horoscope endpoint provides insights into your physical, mental, and emotional well-being for the following day.
It helps users plan self-care, nutrition, exercise, and emotional balance in advance.


Language: English-only (currently)

Language support: This engine-backed /api/v1/horoscope/reports/* endpoint currently supports English only (lang=en).

Endpoint

Method Path
POST https://api.numerologyapi.com/api/v1/horoscope/reports/health/tomorrow

Request Body

Name Required Type Example Description
dob Yes string 1992-07-16 Date of birth (YYYY-MM-DD). Pattern: ^\d{4}-\d{2}-\d{2}$
timezone No string America/New_York IANA timezone used to resolve period anchors accurately. Default: UTC
include_snapshot No boolean (nullable) - Optional compact mode switch. Set false to omit snapshot block from response payload.
include_positions No boolean (nullable) - Optional compact mode switch. Set false to omit positions arrays from response payload.
zodiac_system No string (nullable) tropical Zodiac computation mode. Allowed: sidereal, tropical
ayanamsa No string (nullable) lahiri Sidereal ayanamsa system (used when sidereal mode is selected). Allowed: lahiri, fagan_bradley, krishnamurti, raman, yukteswar
house_system No string (nullable) placidus House calculation system. Allowed: placidus, whole_sign, equal, koch
node_type No string (nullable) true Lunar node mode. Allowed: true, mean
tenant_id No string (nullable) docs-smoke Optional tenant/cache namespace override.
birth_time No string (nullable) 13:45 Birth time (HH:MM, 24h). Pattern: ^\d{2}:\d{2}$
birth_latitude No number (nullable) 40.7128 Birth latitude. Provide with birth_longitude.
birth_longitude No number (nullable) -74.0060 Birth longitude. Provide with birth_latitude.
birth_timezone No string (nullable) America/New_York Birth-time timezone override (IANA).
## Personalized Mode Example (Recommended)

Personalized mode activates additional deterministic Swiss Ephemeris vectors (for example houses, timing vectors, and optional astrological layers). That means two users with the same sign can still receive different report editorials when birth details differ.

curl --request POST \
  --url "https://api.numerologyapi.com/api/v1/horoscope/reports/health/tomorrow?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"
}'

Public Mode Example (General Sign-Based)

General mode is production-usable and is computed with non-personalized layers. It is sign-based, so users sharing the same sign receive the same core reading for the same period. Use this mode when you want stable sign-level output without per-user birth-vector differences.

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

Example Response

{
  "report_type": "horoscope",
  "sign": "CANCER",
  "period": "daily",
  "start": "2026-04-08T00:00:00",
  "end": "2026-04-09T00:00:00",
  "data": {
    "period": "daily",
    "start": "2026-04-08T00:00:00",
    "end": "2026-04-09T00:00:00",
    "snapshot": {
      "timestamp": "2026-04-08T12:00:00",
      "zodiac_system": "tropical",
      "ayanamsa": "Lahiri",
      "ayanamsa_value": 24.224033,
      "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": 18.662080153343677,
          "tropical_longitude": 18.662080153343677,
          "sidereal_longitude": 354.4364031365586,
          "latitude": -0.00017314999039155018,
          "speed": 0.9828625761578493,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 18.662080153343677,
          "house": 8,
          "retrograde": false,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "Moon",
          "longitude": 269.96461639695576,
          "tropical_longitude": 269.96461639695576,
          "sidereal_longitude": 245.73893938017068,
          "latitude": -4.795058451420149,
          "speed": 11.883451687140411,
          "sign": "SAGITTARIUS",
          "tropical_sign": "SAGITTARIUS",
          "sidereal_sign": "SAGITTARIUS",
          "degree_in_sign": 29.964616396955762,
          "house": 4,
          "retrograde": false,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "Mercury",
          "longitude": 351.37904025976906,
          "tropical_longitude": 351.37904025976906,
          "sidereal_longitude": 327.15336324298397,
          "latitude": -2.214814112326329,
          "speed": 1.1825791118193736,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "AQUARIUS",
          "degree_in_sign": 21.379040259769056,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "Venus",
          "longitude": 40.857993678280415,
          "tropical_longitude": 40.857993678280415,
          "sidereal_longitude": 16.632316661495327,
          "latitude": -0.12219908113230322,
          "speed": 1.2265774637001046,
          "sign": "TAURUS",
          "tropical_sign": "TAURUS",
          "sidereal_sign": "ARIES",
          "degree_in_sign": 10.857993678280415,
          "house": 9,
          "retrograde": false,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "Mars",
          "longitude": 358.9741212040803,
          "tropical_longitude": 358.9741212040803,
          "sidereal_longitude": 334.7484441872952,
          "latitude": -1.01425612458948,
          "speed": 0.7792998540255472,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 28.97412120408029,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "Jupiter",
          "longitude": 106.34887877141026,
          "tropical_longitude": 106.34887877141026,
          "sidereal_longitude": 82.12320175462516,
          "latitude": 0.37623825357820645,
          "speed": 0.08605169031338009,
          "sign": "CANCER",
          "tropical_sign": "CANCER",
          "sidereal_sign": "GEMINI",
          "degree_in_sign": 16.348878771410256,
          "house": 11,
          "retrograde": false,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "Saturn",
          "longitude": 6.4763051665497295,
          "tropical_longitude": 6.4763051665497295,
          "sidereal_longitude": 342.2506281497647,
          "latitude": -2.1350962445667347,
          "speed": 0.1230171210889875,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 6.4763051665497295,
          "house": 8,
          "retrograde": false,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "Uranus",
          "longitude": 59.101884166066846,
          "tropical_longitude": 59.101884166066846,
          "sidereal_longitude": 34.87620714928175,
          "latitude": -0.16903279984024824,
          "speed": 0.04739079233330246,
          "sign": "TAURUS",
          "tropical_sign": "TAURUS",
          "sidereal_sign": "TAURUS",
          "degree_in_sign": 29.101884166066846,
          "house": 9,
          "retrograde": false,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "Neptune",
          "longitude": 2.4827979242698643,
          "tropical_longitude": 2.4827979242698643,
          "sidereal_longitude": 338.25712090748476,
          "latitude": -1.3096399800285514,
          "speed": 0.03669580398594739,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 2.4827979242698643,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "Pluto",
          "longitude": 305.3257061064537,
          "tropical_longitude": 305.3257061064537,
          "sidereal_longitude": 281.1000290896686,
          "latitude": -3.970012080180854,
          "speed": 0.012950592230773949,
          "sign": "AQUARIUS",
          "tropical_sign": "AQUARIUS",
          "sidereal_sign": "CAPRICORN",
          "degree_in_sign": 5.325706106453708,
          "house": 5,
          "retrograde": false,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "Chiron",
          "longitude": 26.150773562016752,
          "tropical_longitude": 26.150773562016752,
          "sidereal_longitude": 1.9250965452316586,
          "latitude": 0.3591183005080764,
          "speed": 0.05972523478798165,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "ARIES",
          "degree_in_sign": 26.150773562016752,
          "house": 8,
          "retrograde": false,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "Ceres",
          "longitude": 39.453042282157554,
          "tropical_longitude": 39.453042282157554,
          "sidereal_longitude": 15.227365265372471,
          "latitude": -4.489833691368399,
          "speed": 0.3980031154165485,
          "sign": "TAURUS",
          "tropical_sign": "TAURUS",
          "sidereal_sign": "ARIES",
          "degree_in_sign": 9.453042282157554,
          "house": 9,
          "retrograde": false,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "North Node",
          "longitude": 338.1054320525856,
          "tropical_longitude": 338.1054320525856,
          "sidereal_longitude": 313.87975503580054,
          "latitude": 0.0,
          "speed": -0.05526456671736626,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "AQUARIUS",
          "degree_in_sign": 8.105432052585627,
          "house": 6,
          "retrograde": true,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "South Node",
          "longitude": 158.10543205258568,
          "tropical_longitude": 158.10543205258568,
          "sidereal_longitude": 133.87975503580054,
          "latitude": 0.0,
          "speed": -0.05526456671736626,
          "sign": "VIRGO",
          "tropical_sign": "VIRGO",
          "sidereal_sign": "LEO",
          "degree_in_sign": 8.105432052585684,
          "house": 12,
          "retrograde": true,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "Lilith",
          "longitude": 252.18036865761533,
          "tropical_longitude": 252.18036865761533,
          "sidereal_longitude": 227.95469164083025,
          "latitude": -5.124555001082225,
          "speed": 0.11201934900409877,
          "sign": "SAGITTARIUS",
          "tropical_sign": "SAGITTARIUS",
          "sidereal_sign": "SCORPIO",
          "degree_in_sign": 12.180368657615332,
          "house": 4,
          "retrograde": false,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "Pallas",
          "longitude": 354.3095960466505,
          "tropical_longitude": 354.3095960466505,
          "sidereal_longitude": 330.0839190298654,
          "latitude": 3.502091214623772,
          "speed": 0.3267412347686282,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 24.309596046650483,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "Juno",
          "longitude": 302.67244499904115,
          "tropical_longitude": 302.67244499904115,
          "sidereal_longitude": 278.44676798225606,
          "latitude": 11.637665074974603,
          "speed": 0.2511989524314414,
          "sign": "AQUARIUS",
          "tropical_sign": "AQUARIUS",
          "sidereal_sign": "CAPRICORN",
          "degree_in_sign": 2.672444999041147,
          "house": 5,
          "retrograde": false,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "Vesta",
          "longitude": 344.0219611357695,
          "tropical_longitude": 344.0219611357695,
          "sidereal_longitude": 319.79628411898443,
          "latitude": -3.8449837093845414,
          "speed": 0.47647969009636404,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "AQUARIUS",
          "degree_in_sign": 14.021961135769516,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.224033236855632
        },
        {
          "name": "Eris",
          "longitude": 25.20105590689525,
          "tropical_longitude": 25.20105590689525,
          "sidereal_longitude": 0.9753788901101663,
          "latitude": -10.393832559302957,
          "speed": 0.010860664063415876,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "ARIES",
          "degree_in_sign": 25.20105590689525,
          "house": 8,
          "retrograde": false,
          "ayanamsa_value": 24.224033236855632
        }
      ],
      "aspects": [
        {
          "body1": "Sun",
          "body2": "Mercury",
          "aspect": "semi-sextile",
          "orb": 2.72,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Sun",
          "body2": "Jupiter",
          "aspect": "square",
          "orb": 2.31,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Sun",
          "body2": "Chiron",
          "aspect": "conjunction",
          "orb": 7.49,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Sun",
          "body2": "Lilith",
          "aspect": "trine",
          "orb": 6.48,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Sun",
          "body2": "Eris",
          "aspect": "conjunction",
          "orb": 6.54,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Mars",
          "aspect": "square",
          "orb": 0.99,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Saturn",
          "aspect": "square",
          "orb": 6.51,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Uranus",
          "aspect": "quincunx",
          "orb": 0.86,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Neptune",
          "aspect": "square",
          "orb": 2.52,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Chiron",
          "aspect": "trine",
          "orb": 3.81,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Pallas",
          "aspect": "square",
          "orb": 5.66,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Juno",
          "aspect": "semi-sextile",
          "orb": 2.71,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Eris",
          "aspect": "trine",
          "orb": 4.76,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Mars",
          "aspect": "conjunction",
          "orb": 7.6,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Jupiter",
          "aspect": "trine",
          "orb": 5.03,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Pluto",
          "aspect": "semi-square",
          "orb": 1.05,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Pallas",
          "aspect": "conjunction",
          "orb": 2.93,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Vesta",
          "aspect": "conjunction",
          "orb": 7.36,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Jupiter",
          "aspect": "sextile",
          "orb": 5.49,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Pluto",
          "aspect": "square",
          "orb": 5.53,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Ceres",
          "aspect": "conjunction",
          "orb": 1.4,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "North Node",
          "aspect": "sextile",
          "orb": 2.75,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "South Node",
          "aspect": "trine",
          "orb": 2.75,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Lilith",
          "aspect": "quincunx",
          "orb": 1.32,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Pallas",
          "aspect": "semi-square",
          "orb": 1.55,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Vesta",
          "aspect": "sextile",
          "orb": 3.16,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Saturn",
          "aspect": "conjunction",
          "orb": 7.5,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Uranus",
          "aspect": "sextile",
          "orb": 0.13,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Neptune",
          "aspect": "conjunction",
          "orb": 3.51,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Chiron",
          "aspect": "semi-sextile",
          "orb": 2.82,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Pallas",
          "aspect": "conjunction",
          "orb": 4.66,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Juno",
          "aspect": "sextile",
          "orb": 3.7,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Jupiter",
          "body2": "Uranus",
          "aspect": "semi-square",
          "orb": 2.25,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Jupiter",
          "body2": "Pallas",
          "aspect": "trine",
          "orb": 7.96,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Jupiter",
          "body2": "Vesta",
          "aspect": "trine",
          "orb": 2.33,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Neptune",
          "aspect": "conjunction",
          "orb": 3.99,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Pluto",
          "aspect": "sextile",
          "orb": 1.15,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Ceres",
          "aspect": "semi-sextile",
          "orb": 2.98,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "North Node",
          "aspect": "semi-sextile",
          "orb": 1.63,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "South Node",
          "aspect": "quincunx",
          "orb": 1.63,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Lilith",
          "aspect": "trine",
          "orb": 5.7,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Juno",
          "aspect": "sextile",
          "orb": 3.8,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Neptune",
          "aspect": "sextile",
          "orb": 3.38,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Pluto",
          "aspect": "trine",
          "orb": 6.22,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Chiron",
          "aspect": "semi-sextile",
          "orb": 2.95,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Pallas",
          "aspect": "sextile",
          "orb": 4.79,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Juno",
          "aspect": "trine",
          "orb": 3.57,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Neptune",
          "body2": "Pluto",
          "aspect": "sextile",
          "orb": 2.84,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Neptune",
          "body2": "Juno",
          "aspect": "sextile",
          "orb": 0.19,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Pluto",
          "body2": "Ceres",
          "aspect": "square",
          "orb": 4.13,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Pluto",
          "body2": "North Node",
          "aspect": "semi-sextile",
          "orb": 2.78,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Pluto",
          "body2": "South Node",
          "aspect": "quincunx",
          "orb": 2.78,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Pluto",
          "body2": "Juno",
          "aspect": "conjunction",
          "orb": 2.65,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Lilith",
          "aspect": "sesquiquadrate",
          "orb": 1.03,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Pallas",
          "aspect": "semi-sextile",
          "orb": 1.84,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Juno",
          "aspect": "square",
          "orb": 6.52,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Vesta",
          "aspect": "semi-square",
          "orb": 2.87,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Eris",
          "aspect": "conjunction",
          "orb": 0.95,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "North Node",
          "aspect": "sextile",
          "orb": 1.35,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "South Node",
          "aspect": "trine",
          "orb": 1.35,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "Lilith",
          "aspect": "quincunx",
          "orb": 2.73,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "Pallas",
          "aspect": "semi-square",
          "orb": 0.14,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "Juno",
          "aspect": "square",
          "orb": 6.78,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "Vesta",
          "aspect": "sextile",
          "orb": 4.57,
          "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": 4.07,
          "exact": false,
          "applying": false
        },
        {
          "body1": "North Node",
          "body2": "Vesta",
          "aspect": "conjunction",
          "orb": 5.92,
          "exact": false,
          "applying": false
        },
        {
          "body1": "North Node",
          "body2": "Eris",
          "aspect": "semi-square",
          "orb": 2.1,
          "exact": false,
          "applying": false
        },
        {
          "body1": "South Node",
          "body2": "Lilith",
          "aspect": "square",
          "orb": 4.07,
          "exact": false,
          "applying": false
        },
        {
          "body1": "South Node",
          "body2": "Vesta",
          "aspect": "opposition",
          "orb": 5.92,
          "exact": false,
          "applying": false
        },
        {
          "body1": "South Node",
          "body2": "Eris",
          "aspect": "sesquiquadrate",
          "orb": 2.1,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Lilith",
          "body2": "Vesta",
          "aspect": "square",
          "orb": 1.84,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Lilith",
          "body2": "Eris",
          "aspect": "sesquiquadrate",
          "orb": 1.98,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Pallas",
          "body2": "Eris",
          "aspect": "semi-sextile",
          "orb": 0.89,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Juno",
          "body2": "Eris",
          "aspect": "square",
          "orb": 7.47,
          "exact": false,
          "applying": false
        }
      ]
    },
    "metrics": {
      "sample_count": 1,
      "aspect_counts": {
        "semi-sextile": 9,
        "square": 13,
        "conjunction": 13,
        "trine": 11,
        "quincunx": 5,
        "semi-square": 6,
        "sextile": 13,
        "sesquiquadrate": 3,
        "opposition": 2
      },
      "retrograde_bodies": [
        "North Node",
        "South Node"
      ],
      "sign_changes": []
    },
    "notable_events": [
      "Mars sextile Uranus exact on Apr 08",
      "Neptune sextile Juno exact on Apr 08",
      "Chiron conjunction Eris exact on Apr 08",
      "Moon square Mars exact on Apr 08",
      "North Node retrograde emphasis",
      "South Node retrograde emphasis"
    ],
    "period_events": [
      {
        "timestamp": "2026-04-08T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Mars",
        "body2": "Uranus",
        "sign": null,
        "aspect": "sextile",
        "exactness": 0.13,
        "narrative_priority": 1.714,
        "section_bias": {
          "general": 1.0,
          "career": 0.8,
          "health": 0.6,
          "love_singles": 0.3,
          "lifestyle": 0.7,
          "communication": 0.4
        },
        "description": "Mars sextile Uranus exact on Apr 08"
      },
      {
        "timestamp": "2026-04-08T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Neptune",
        "body2": "Juno",
        "sign": null,
        "aspect": "sextile",
        "exactness": 0.19,
        "narrative_priority": 1.711,
        "section_bias": {
          "general": 1.0,
          "health": 0.5,
          "lifestyle": 0.6
        },
        "description": "Neptune sextile Juno exact on Apr 08"
      },
      {
        "timestamp": "2026-04-08T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Chiron",
        "body2": "Eris",
        "sign": null,
        "aspect": "conjunction",
        "exactness": 0.95,
        "narrative_priority": 1.617,
        "section_bias": {
          "general": 1.0,
          "health": 0.8,
          "love_couples": 0.4
        },
        "description": "Chiron conjunction Eris exact on Apr 08"
      },
      {
        "timestamp": "2026-04-08T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Moon",
        "body2": "Mars",
        "sign": null,
        "aspect": "square",
        "exactness": 0.99,
        "narrative_priority": 1.615,
        "section_bias": {
          "general": 1.4,
          "love_singles": 0.7,
          "love_couples": 0.4,
          "friendship": 0.3,
          "health": 0.8999999999999999,
          "career": 0.8
        },
        "description": "Moon square Mars exact on Apr 08"
      },
      {
        "timestamp": "2026-04-08T12: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-08T12: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": "conjunction",
      "daily_house_focus": "seventh_house"
    }
  },
  "sections": [
    {
      "section": "health",
      "title": "Health daily outlook: protective and intuitive (high)",
      "summary": "On April 8, Cancer meets a high-voltage flow in energy management, recovery, and habits. Protect your baseline energy before adding more commitments. Mars sextile Uranus peaks on Apr 08. For health rhythm, retrograde review is active, so edits and recalibration outperform rushing; For wellbeing, translate this into recovery, regulation, and sustainable pacing. Your body is a sanctuary—protect its rhythm by honoring sleep’s quiet demands. That shift improves regulation and recovery. At the same time, At body-regulation level, Conjunction patterns ease coordination and keep momentum usable; For health, route this through sustainable habits and recovery-aware pacing. Consider how your emotional state influences physical symptoms. Are you holding back tears, suppressing frustration, or resisting rest? Address it now. That shift improves regulation and recovery. Drink warm lemon water first thing—it’s a gentle reset for digestion and mood. This supports steadier energy management.",
      "deep_report": "At daily scale, the clearest narrative begins with dominant pressure and then integrates the secondary layer. For this daily health arc, let recovery be your orienting principle.\n\nAt day-end integration, this layer matters; the lived expression is this: The first structural cue in this daily narrative is transit pattern of retrograde review. For health rhythm, retrograde review is active, so edits and recalibration outperform rushing; For wellbeing, translate this into recovery, regulation, and sustainable pacing. For wellbeing, the opening signal is Your body is a sanctuary—protect its rhythm by honoring sleep’s quiet demands. Ground it through Drink warm lemon water first thing—it’s a gentle reset for digestion and mood. Keep Where do I feel stiff or drained active and reduce emotional fatigue—overworking the heart drains energy faster than you think. As Mars sextile Uranus peaks on Apr 08 peaks, rebalance effort and restoration in energy management, recovery, and habits today.\n\nAt day-end integration, this layer matters: The next important influence is aspect climate of conjunction. At body-regulation level, Conjunction patterns ease coordination and keep momentum usable; For health, route this through sustainable habits and recovery-aware pacing. Strain gathers around This is your chance to address the small, persistent aches that’ve been building. Soothe the system through Use a pressure point roller on your shoulders or temples if tension is high. Keep Consider how your emotional state influences physical symptoms active so conditions where you’re prone to chronic tension (like jaw clenching or shoulder tightness) stays low. With Neptune sextile Juno peaks on Apr 08 active, let it reset recovery pacing in energy management, recovery, and habits for today.\n\nFor a clean day-end, keep choices aligned with the central influence and tune only what matters.",
      "highlights": [
        "Retrograde review is active, so edits and recalibration outperform rushing.",
        "Conjunction patterns ease coordination and keep momentum usable.",
        "The Moon in Sagittarius colors reactions with a bold, direct, and action-led emotional filter.",
        "House activation highlights partnership dynamics, agreements, and reciprocity as the most activated life areas this cycle."
      ],
      "cautions": [
        "Keep clear of emotional fatigue—overworking the heart drains energy faster than you think.",
        "If you’re prone to chronic tension (like jaw clenching or shoulder tightness), this is the moment to release it—physically and mentally.",
        "Sagittarius’s restless spirit may push you to skip meals or restorative sleep, but your Cancer body needs steady, nourishing rhythms.",
        "Keep clear of the trap of assuming your partner’s needs align with your own without explicit conversation. The seventh house’s tension here often arises when one side feels unheard or undervalued in the dynamic, even if the words aren’t spoken. Silence can be louder than disagreement."
      ],
      "actions": [
        "Drink warm lemon water first thing—it’s a gentle reset for digestion and mood.",
        "Use a pressure point roller on your shoulders or temples if tension is high. Even 10 seconds of relief can shift your mood and body.",
        "When your mind drifts to plans (Sagittarius), pause and ask: What’s one thing my body could use right now? (Even if it’s just water.).",
        "Move your body in ways that honor your energy levels—whether that’s a short walk after a long day or a restorative yoga session. The seventh house’s health focus here is about balancing activity with recovery, especially when relationships tax your reserves."
      ],
      "scores": {
        "momentum": 100.0,
        "clarity": 40.7,
        "opportunity": 100.0,
        "focus": 83.6,
        "stability": 30.5,
        "connection": 77.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": "Overstretching muscles or pushing through pain isn’t strength—it’s a trap. Listen for the first sign of strain, then pause. The body remembers discipline, not desperation.",
            "reflection": "Ask yourself: What’s one movement or habit that feels both nourishing and energizing? Your body’s needs shift with the moon’s cycle—today, it’s time to refine that balance.",
            "daily_tip": "Prioritize hydration and protein-rich meals to fuel movement without sluggishness. Fuel your body like it’s the tool it is—precise, not brute.",
            "affirmation": "My body is resilient. I respect it, nurture it, and trust it to carry me forward."
          }
        },
        {
          "factor_type": "moon_in_sign",
          "factor_value": "SAGITTARIUS",
          "weight": 1.15,
          "factor_insights": {
            "motivation": "This is your chance to listen: your body’s signals are louder than ever. Trust that your energy will reset when you align with your moon’s need for space.",
            "caution": "Sagittarius’s restless spirit may push you to skip meals or restorative sleep, but your Cancer body needs steady, nourishing rhythms.",
            "reflection": "Your Cancer body knows when you’re truly rested; your Sagittarius mind may insist you’re ‘not lazy’ when you’re simply listening.",
            "daily_tip": "When your mind drifts to plans (Sagittarius), pause and ask: What’s one thing my body could use right now? (Even if it’s just water.)",
            "affirmation": "I trust that my Cancer body and Sagittarius soul are in harmony—even when they feel different."
          }
        },
        {
          "factor_type": "rising_sign",
          "factor_value": "VIRGO",
          "weight": 1.0,
          "factor_insights": {
            "motivation": "Embrace the precision here: how you fuel your body now sets the foundation for how you’ll move through the day.",
            "caution": "The tension here isn’t between effort and rest—it’s between doing and being present.",
            "reflection": "Notice how your body reacts to choices—is it energized or drained? Adjust before the fatigue catches up.",
            "daily_tip": "Keep a ‘micro-goal’ for your health—like a 10-minute walk or a specific food prep ritual—so it feels intentional, not overwhelming.",
            "affirmation": "I honor my body’s wisdom by listening to its quiet signals, not my own overthinking."
          }
        },
        {
          "factor_type": "transits_archetypes",
          "factor_value": "retrograde_review",
          "weight": 1.3,
          "factor_insights": {
            "motivation": "Your body is a sanctuary—protect its rhythm by honoring sleep’s quiet demands.",
            "caution": "Watch for emotional fatigue—overworking the heart drains energy faster than you think.",
            "reflection": "Ask: Where do I feel stiff or drained? Move there first—no judgment, just awareness.",
            "daily_tip": "Drink warm lemon water first thing—it’s a gentle reset for digestion and mood.",
            "affirmation": "Rest is not laziness—it’s the foundation of strength."
          }
        },
        {
          "factor_type": "aspects",
          "factor_value": "conjunction",
          "weight": 1.2,
          "factor_insights": {
            "motivation": "This is your chance to address the small, persistent aches that’ve been building. Address them now before they intensify into something harder to manage.",
            "caution": "If you’re prone to chronic tension (like jaw clenching or shoulder tightness), this is the moment to release it—physically and mentally.",
            "reflection": "Consider how your emotional state influences physical symptoms. Are you holding back tears, suppressing frustration, or resisting rest? Address it now.",
            "daily_tip": "Use a pressure point roller on your shoulders or temples if tension is high. Even 10 seconds of relief can shift your mood and body.",
            "affirmation": "I release what no longer serves me physically and emotionally. Today, I choose rest, not exhaustion."
          }
        },
        {
          "factor_type": "daily_house_focus",
          "factor_value": "seventh_house",
          "weight": 1.08,
          "factor_insights": {
            "motivation": "When you commit to another, do you do so with the same intention you’d want in return? The seventh house’s energy here is a mirror—reflect on whether your boundaries feel as strong as your generosity.",
            "caution": "Avoid the trap of assuming your partner’s needs align with your own without explicit conversation. The seventh house’s tension here often arises when one side feels unheard or undervalued in the dynamic, even if the words aren’t spoken. Silence can be louder than disagreement.",
            "reflection": "The seventh house’s mirror here isn’t just about others; it’s about self. How do you show up in relationships that reflect your own integrity? Your actions must align with your values, or the seventh house’s energy will call you to realign.",
            "daily_tip": "Move your body in ways that honor your energy levels—whether that’s a short walk after a long day or a restorative yoga session. The seventh house’s health focus here is about balancing activity with recovery, especially when relationships tax your reserves.",
            "affirmation": "My health is strengthened by relationships that honor my energy, not drain it. I prioritize my well-being as a partner in my own care, and I trust that reciprocity will follow."
          }
        }
      ],
      "debug_trace": null
    }
  ],
  "_enterprise": {
    "client": "The Numerology API",
    "plan": "Enterprise",
    "request_id": "eda1513e9e7873eb",
    "quota": "unlimited",
    "usage_tracking": false
  },
  "_api_metadata_": {
    "api_name": "The Numerology API by Dakidarts®",
    "api_version": "1.0.0",
    "endpoint_name": "horoscope_health_tomorrow_post",
    "endpoint_description": "Provides tomorrow'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.742828+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": ""
  }
}