콘텐츠로 이동

오늘의 건강 운세

오늘의 건강 운세 엔드포인트는 현재 날짜에 대한 신체적, 정신적, 감정적인 웰빙에 대한 통찰력을 제공합니다. 이는 사용자가 자기 관리, 영양, 운동 및 감정적 균형을 계획하는 데 도움을 줍니다.


언어: 영어만 지원 (현재)

언어 지원: 이 엔진 기반 /api/v1/horoscope/reports/* 엔드포인트는 현재 영어만 지원합니다 (lang=en).

엔드포인트

방법 경로
POST https://api.numerologyapi.com/api/v1/horoscope/reports/health/today

요청 본문| 이름 | 필수 | 유형 | 예시 | 설명 |

|---|---|---|---|---| | dob | 예 | 문자열 | 1992-07-16 | Date of birth (YYYY-MM-DD). Pattern: ^\d{4}-\d{2}-\d{2} | | timezone | 아니오 | 문자열 | America/New_York | IANA timezone used to resolve period anchors accurately. Default: UTC | | include_snapshot | 아니오 | 부울 (선택 사항) | - | 선택적 컴팩트 모드 설정. 응답 페이로드에서 샷 블록을 제외하도록 설정합니다. | | include_positions | 아니오 | 부울 (선택 사항) | - | 선택적 컴팩트 모드 설정. 응답 페이로드에서 위치 배열을 제외하도록 설정합니다. | | zodiac_system | 아니오 | 문자열 (선택 사항) | tropical | Zodiac computation mode. Allowed: 사이드럴, 트로피컬 | | ayanamsa | 아니오 | 문자열 (선택 사항) | lahiri | Sidereal ayanamsa system (used when sidereal mode is selected). Allowed: 라히리, 파건_브래들리, 크리슈나무르티, 라마, 유크테스워 | | house_system | 아니오 | 문자열 (선택 사항) | placidus | House calculation system. Allowed: 플라시우스, 홀_사인, 이퀄, 코흐 | | node_type | 아니오 | 문자열 (선택 사항) | true | Lunar node mode. Allowed: true, 미안 | | tenant_id | 아니오 | 문자열 (선택 사항) | docs-smoke | 선택적 테넌트/캐시 네임스페이스 오버라이드. | | birth_time | 아니오 | 문자열 (선택 사항) | 13:45 | Birth time (HH:MM, 24h). Pattern: ^\d{2}:\d{2}$ || birth_latitude | 아니오 | 숫자 (선택 사항) | 40.7128 | Birth latitude. Provide with 출생 경도. | | birth_longitude | 아니오 | 숫자 (선택 사항) | -74.0060 | Birth longitude. Provide with 출생 위도. | | birth_timezone | 아니오 | 문자열 (선택 사항) | America/New_York | 출생 시간의 타임존 오버라이드 (IANA). |

맞춤형 모드 예시 (권장)

맞춤형 모드는 추가적인 결정론적 스위스 에페메리스 벡터를 활성화합니다 (예: 하우스, 타이밍 벡터 및 선택 사항인 천문학적 레이어). 즉, 같은 별자리 가진 두 사용자는 출생 정보가 다르면 다른 보고서 편집본을 받을 수 있습니다.

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

일반 모드 예시 (일반적인 별자리 기반)

일반 모드는 프로덕션 환경에서 사용 가능하며, 개인화되지 않은 레이어를 사용하여 계산됩니다. 별자리를 기준으로 하므로 같은 별자리의 사용자는 동일한 기간에 대해 동일한 기본 분석을 받습니다. 사용자별 출생 벡터 차이 없이 안정적인 별자리 수준의 결과를 얻고 싶을 때 이 모드를 사용하십시오.

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

예시 응답

{
  "report_type": "horoscope",
  "sign": "CANCER",
  "period": "daily",
  "start": "2026-04-07T00:00:00",
  "end": "2026-04-08T00:00:00",
  "data": {
    "period": "daily",
    "start": "2026-04-07T00:00:00",
    "end": "2026-04-08T00:00:00",
    "snapshot": {
      "timestamp": "2026-04-07T12:00:00",
      "zodiac_system": "tropical",
      "ayanamsa": "Lahiri",
      "ayanamsa_value": 24.223995,
      "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": 17.67891408687769,
          "tropical_longitude": 17.67891408687769,
          "sidereal_longitude": 353.45329281526136,
          "latitude": -0.00018276798177510123,
          "speed": 0.9833568354478606,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 17.67891408687769,
          "house": 8,
          "retrograde": false,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "Moon",
          "longitude": 258.09451271335615,
          "tropical_longitude": 258.09451271335615,
          "sidereal_longitude": 233.86889144173983,
          "latitude": -5.086088956732362,
          "speed": 11.868267695403189,
          "sign": "SAGITTARIUS",
          "tropical_sign": "SAGITTARIUS",
          "sidereal_sign": "SCORPIO",
          "degree_in_sign": 18.094512713356153,
          "house": 4,
          "retrograde": false,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "Mercury",
          "longitude": 350.21547763315976,
          "tropical_longitude": 350.21547763315976,
          "sidereal_longitude": 325.9898563615435,
          "latitude": -2.1233831147322704,
          "speed": 1.1441595806289344,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "AQUARIUS",
          "degree_in_sign": 20.215477633159765,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "Venus",
          "longitude": 39.63105778306125,
          "tropical_longitude": 39.63105778306125,
          "sidereal_longitude": 15.40543651144496,
          "latitude": -0.16631386594268807,
          "speed": 1.227182000669275,
          "sign": "TAURUS",
          "tropical_sign": "TAURUS",
          "sidereal_sign": "ARIES",
          "degree_in_sign": 9.631057783061252,
          "house": 9,
          "retrograde": false,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "Mars",
          "longitude": 358.19455403951764,
          "tropical_longitude": 358.19455403951764,
          "sidereal_longitude": 333.9689327679014,
          "latitude": -1.0186039576358337,
          "speed": 0.7797196259007054,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 28.19455403951764,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "Jupiter",
          "longitude": 106.2641222810335,
          "tropical_longitude": 106.2641222810335,
          "sidereal_longitude": 82.0385010094172,
          "latitude": 0.3755783866557581,
          "speed": 0.08334497510885186,
          "sign": "CANCER",
          "tropical_sign": "CANCER",
          "sidereal_sign": "GEMINI",
          "degree_in_sign": 16.264122281033494,
          "house": 11,
          "retrograde": false,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "Saturn",
          "longitude": 6.3531106501695085,
          "tropical_longitude": 6.3531106501695085,
          "sidereal_longitude": 342.12748937855326,
          "latitude": -2.1340493104865295,
          "speed": 0.12325699486012033,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 6.3531106501695085,
          "house": 8,
          "retrograde": false,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "Uranus",
          "longitude": 59.05468596185015,
          "tropical_longitude": 59.05468596185015,
          "sidereal_longitude": 34.82906469023387,
          "latitude": -0.16927301857817117,
          "speed": 0.046892177579762266,
          "sign": "TAURUS",
          "tropical_sign": "TAURUS",
          "sidereal_sign": "TAURUS",
          "degree_in_sign": 29.054685961850147,
          "house": 9,
          "retrograde": false,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "Neptune",
          "longitude": 2.445978539364558,
          "tropical_longitude": 2.445978539364558,
          "sidereal_longitude": 338.2203572677482,
          "latitude": -1.3093414992158183,
          "speed": 0.03682975638035889,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 2.445978539364558,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "Pluto",
          "longitude": 305.31247973780876,
          "tropical_longitude": 305.31247973780876,
          "sidereal_longitude": 281.08685846619244,
          "latitude": -3.9668545785319056,
          "speed": 0.013390028981939285,
          "sign": "AQUARIUS",
          "tropical_sign": "AQUARIUS",
          "sidereal_sign": "CAPRICORN",
          "degree_in_sign": 5.312479737808758,
          "house": 5,
          "retrograde": false,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "Chiron",
          "longitude": 26.091048285218868,
          "tropical_longitude": 26.091048285218868,
          "sidereal_longitude": 1.8654270136025883,
          "latitude": 0.36031159693034776,
          "speed": 0.05961150681553471,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "ARIES",
          "degree_in_sign": 26.091048285218868,
          "house": 8,
          "retrograde": false,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "Ceres",
          "longitude": 39.05528604725739,
          "tropical_longitude": 39.05528604725739,
          "sidereal_longitude": 14.829664775641097,
          "latitude": -4.520137741417602,
          "speed": 0.39739478904980524,
          "sign": "TAURUS",
          "tropical_sign": "TAURUS",
          "sidereal_sign": "ARIES",
          "degree_in_sign": 9.05528604725739,
          "house": 9,
          "retrograde": false,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "North Node",
          "longitude": 338.172881863159,
          "tropical_longitude": 338.172881863159,
          "sidereal_longitude": 313.94726059154266,
          "latitude": 0.0,
          "speed": -0.07875036540025775,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "AQUARIUS",
          "degree_in_sign": 8.172881863158977,
          "house": 6,
          "retrograde": true,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "South Node",
          "longitude": 158.17288186315898,
          "tropical_longitude": 158.17288186315898,
          "sidereal_longitude": 133.94726059154266,
          "latitude": 0.0,
          "speed": -0.07875036540025775,
          "sign": "VIRGO",
          "tropical_sign": "VIRGO",
          "sidereal_sign": "LEO",
          "degree_in_sign": 8.172881863158977,
          "house": 12,
          "retrograde": true,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "Lilith",
          "longitude": 252.06829325236245,
          "tropical_longitude": 252.06829325236245,
          "sidereal_longitude": 227.84267198074616,
          "latitude": -5.125862749467886,
          "speed": 0.1120200246167111,
          "sign": "SAGITTARIUS",
          "tropical_sign": "SAGITTARIUS",
          "sidereal_sign": "SCORPIO",
          "degree_in_sign": 12.068293252362452,
          "house": 4,
          "retrograde": false,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "Pallas",
          "longitude": 353.98254997430996,
          "tropical_longitude": 353.98254997430996,
          "sidereal_longitude": 329.75692870269364,
          "latitude": 3.567904375511222,
          "speed": 0.3272361431266616,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "AQUARIUS",
          "degree_in_sign": 23.98254997430996,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "Juno",
          "longitude": 302.419881789253,
          "tropical_longitude": 302.419881789253,
          "sidereal_longitude": 278.1942605176367,
          "latitude": 11.602373687281121,
          "speed": 0.2538081243350781,
          "sign": "AQUARIUS",
          "tropical_sign": "AQUARIUS",
          "sidereal_sign": "CAPRICORN",
          "degree_in_sign": 2.4198817892529974,
          "house": 5,
          "retrograde": false,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "Vesta",
          "longitude": 343.5449007785474,
          "tropical_longitude": 343.5449007785474,
          "sidereal_longitude": 319.31927950693114,
          "latitude": -3.8172465060813967,
          "speed": 0.47752668566381934,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "AQUARIUS",
          "degree_in_sign": 13.544900778547401,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.223994987731373
        },
        {
          "name": "Eris",
          "longitude": 25.19015049136156,
          "tropical_longitude": 25.19015049136156,
          "sidereal_longitude": 0.9645292197452754,
          "latitude": -10.394645053592132,
          "speed": 0.010837141514527466,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "ARIES",
          "degree_in_sign": 25.19015049136156,
          "house": 8,
          "retrograde": false,
          "ayanamsa_value": 24.223994987731373
        }
      ],
      "aspects": [
        {
          "body1": "Sun",
          "body2": "Moon",
          "aspect": "trine",
          "orb": 0.42,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Sun",
          "body2": "Mercury",
          "aspect": "semi-sextile",
          "orb": 2.54,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Sun",
          "body2": "Jupiter",
          "aspect": "square",
          "orb": 1.41,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Sun",
          "body2": "Lilith",
          "aspect": "trine",
          "orb": 5.61,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Sun",
          "body2": "Eris",
          "aspect": "conjunction",
          "orb": 7.51,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Mercury",
          "aspect": "square",
          "orb": 2.12,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Jupiter",
          "aspect": "quincunx",
          "orb": 1.83,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Pluto",
          "aspect": "semi-square",
          "orb": 2.22,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Chiron",
          "aspect": "trine",
          "orb": 8.0,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Lilith",
          "aspect": "conjunction",
          "orb": 6.03,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Pallas",
          "aspect": "square",
          "orb": 5.89,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Juno",
          "aspect": "semi-square",
          "orb": 0.67,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Vesta",
          "aspect": "square",
          "orb": 4.55,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Eris",
          "aspect": "trine",
          "orb": 7.1,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Mars",
          "aspect": "conjunction",
          "orb": 7.98,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Jupiter",
          "aspect": "trine",
          "orb": 3.95,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Pluto",
          "aspect": "semi-square",
          "orb": 0.1,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Pallas",
          "aspect": "conjunction",
          "orb": 3.77,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Juno",
          "aspect": "semi-square",
          "orb": 2.8,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Vesta",
          "aspect": "conjunction",
          "orb": 6.67,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Pluto",
          "aspect": "square",
          "orb": 4.32,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Ceres",
          "aspect": "conjunction",
          "orb": 0.58,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "North Node",
          "aspect": "sextile",
          "orb": 1.46,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "South Node",
          "aspect": "trine",
          "orb": 1.46,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Lilith",
          "aspect": "quincunx",
          "orb": 2.44,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Pallas",
          "aspect": "semi-square",
          "orb": 0.65,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Juno",
          "aspect": "square",
          "orb": 7.21,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Vesta",
          "aspect": "sextile",
          "orb": 3.91,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Uranus",
          "aspect": "sextile",
          "orb": 0.86,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Neptune",
          "aspect": "conjunction",
          "orb": 4.25,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Chiron",
          "aspect": "semi-sextile",
          "orb": 2.1,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Pallas",
          "aspect": "conjunction",
          "orb": 4.21,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Juno",
          "aspect": "sextile",
          "orb": 4.23,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Jupiter",
          "body2": "Uranus",
          "aspect": "semi-square",
          "orb": 2.21,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Jupiter",
          "body2": "Pallas",
          "aspect": "trine",
          "orb": 7.72,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Jupiter",
          "body2": "Vesta",
          "aspect": "trine",
          "orb": 2.72,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Neptune",
          "aspect": "conjunction",
          "orb": 3.91,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Pluto",
          "aspect": "sextile",
          "orb": 1.04,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Ceres",
          "aspect": "semi-sextile",
          "orb": 2.7,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "North Node",
          "aspect": "semi-sextile",
          "orb": 1.82,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "South Node",
          "aspect": "quincunx",
          "orb": 1.82,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Lilith",
          "aspect": "trine",
          "orb": 5.72,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Juno",
          "aspect": "sextile",
          "orb": 3.93,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Neptune",
          "aspect": "sextile",
          "orb": 3.39,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Pluto",
          "aspect": "trine",
          "orb": 6.26,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Chiron",
          "aspect": "semi-sextile",
          "orb": 2.96,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Pallas",
          "aspect": "sextile",
          "orb": 5.07,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Juno",
          "aspect": "trine",
          "orb": 3.37,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Neptune",
          "body2": "Pluto",
          "aspect": "sextile",
          "orb": 2.87,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Neptune",
          "body2": "Juno",
          "aspect": "sextile",
          "orb": 0.03,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Pluto",
          "body2": "Ceres",
          "aspect": "square",
          "orb": 3.74,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Pluto",
          "body2": "North Node",
          "aspect": "semi-sextile",
          "orb": 2.86,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Pluto",
          "body2": "South Node",
          "aspect": "quincunx",
          "orb": 2.86,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Pluto",
          "body2": "Juno",
          "aspect": "conjunction",
          "orb": 2.89,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "North Node",
          "aspect": "semi-square",
          "orb": 2.92,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "South Node",
          "aspect": "sesquiquadrate",
          "orb": 2.92,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Lilith",
          "aspect": "sesquiquadrate",
          "orb": 0.98,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Pallas",
          "aspect": "semi-sextile",
          "orb": 2.11,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Juno",
          "aspect": "square",
          "orb": 6.33,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Vesta",
          "aspect": "semi-square",
          "orb": 2.45,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Eris",
          "aspect": "conjunction",
          "orb": 0.9,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "North Node",
          "aspect": "sextile",
          "orb": 0.88,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "South Node",
          "aspect": "trine",
          "orb": 0.88,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "Pallas",
          "aspect": "semi-square",
          "orb": 0.07,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "Juno",
          "aspect": "square",
          "orb": 6.64,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "Vesta",
          "aspect": "sextile",
          "orb": 4.49,
          "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.9,
          "exact": false,
          "applying": false
        },
        {
          "body1": "North Node",
          "body2": "Vesta",
          "aspect": "conjunction",
          "orb": 5.37,
          "exact": false,
          "applying": false
        },
        {
          "body1": "North Node",
          "body2": "Eris",
          "aspect": "semi-square",
          "orb": 2.02,
          "exact": false,
          "applying": false
        },
        {
          "body1": "South Node",
          "body2": "Lilith",
          "aspect": "square",
          "orb": 3.9,
          "exact": false,
          "applying": false
        },
        {
          "body1": "South Node",
          "body2": "Vesta",
          "aspect": "opposition",
          "orb": 5.37,
          "exact": false,
          "applying": false
        },
        {
          "body1": "South Node",
          "body2": "Eris",
          "aspect": "sesquiquadrate",
          "orb": 2.02,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Lilith",
          "body2": "Vesta",
          "aspect": "square",
          "orb": 1.48,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Lilith",
          "body2": "Eris",
          "aspect": "sesquiquadrate",
          "orb": 1.88,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Pallas",
          "body2": "Eris",
          "aspect": "semi-sextile",
          "orb": 1.21,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Juno",
          "body2": "Eris",
          "aspect": "square",
          "orb": 7.23,
          "exact": false,
          "applying": false
        }
      ]
    },
    "metrics": {
      "sample_count": 1,
      "aspect_counts": {
        "trine": 12,
        "semi-sextile": 8,
        "square": 13,
        "conjunction": 12,
        "quincunx": 4,
        "semi-square": 10,
        "sextile": 12,
        "sesquiquadrate": 4,
        "opposition": 2
      },
      "retrograde_bodies": [
        "North Node",
        "South Node"
      ],
      "sign_changes": []
    },
    "notable_events": [
      "Ceres sextile North Node exact on Apr 07",
      "Neptune sextile Juno exact on Apr 07",
      "Sun trine Moon exact on Apr 07",
      "Mars sextile Uranus exact on Apr 07",
      "Ceres trine South Node exact on Apr 07",
      "Chiron conjunction Eris exact on Apr 07",
      "Venus conjunction Ceres exact on Apr 07",
      "North Node retrograde emphasis",
      "South Node retrograde emphasis"
    ],
    "period_events": [
      {
        "timestamp": "2026-04-07T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Ceres",
        "body2": "North Node",
        "sign": null,
        "aspect": "sextile",
        "exactness": 0.88,
        "narrative_priority": 1.731,
        "section_bias": {
          "general": 1.4,
          "career": 0.4,
          "love_singles": 0.3
        },
        "description": "Ceres sextile North Node exact on Apr 07"
      },
      {
        "timestamp": "2026-04-07T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Neptune",
        "body2": "Juno",
        "sign": null,
        "aspect": "sextile",
        "exactness": 0.03,
        "narrative_priority": 1.719,
        "section_bias": {
          "general": 1.0,
          "health": 0.5,
          "lifestyle": 0.6
        },
        "description": "Neptune sextile Juno exact on Apr 07"
      },
      {
        "timestamp": "2026-04-07T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Sun",
        "body2": "Moon",
        "sign": null,
        "aspect": "trine",
        "exactness": 0.42,
        "narrative_priority": 1.699,
        "section_bias": {
          "general": 2.3,
          "career": 0.5,
          "lifestyle": 0.5,
          "love_singles": 0.4,
          "love_couples": 0.4,
          "friendship": 0.3,
          "health": 0.3
        },
        "description": "Sun trine Moon exact on Apr 07"
      },
      {
        "timestamp": "2026-04-07T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Mars",
        "body2": "Uranus",
        "sign": null,
        "aspect": "sextile",
        "exactness": 0.86,
        "narrative_priority": 1.677,
        "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 07"
      },
      {
        "timestamp": "2026-04-07T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Ceres",
        "body2": "South Node",
        "sign": null,
        "aspect": "trine",
        "exactness": 0.88,
        "narrative_priority": 1.621,
        "section_bias": {
          "general": 1.2999999999999998,
          "lifestyle": 0.4,
          "friendship": 0.3
        },
        "description": "Ceres trine South Node exact on Apr 07"
      },
      {
        "timestamp": "2026-04-07T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Chiron",
        "body2": "Eris",
        "sign": null,
        "aspect": "conjunction",
        "exactness": 0.9,
        "narrative_priority": 1.62,
        "section_bias": {
          "general": 1.0,
          "health": 0.8,
          "love_couples": 0.4
        },
        "description": "Chiron conjunction Eris exact on Apr 07"
      },
      {
        "timestamp": "2026-04-07T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Venus",
        "body2": "Ceres",
        "sign": null,
        "aspect": "conjunction",
        "exactness": 0.58,
        "narrative_priority": 1.581,
        "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 07"
      },
      {
        "timestamp": "2026-04-07T12: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-07T12: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": "square",
      "daily_house_focus": "ninth_house"
    }
  },
  "sections": [
    {
      "section": "health",
      "title": "Health daily outlook: protective and intuitive (high)",
      "summary": "Cancer moves through April 7 with a high-voltage rhythm in energy management, recovery, and habits. Protect your baseline energy before adding more commitments. Sun trine Moon peaks on Apr 07. For health rhythm, This retrograde review cycle rewards cleanup now so later progress is cleaner; For wellbeing, translate this into recovery, regulation, and sustainable pacing. Your body is speaking to you—listen closely to the signals of fatigue or discomfort. Retrograde review forces you to confront how your daily habits shape your energy levels. That shift improves regulation and recovery. At the same time, At body-regulation level, square dynamics add pressure, but the pressure is usable with clean pacing; For health, route this through sustainable habits and recovery-aware pacing. When was the last time I moved without strain? The square aspect forces you to confront this honestly. That shift improves regulation and recovery. Prioritize one thing that restores your energy: a warm shower, a short nap, or a quiet moment to journal. Retrograde review demands self-care. That shift improves regulation and recovery.",
      "deep_report": "The daily interpretation starts with headline pressure and then tightens execution through secondary context. In health terms, keep energy as the anchor theme.\n\nLater in the day, this influence becomes actionable: The opening thesis centers on transit pattern of retrograde review. For health rhythm, This retrograde review cycle rewards cleanup now so later progress is cleaner; For wellbeing, translate this into recovery, regulation, and sustainable pacing. In wellbeing terms, prioritize Your body is speaking to you—listen closely to the signals of fatigue or discomfort. Translate it into routine through Prioritize one thing that restores your energy: a warm shower, a short nap, or a quiet moment to journal. Keep how do you typically respond when your body signals fatigue present and avoid Emotional overload can manifest as physical tension. With Ceres sextile North Node peaks on Apr 07 active, let it reset recovery pacing in energy management, recovery, and habits for today.\n\nLater in the day, this influence becomes actionable; the practical consequence is this: A meaningful counter-pressure comes through aspect climate of square. At body-regulation level, square dynamics add pressure, but the pressure is usable with clean pacing; For health, route this through sustainable habits and recovery-aware pacing. Recovery friction appears near Your health isn’t just about strength; it’s about the quiet resilience of your nervous system. Stabilize rhythm with Drink a warm herbal tea (ginger or chamomile) to soothe digestion and calm the nervous system. Use Ask yourself: When was the last time I moved without strain to reduce Skipping rest or pushing through discomfort will amplify the strain. As Neptune sextile Juno peaks on Apr 07 peaks, rebalance effort and restoration in energy management, recovery, and habits today.\n\nFor a clean day-end, keep choices aligned with the central influence and tune only what matters.",
      "highlights": [
        "This retrograde review cycle rewards cleanup now so later progress is cleaner.",
        "Square dynamics add pressure, but the pressure is usable with clean pacing.",
        "Moon placement in Sagittarius shapes responses through bold, direct, and action-led instincts.",
        "House activation highlights beliefs, expansion, travel, and perspective shifts as the most activated life areas this cycle."
      ],
      "cautions": [
        "Emotional overload can manifest as physical tension. If you’re holding stress in your shoulders, neck, or jaw, release it—consciously or through movement.",
        "Skipping rest or pushing through discomfort will amplify the strain. Today’s energy is for recovery, not achievement.",
        "Protect your energy by setting boundaries around physical demands when your emotions are volatile. Overdoing it now could lead to burnout, especially since your Moon’s intensity is amplifying your sensitivity.",
        "When you encounter ideas that conflict with your current worldview, resist the urge to dismiss them outright—let them sit with you first."
      ],
      "actions": [
        "Prioritize one thing that restores your energy: a warm shower, a short nap, or a quiet moment to journal. Retrograde review demands self-care.",
        "Drink a warm herbal tea (ginger or chamomile) to soothe digestion and calm the nervous system. Hydration is non-negotiable.",
        "Close your day with a 10-minute routine: write down your emotions, then release them with deep breathing or a warm bath. This helps process the Moon’s energy without overstimulating your body.",
        "If you’re stuck in a routine, force yourself to engage with something unfamiliar—take a detour, read a foreign text, or visit a place you’ve never been."
      ],
      "scores": {
        "momentum": 100.0,
        "clarity": 42.9,
        "opportunity": 100.0,
        "focus": 83.3,
        "stability": 30.5,
        "connection": 77.2
      },
      "intensity": "high",
      "factor_details": [
        {
          "factor_type": "sun_in_sign",
          "factor_value": "ARIES",
          "weight": 1.0,
          "factor_insights": {
            "motivation": "The moon’s Cancer pull nudges you to trust your instincts when your body whispers about what it truly needs.",
            "caution": "Overstrain your muscles today, and you’ll pay in stiffness later. Listen to the subtle signals—your joints are your first line of defense.",
            "reflection": "Notice where tension lingers—shoulders, jaw, or spine? Release it in 2-minute micro-movements (e.g., cat-cow, seated twists).",
            "daily_tip": "Wear supportive shoes today—your feet carry your Cancer’s emotional weight. Swap them if they’re rigid.",
            "affirmation": "Today, I listen to my body’s wisdom—it guides me toward balance, not burnout. Trust its rhythm."
          }
        },
        {
          "factor_type": "moon_in_sign",
          "factor_value": "SAGITTARIUS",
          "weight": 1.15,
          "factor_insights": {
            "motivation": "Your body is a vessel for emotional energy—right now, the Moon’s shift through Sagittarius demands you honor its rhythm. When your emotions surge, they’re not chaos but fuel for deeper self-awareness.",
            "caution": "Protect your energy by setting boundaries around physical demands when your emotions are volatile. Overdoing it now could lead to burnout, especially since your Moon’s intensity is amplifying your sensitivity.",
            "reflection": "Ask yourself: What does my body need right now? Your Moon in Sagittarius wants adventure, but your body may need stillness. Balance these energies by scheduling rest and movement intentionally.",
            "daily_tip": "End your day with a 10-minute routine: write down your emotions, then release them with deep breathing or a warm bath. This helps process the Moon’s energy without overstimulating your body.",
            "affirmation": "My body and mind are aligned in this moment. I honor my emotions as they guide my actions, and I trust my body’s wisdom to lead me to rest or movement when needed."
          }
        },
        {
          "factor_type": "rising_sign",
          "factor_value": "VIRGO",
          "weight": 1.0,
          "factor_insights": {
            "motivation": "The moon in Cancer’s watery soil demands emotional balance; prioritize sleep and hydration to ground your energy.",
            "caution": "Overanalyzing symptoms may lead to stress; trust your body’s signals without overthinking diagnoses.",
            "reflection": "When was the last time you ate something nourishing without guilt? Revisit that moment—it’s a reminder of balance.",
            "daily_tip": "Start your day with a glass of water to kickstart digestion—Virgo’s efficiency meets Cancer’s need for hydration.",
            "affirmation": "I trust my instincts when it comes to food; my health thrives when I act with intention."
          }
        },
        {
          "factor_type": "transits_archetypes",
          "factor_value": "retrograde_review",
          "weight": 1.3,
          "factor_insights": {
            "motivation": "Your body is speaking to you—listen closely to the signals of fatigue or discomfort. Retrograde review forces you to confront how your daily habits shape your energy levels.",
            "caution": "Emotional overload can manifest as physical tension. If you’re holding stress in your shoulders, neck, or jaw, release it—consciously or through movement.",
            "reflection": "How do you typically respond when your body signals fatigue? Are you dismissive, or do you listen? Retrograde review forces you to choose consistency over convenience.",
            "daily_tip": "Prioritize one thing that restores your energy: a warm shower, a short nap, or a quiet moment to journal. Retrograde review demands self-care.",
            "affirmation": "My energy is sustainable, and I choose rest as powerfully as I choose movement."
          }
        },
        {
          "factor_type": "aspects",
          "factor_value": "square",
          "weight": 1.2,
          "factor_insights": {
            "motivation": "Your health isn’t just about strength; it’s about the quiet resilience of your nervous system. Today, it needs protection.",
            "caution": "Skipping rest or pushing through discomfort will amplify the strain. Today’s energy is for recovery, not achievement.",
            "reflection": "Ask yourself: When was the last time I moved without strain? The square aspect forces you to confront this honestly.",
            "daily_tip": "Drink a warm herbal tea (ginger or chamomile) to soothe digestion and calm the nervous system. Hydration is non-negotiable.",
            "affirmation": "I honor my body’s wisdom and listen to its needs today. Every movement and rest is intentional, not forced."
          }
        },
        {
          "factor_type": "daily_house_focus",
          "factor_value": "ninth_house",
          "weight": 1.08,
          "factor_insights": {
            "motivation": "Embrace the curiosity that comes with this house’s intensity—your curiosity will expand your capacity to engage with the world’s complexities.",
            "caution": "When you encounter ideas that conflict with your current worldview, resist the urge to dismiss them outright—let them sit with you first.",
            "reflection": "Today, your ninth house asks: What stories am I telling myself that no longer align with my truth? Let old beliefs dissolve like water in moonlight.",
            "daily_tip": "If you’re stuck in a routine, force yourself to engage with something unfamiliar—take a detour, read a foreign text, or visit a place you’ve never been.",
            "affirmation": "I trust that my ninth house year will reveal truths I’ve been too afraid to seek, and I embrace the discomfort of growth."
          }
        }
      ],
      "debug_trace": null
    }
  ],
  "_enterprise": {
    "client": "The Numerology API",
    "plan": "Enterprise",
    "request_id": "a7e4d9230bc5d7e7",
    "quota": "unlimited",
    "usage_tracking": false
  },
  "_api_metadata_": {
    "api_name": "The Numerology API by Dakidarts®",
    "api_version": "1.0.1",
    "endpoint_name": "horoscope_health_today_post",
    "endpoint_description": "Provides today'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.704187+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": ""
  }
}

관련 엔드포인트