콘텐츠로 이동

주간 운세 개요

주간 운세 개요 엔드포인트는 자체 제작된 운세 엔진에서 제공하는, 주간 운세를 중심으로 한 일반적인 개요 정보를 반환합니다.

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

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

엔드포인트

방법 경로
POST https://api.numerologyapi.com/api/v1/horoscope/reports/transits/weekly/overview

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

|---|---|---|---|---| | 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. 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 | No | 숫자 (선택 사항) | 40.7128 | Birth latitude. Provide with 출생 경도. | | birth_longitude | No | 숫자 (선택 사항) | -74.0060 | Birth longitude. Provide with 출생 위도. | | birth_timezone | No | 문자열 (선택 사항) | America/New_York | 출생 시간 IANA 시간대 지정. | | target_date | No | 문자열 (선택 사항) | 2026-04-08 | Period anchor date (YYYY-MM-DD). If omitted, gateway uses current date in 시간대. | | transit | No | 문자열 (선택 사항) | retrograde_review | Optional override for engine focus. Allowed: 액션 활성화, 어드벤처 콜, 커뮤니케이션 흐름, 컨준كشن 도전, 컨준كشن 성장, 창의성 흐름, 결정 지점, 규율 제한, 감정 흐름, 재정 집중, 건강 인식, 자기 성찰 단계, 학습 기회, 네트워킹 에너지, 대립 갈등, 관계 긴장, 역행 검토, 섹틸 기회, 영적 정렬, 사이드 긴장, 트라인 조화 |

응답

엔진 페이로드 및 게이트웨이 메타데이터를 반환합니다:

  • _enterprise
  • _api_metadata_

개인화 활성화개인 맞춤형 운세 보고서를 생성하려면 (시그널 수준의 일반화된 출력 대신), 다음을 포함하십시오:

  • birth_time
  • birth_latitudebirth_longitude를 함께
  • 선택적으로 birth_timezone (timezone로 대체)

위의 출생 벡터 필드가 누락되면, 엔드포인트는 여전히 일반화된 시그널 기반 레이어를 사용하여 프로덕션 환경에서 작동합니다.

개인 맞춤 모드 예시 (권장)

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

curl --request POST \
  --url "https://api.numerologyapi.com/api/v1/horoscope/reports/transits/weekly/overview?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",
  "target_date": "2026-04-08",
  "transit": "trine_harmony"
}'

일반 모드 예시 (일반적인 시그널 기반)

일반 모드는 프로덕션 환경에서 사용 가능하며, 개인 맞춤형 출생 벡터 옵션을 필요로 하지 않는 천문학적 레이어를 사용하여 계산됩니다. 이는 시그널 기반이므로, 동일한 시그널을 가진 사용자는 동일 기간에 대해 동일한 읽기 편집본을 받습니다.

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

예시 응답

{
  "report_type": "transit",
  "sign": "CANCER",
  "period": "weekly",
  "start": "2026-04-06T00:00:00",
  "end": "2026-04-13T00:00:00",
  "data": {
    "period": "weekly",
    "start": "2026-04-06T00:00:00",
    "end": "2026-04-13T00:00:00",
    "snapshot": {
      "timestamp": "2026-04-09T12:00:00",
      "zodiac_system": "tropical",
      "ayanamsa": "Lahiri",
      "ayanamsa_value": 24.224071,
      "ayanamsa_system": "lahiri",
      "sun_sign": "ARIES",
      "moon_sign": "CAPRICORN",
      "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": 19.64475544233151,
          "tropical_longitude": 19.64475544233151,
          "sidereal_longitude": 355.419022486965,
          "latitude": -0.00015625541229057335,
          "speed": 0.9823746533213473,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 19.64475544233151,
          "house": 8,
          "retrograde": false,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "Moon",
          "longitude": 281.8864373690246,
          "tropical_longitude": 281.8864373690246,
          "sidereal_longitude": 257.6607044136581,
          "latitude": -4.295765307420144,
          "speed": 11.97309170457133,
          "sign": "CAPRICORN",
          "tropical_sign": "CAPRICORN",
          "sidereal_sign": "SAGITTARIUS",
          "degree_in_sign": 11.886437369024577,
          "house": 4,
          "retrograde": false,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "Mercury",
          "longitude": 352.5802572359631,
          "tropical_longitude": 352.5802572359631,
          "sidereal_longitude": 328.3545242805966,
          "latitude": -2.2971296709056848,
          "speed": 1.2194950548775936,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "AQUARIUS",
          "degree_in_sign": 22.580257235963074,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "Venus",
          "longitude": 42.084325282594584,
          "tropical_longitude": 42.084325282594584,
          "sidereal_longitude": 17.858592327228074,
          "latitude": -0.0777587361654963,
          "speed": 1.225972896324446,
          "sign": "TAURUS",
          "tropical_sign": "TAURUS",
          "sidereal_sign": "ARIES",
          "degree_in_sign": 12.084325282594584,
          "house": 9,
          "retrograde": false,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "Mars",
          "longitude": 359.7532634372632,
          "tropical_longitude": 359.7532634372632,
          "sidereal_longitude": 335.5275304818967,
          "latitude": -1.009787931441409,
          "speed": 0.7788692227227461,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 29.753263437263172,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "Jupiter",
          "longitude": 106.43632944702173,
          "tropical_longitude": 106.43632944702173,
          "sidereal_longitude": 82.21059649165524,
          "latitude": 0.37689533905247297,
          "speed": 0.08873292598110066,
          "sign": "CANCER",
          "tropical_sign": "CANCER",
          "sidereal_sign": "GEMINI",
          "degree_in_sign": 16.436329447021734,
          "house": 11,
          "retrograde": false,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "Saturn",
          "longitude": 6.5992511458486,
          "tropical_longitude": 6.5992511458486,
          "sidereal_longitude": 342.3735181904821,
          "latitude": -2.1361921758191063,
          "speed": 0.1227594968320901,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 6.5992511458486,
          "house": 8,
          "retrograde": false,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "Uranus",
          "longitude": 59.14957632153192,
          "tropical_longitude": 59.14957632153192,
          "sidereal_longitude": 34.9238433661654,
          "latitude": -0.16879422828172888,
          "speed": 0.04787966917556078,
          "sign": "TAURUS",
          "tropical_sign": "TAURUS",
          "sidereal_sign": "TAURUS",
          "degree_in_sign": 29.149576321531917,
          "house": 9,
          "retrograde": false,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "Neptune",
          "longitude": 2.5194795745925687,
          "tropical_longitude": 2.5194795745925687,
          "sidereal_longitude": 338.29374661922606,
          "latitude": -1.3099498284729205,
          "speed": 0.03655388844960104,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 2.5194795745925687,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "Pluto",
          "longitude": 305.3384917540674,
          "tropical_longitude": 305.3384917540674,
          "sidereal_longitude": 281.1127587987009,
          "latitude": -3.9731815545209166,
          "speed": 0.012508214748788368,
          "sign": "AQUARIUS",
          "tropical_sign": "AQUARIUS",
          "sidereal_sign": "CAPRICORN",
          "degree_in_sign": 5.338491754067377,
          "house": 5,
          "retrograde": false,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "Chiron",
          "longitude": 26.210606894426327,
          "tropical_longitude": 26.210606894426327,
          "sidereal_longitude": 1.9848739390598138,
          "latitude": 0.3579307208025253,
          "speed": 0.05982722032578317,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "ARIES",
          "degree_in_sign": 26.210606894426327,
          "house": 8,
          "retrograde": false,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "Ceres",
          "longitude": 39.85140044565914,
          "tropical_longitude": 39.85140044565914,
          "sidereal_longitude": 15.625667490292626,
          "latitude": -4.459698464834262,
          "speed": 0.39859821530256523,
          "sign": "TAURUS",
          "tropical_sign": "TAURUS",
          "sidereal_sign": "ARIES",
          "degree_in_sign": 9.851400445659138,
          "house": 9,
          "retrograde": false,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "North Node",
          "longitude": 338.06468807384545,
          "tropical_longitude": 338.06468807384545,
          "sidereal_longitude": 313.838955118479,
          "latitude": 0.0,
          "speed": -0.02522967145532394,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "AQUARIUS",
          "degree_in_sign": 8.064688073845446,
          "house": 6,
          "retrograde": true,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "South Node",
          "longitude": 158.06468807384545,
          "tropical_longitude": 158.06468807384545,
          "sidereal_longitude": 133.83895511847902,
          "latitude": 0.0,
          "speed": -0.02522967145532394,
          "sign": "VIRGO",
          "tropical_sign": "VIRGO",
          "sidereal_sign": "LEO",
          "degree_in_sign": 8.064688073845446,
          "house": 12,
          "retrograde": true,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "Lilith",
          "longitude": 252.29244356989153,
          "tropical_longitude": 252.29244356989153,
          "sidereal_longitude": 228.066710614525,
          "latitude": -5.123204974212474,
          "speed": 0.11201863529358284,
          "sign": "SAGITTARIUS",
          "tropical_sign": "SAGITTARIUS",
          "sidereal_sign": "SCORPIO",
          "degree_in_sign": 12.292443569891532,
          "house": 4,
          "retrograde": false,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "Pallas",
          "longitude": 354.6361388995335,
          "tropical_longitude": 354.6361388995335,
          "sidereal_longitude": 330.410405944167,
          "latitude": 3.4361514264197948,
          "speed": 0.3262291903539235,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "PISCES",
          "degree_in_sign": 24.636138899533478,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "Juno",
          "longitude": 302.92237426346543,
          "tropical_longitude": 302.92237426346543,
          "sidereal_longitude": 278.6966413080989,
          "latitude": 11.673348190740995,
          "speed": 0.24853964788414096,
          "sign": "AQUARIUS",
          "tropical_sign": "AQUARIUS",
          "sidereal_sign": "CAPRICORN",
          "degree_in_sign": 2.9223742634654286,
          "house": 5,
          "retrograde": false,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "Vesta",
          "longitude": 344.4979671991508,
          "tropical_longitude": 344.4979671991508,
          "sidereal_longitude": 320.27223424378434,
          "latitude": -3.8728401831323054,
          "speed": 0.47541753950246307,
          "sign": "PISCES",
          "tropical_sign": "PISCES",
          "sidereal_sign": "AQUARIUS",
          "degree_in_sign": 14.497967199150821,
          "house": 7,
          "retrograde": false,
          "ayanamsa_value": 24.224071485980346
        },
        {
          "name": "Eris",
          "longitude": 25.211983606179118,
          "tropical_longitude": 25.211983606179118,
          "sidereal_longitude": 0.9862506508126041,
          "latitude": -10.393050979080442,
          "speed": 0.010881315418548417,
          "sign": "ARIES",
          "tropical_sign": "ARIES",
          "sidereal_sign": "ARIES",
          "degree_in_sign": 25.211983606179118,
          "house": 8,
          "retrograde": false,
          "ayanamsa_value": 24.224071485980346
        }
      ],
      "aspects": [
        {
          "body1": "Sun",
          "body2": "Moon",
          "aspect": "square",
          "orb": 7.76,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Sun",
          "body2": "Mercury",
          "aspect": "semi-sextile",
          "orb": 2.94,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Sun",
          "body2": "Jupiter",
          "aspect": "square",
          "orb": 3.21,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Sun",
          "body2": "Chiron",
          "aspect": "conjunction",
          "orb": 6.57,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Sun",
          "body2": "Lilith",
          "aspect": "trine",
          "orb": 7.35,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Sun",
          "body2": "Eris",
          "aspect": "conjunction",
          "orb": 5.57,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Venus",
          "aspect": "trine",
          "orb": 0.2,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Jupiter",
          "aspect": "opposition",
          "orb": 4.55,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Saturn",
          "aspect": "square",
          "orb": 5.29,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Uranus",
          "aspect": "sesquiquadrate",
          "orb": 2.26,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Ceres",
          "aspect": "trine",
          "orb": 2.04,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "North Node",
          "aspect": "sextile",
          "orb": 3.82,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "South Node",
          "aspect": "trine",
          "orb": 3.82,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Lilith",
          "aspect": "semi-sextile",
          "orb": 0.41,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Moon",
          "body2": "Vesta",
          "aspect": "sextile",
          "orb": 2.61,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Mars",
          "aspect": "conjunction",
          "orb": 7.17,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Jupiter",
          "aspect": "trine",
          "orb": 6.14,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Pluto",
          "aspect": "semi-square",
          "orb": 2.24,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Ceres",
          "aspect": "semi-square",
          "orb": 2.27,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Pallas",
          "aspect": "conjunction",
          "orb": 2.06,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mercury",
          "body2": "Eris",
          "aspect": "semi-sextile",
          "orb": 2.63,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Mars",
          "aspect": "semi-square",
          "orb": 2.67,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Jupiter",
          "aspect": "sextile",
          "orb": 4.35,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Pluto",
          "aspect": "square",
          "orb": 6.75,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Ceres",
          "aspect": "conjunction",
          "orb": 2.23,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "North Node",
          "aspect": "sextile",
          "orb": 4.02,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "South Node",
          "aspect": "trine",
          "orb": 4.02,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Lilith",
          "aspect": "quincunx",
          "orb": 0.21,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Pallas",
          "aspect": "semi-square",
          "orb": 2.45,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Venus",
          "body2": "Vesta",
          "aspect": "sextile",
          "orb": 2.41,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Saturn",
          "aspect": "conjunction",
          "orb": 6.85,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Uranus",
          "aspect": "sextile",
          "orb": 0.6,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Neptune",
          "aspect": "conjunction",
          "orb": 2.77,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Pluto",
          "aspect": "sextile",
          "orb": 5.59,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Pallas",
          "aspect": "conjunction",
          "orb": 5.12,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Mars",
          "body2": "Juno",
          "aspect": "sextile",
          "orb": 3.17,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Jupiter",
          "body2": "Uranus",
          "aspect": "semi-square",
          "orb": 2.29,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Jupiter",
          "body2": "Vesta",
          "aspect": "trine",
          "orb": 1.94,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Neptune",
          "aspect": "conjunction",
          "orb": 4.08,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Pluto",
          "aspect": "sextile",
          "orb": 1.26,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "North Node",
          "aspect": "semi-sextile",
          "orb": 1.47,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "South Node",
          "aspect": "quincunx",
          "orb": 1.47,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Lilith",
          "aspect": "trine",
          "orb": 5.69,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Saturn",
          "body2": "Juno",
          "aspect": "sextile",
          "orb": 3.68,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Neptune",
          "aspect": "sextile",
          "orb": 3.37,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Pluto",
          "aspect": "trine",
          "orb": 6.19,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Chiron",
          "aspect": "semi-sextile",
          "orb": 2.94,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Pallas",
          "aspect": "sextile",
          "orb": 4.51,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Uranus",
          "body2": "Juno",
          "aspect": "trine",
          "orb": 3.77,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Neptune",
          "body2": "Pluto",
          "aspect": "sextile",
          "orb": 2.82,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Neptune",
          "body2": "Pallas",
          "aspect": "conjunction",
          "orb": 7.88,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Neptune",
          "body2": "Juno",
          "aspect": "sextile",
          "orb": 0.4,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Pluto",
          "body2": "Ceres",
          "aspect": "square",
          "orb": 4.51,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Pluto",
          "body2": "North Node",
          "aspect": "semi-sextile",
          "orb": 2.73,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Pluto",
          "body2": "South Node",
          "aspect": "quincunx",
          "orb": 2.73,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Pluto",
          "body2": "Juno",
          "aspect": "conjunction",
          "orb": 2.42,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Lilith",
          "aspect": "sesquiquadrate",
          "orb": 1.08,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Pallas",
          "aspect": "semi-sextile",
          "orb": 1.57,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Juno",
          "aspect": "square",
          "orb": 6.71,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Chiron",
          "body2": "Eris",
          "aspect": "conjunction",
          "orb": 1.0,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "North Node",
          "aspect": "sextile",
          "orb": 1.79,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "South Node",
          "aspect": "trine",
          "orb": 1.79,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "Lilith",
          "aspect": "quincunx",
          "orb": 2.44,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "Pallas",
          "aspect": "semi-square",
          "orb": 0.22,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "Juno",
          "aspect": "square",
          "orb": 6.93,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Ceres",
          "body2": "Vesta",
          "aspect": "sextile",
          "orb": 4.65,
          "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.23,
          "exact": false,
          "applying": false
        },
        {
          "body1": "North Node",
          "body2": "Vesta",
          "aspect": "conjunction",
          "orb": 6.43,
          "exact": false,
          "applying": false
        },
        {
          "body1": "North Node",
          "body2": "Eris",
          "aspect": "semi-square",
          "orb": 2.15,
          "exact": false,
          "applying": false
        },
        {
          "body1": "South Node",
          "body2": "Lilith",
          "aspect": "square",
          "orb": 4.23,
          "exact": false,
          "applying": false
        },
        {
          "body1": "South Node",
          "body2": "Vesta",
          "aspect": "opposition",
          "orb": 6.43,
          "exact": false,
          "applying": false
        },
        {
          "body1": "South Node",
          "body2": "Eris",
          "aspect": "sesquiquadrate",
          "orb": 2.15,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Lilith",
          "body2": "Vesta",
          "aspect": "square",
          "orb": 2.21,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Lilith",
          "body2": "Eris",
          "aspect": "sesquiquadrate",
          "orb": 2.08,
          "exact": false,
          "applying": false
        },
        {
          "body1": "Pallas",
          "body2": "Eris",
          "aspect": "semi-sextile",
          "orb": 0.58,
          "exact": true,
          "applying": false
        },
        {
          "body1": "Juno",
          "body2": "Eris",
          "aspect": "square",
          "orb": 7.71,
          "exact": false,
          "applying": false
        }
      ]
    },
    "metrics": {
      "sample_count": 7,
      "aspect_counts": {
        "semi-sextile": 58,
        "square": 80,
        "semi-square": 57,
        "trine": 67,
        "quincunx": 30,
        "opposition": 17,
        "sextile": 106,
        "conjunction": 91,
        "sesquiquadrate": 28
      },
      "retrograde_bodies": [
        "North Node",
        "South Node"
      ],
      "sign_changes": [
        "Moon enters CAPRICORN on Apr 09",
        "Mars enters ARIES on Apr 10",
        "Moon enters AQUARIUS on Apr 11"
      ]
    },
    "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",
      "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",
      "Neptune sextile Juno exact on Apr 07",
      "Sun trine Moon exact on Apr 07"
    ],
    "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": "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-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-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": "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-09T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Moon",
        "body2": "Venus",
        "sign": null,
        "aspect": "trine",
        "exactness": 0.2,
        "narrative_priority": 1.6,
        "section_bias": {
          "general": 1.4,
          "love_singles": 1.3,
          "love_couples": 1.4,
          "friendship": 0.7,
          "health": 0.3,
          "money": 0.5
        },
        "description": "Moon trine Venus exact on Apr 09"
      },
      {
        "timestamp": "2026-04-10T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Moon",
        "body2": "Mercury",
        "sign": null,
        "aspect": "sextile",
        "exactness": 0.12,
        "narrative_priority": 1.604,
        "section_bias": {
          "general": 1.4,
          "love_singles": 0.4,
          "love_couples": 0.4,
          "friendship": 0.6,
          "health": 0.3,
          "communication": 0.9,
          "career": 0.4
        },
        "description": "Moon sextile Mercury exact on Apr 10"
      },
      {
        "timestamp": "2026-04-10T12:00:00",
        "event_type": "ingress",
        "body1": "Mars",
        "body2": null,
        "sign": "ARIES",
        "aspect": null,
        "exactness": null,
        "narrative_priority": 1.322,
        "section_bias": {
          "general": 0.6,
          "career": 0.8,
          "health": 0.6,
          "love_singles": 0.3
        },
        "description": "Mars enters ARIES on Apr 10"
      },
      {
        "timestamp": "2026-04-11T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Moon",
        "body2": "Saturn",
        "sign": null,
        "aspect": "sextile",
        "exactness": 0.64,
        "narrative_priority": 1.853,
        "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 sextile Saturn exact on Apr 11"
      },
      {
        "timestamp": "2026-04-11T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Moon",
        "body2": "Pluto",
        "sign": null,
        "aspect": "conjunction",
        "exactness": 0.84,
        "narrative_priority": 1.678,
        "section_bias": {
          "general": 2.0,
          "love_singles": 0.4,
          "love_couples": 0.8,
          "friendship": 0.3,
          "health": 0.3,
          "career": 0.5
        },
        "description": "Moon conjunction Pluto exact on Apr 11"
      },
      {
        "timestamp": "2026-04-11T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Mercury",
        "body2": "Pallas",
        "sign": null,
        "aspect": "conjunction",
        "exactness": 0.2,
        "narrative_priority": 1.6,
        "section_bias": {
          "general": 0.6,
          "communication": 0.9,
          "career": 0.4,
          "friendship": 0.3
        },
        "description": "Mercury conjunction Pallas exact on Apr 11"
      },
      {
        "timestamp": "2026-04-12T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Jupiter",
        "body2": "Vesta",
        "sign": null,
        "aspect": "trine",
        "exactness": 0.8,
        "narrative_priority": 1.845,
        "section_bias": {
          "general": 1.1,
          "career": 0.8,
          "money": 0.8,
          "lifestyle": 0.4
        },
        "description": "Jupiter trine Vesta exact on Apr 12"
      },
      {
        "timestamp": "2026-04-12T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Venus",
        "body2": "Jupiter",
        "sign": null,
        "aspect": "sextile",
        "exactness": 0.95,
        "narrative_priority": 1.838,
        "section_bias": {
          "general": 1.1,
          "love_singles": 0.9,
          "love_couples": 1.0,
          "money": 1.3,
          "friendship": 0.4,
          "career": 0.8,
          "lifestyle": 0.4
        },
        "description": "Venus sextile Jupiter exact on Apr 12"
      },
      {
        "timestamp": "2026-04-12T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Mars",
        "body2": "Neptune",
        "sign": null,
        "aspect": "conjunction",
        "exactness": 0.54,
        "narrative_priority": 1.693,
        "section_bias": {
          "general": 1.0,
          "career": 0.8,
          "health": 1.1,
          "love_singles": 0.3,
          "lifestyle": 0.6
        },
        "description": "Mars conjunction Neptune exact on Apr 12"
      },
      {
        "timestamp": "2026-04-12T12:00:00",
        "event_type": "exact_aspect",
        "body1": "Venus",
        "body2": "Vesta",
        "sign": null,
        "aspect": "sextile",
        "exactness": 0.16,
        "narrative_priority": 1.602,
        "section_bias": {
          "general": 0.6,
          "love_singles": 0.9,
          "love_couples": 1.0,
          "money": 0.5,
          "friendship": 0.4
        },
        "description": "Venus sextile Vesta exact on Apr 12"
      }
    ],
    "factor_values": {
      "transits_archetypes": "trine_harmony",
      "aspects": "sextile",
      "sun_in_sign": "ARIES",
      "moon_in_sign": "CAPRICORN",
      "weekly_moon_phase": "last_quarter",
      "planetary_focus": "moon_focus",
      "retrograde_archetypes": "no_major_retrograde",
      "ingress_archetypes": "moon_ingress",
      "weekly_theme_archetypes": "social_visibility",
      "weekly_house_focus": "seventh_house"
    },
    "focus_source": "override"
  },
  "sections": [
    {
      "section": "general",
      "title": "General weekly outlook: protective and intuitive (high)",
      "headline": "Transit-led your overall direction: trine harmony",
      "summary": "For Cancer, weekly transit weather centers on trine harmony, and your overall direction becomes strategic terrain. This transit-led week keeps testing reacting to pressure against intentional pacing, and the stronger path is clear. Calibrate continuously without abandoning structure. As the week begins, Moon trine Saturn peaks on Apr 06. Around midweek, Moon square Mars peaks on Apr 08. Toward week's end, Moon trine Venus peaks on Apr 09. A trine harmony pattern keeps doors open through collaboration and easier timing. Embrace the rhythm of your emotions; they’re the compass that’ll lead you toward what truly sustains you. This helps you move with less noise. In parallel, Social visibility is the dominant theme, and steady execution is the real advantage. Where do I want to be seen? Not just in public, but in the stories that define your legacy. Clarity here shapes influence. This helps you move with less noise. With sextile emphasis, timing is cleaner and execution feels less forced. By week-end, keep the adaptations that improved signal quality. Keep it anchored in your overall direction. Pair emotional work with physical care—try a warm bath with salt, a slow walk by water, or a cozy blanket fort. Your body and mind will respond better. Keep it simple and measurable.",
      "deep_report": "Lead climate pressure opens the week before tactical nuance integrates. This reading stays coherent when pacing remains central to your choices. This week’s dominant weather pattern is clear; the lived expression is this: The dominant influence now is transit pattern of trine harmony. A trine harmony pattern keeps doors open through collaboration and easier timing.\n\nThis first pressure line asks for Embrace the rhythm of your emotions; they’re the compass that’ll lead you toward what truly sustains you. Anchor it in Pair emotional work with physical care—try a warm bath with salt, a slow walk by water, or a cozy blanket fort. Continue reflecting on Reflect on a relationship where you felt emotionally safe while reducing overidentifying with the emotional currents this week. On Apr 6, Moon trine Saturn peaks; the climate changed pace in your overall direction.\n\nAs Moon trine Saturn peaks on Apr 06 comes into focus, let this transit climate recalibrate your approach in your overall direction this week. This week’s dominant weather pattern is clear; the practical consequence is this: A secondary pressure curve is set by theme archetype of social visibility. Social visibility is the dominant theme, and steady execution is the real advantage.\n\nThe tension point is Your social visibility this week demands you step into the spotlight—not as a performer, but as a bridge between people. Soften reactivity through Start each interaction with the intention to serve the conversation, not just the crowd. Keep Ask yourself: Where do I want to be seen active so conditions where emotions rise sharp stays contained.\n\nOn Apr 7, Sun trine Moon peaks, making transit timing in your overall direction more active. As Sun trine Moon peaks on Apr 07 peaks, use the transit shift to refine decisions in your overall direction this week. Week-level transit quality comes from climate literacy plus clear hierarchy.",
      "highlights": [
        "A trine harmony pattern keeps doors open through collaboration and easier timing.",
        "Social visibility is setting the tone; consistency beats urgency.",
        "With sextile emphasis, timing is cleaner and execution feels less forced.",
        "No major retrograde favors review, cleanup, and smarter timing."
      ],
      "cautions": [
        "Avoid overidentifying with the emotional currents this week. While your sensitivity is your strength, it can also blur boundaries if you’re not mindful.",
        "If emotions rise sharp, pause before responding. Social visibility amplifies everything you feel—guard against reacting without intention.",
        "When your sextile energy feels too intense, ground yourself in tangible anchors (e.g., textures, routines) to stabilize focus.",
        "Keep clear of overprotectiveness—your need to shield others may blind you to their need for space or guidance."
      ],
      "actions": [
        "Pair emotional work with physical care—try a warm bath with salt, a slow walk by water, or a cozy blanket fort. Your body and mind will respond better.",
        "Start each interaction with the intention to serve the conversation, not just the crowd. Visibility works best when it’s earned through genuine connection.",
        "Carve out 10 minutes to listen to your body’s signals: hunger, fatigue, or restlessness often precede emotional shifts.",
        "Schedule ‘emotional check-ins’ with yourself weekly: Journal 3 things you’re grateful for and 1 boundary you’re setting."
      ],
      "scores": {
        "momentum": 100.0,
        "clarity": 35.1,
        "opportunity": 100.0,
        "focus": 93.9,
        "stability": 28.0,
        "connection": 81.4
      },
      "intensity": "high",
      "factor_details": [
        {
          "factor_type": "transits_archetypes",
          "factor_value": "trine_harmony",
          "weight": 1.25,
          "factor_insights": {
            "motivation": "Embrace the rhythm of your emotions; they’re the compass that’ll lead you toward what truly sustains you.",
            "caution": "Avoid overidentifying with the emotional currents this week. While your sensitivity is your strength, it can also blur boundaries if you’re not mindful.",
            "reflection": "Reflect on a relationship where you felt emotionally safe. What made it so? Apply those principles to your current dynamics.",
            "weekly_tip": "Pair emotional work with physical care—try a warm bath with salt, a slow walk by water, or a cozy blanket fort. Your body and mind will respond better.",
            "affirmation": "My boundaries are my shield, and my comfort is my strength."
          }
        },
        {
          "factor_type": "aspects",
          "factor_value": "sextile",
          "weight": 1.15,
          "factor_insights": {
            "motivation": "The watery flow of Cancer energy is turning into a tidal wave of opportunity—where do you want to ride the waves?",
            "caution": "When your sextile energy feels too intense, ground yourself in tangible anchors (e.g., textures, routines) to stabilize focus.",
            "reflection": "Track your moods over the week: Where does your energy feel most and least nourished? Align actions with those insights.",
            "weekly_tip": "Schedule ‘emotional check-ins’ with yourself weekly: Journal 3 things you’re grateful for and 1 boundary you’re setting.",
            "affirmation": "I release the need to ‘fix’ emotions; I embrace them as a compass, not a burden."
          }
        },
        {
          "factor_type": "sun_in_sign",
          "factor_value": "ARIES",
          "weight": 0.9,
          "factor_insights": {
            "motivation": "The Aries energy nudges you to act on that gut feeling, but first, anchor yourself in what truly nourishes your soul.",
            "caution": "Avoid dismissing your own feelings as ‘overreacting.’ Your intuition is a compass, not a liability.",
            "reflection": "Journal about a time you felt deeply misunderstood. How did it shape your need for emotional security?",
            "weekly_tip": "Wear something soft this week. It’s a reminder to soften toward yourself—your heart is a work in progress.",
            "affirmation": "I trust my intuition to guide my actions, even when my mind doubts."
          }
        },
        {
          "factor_type": "moon_in_sign",
          "factor_value": "CAPRICORN",
          "weight": 0.95,
          "factor_insights": {
            "motivation": "Embrace the tension between your heart and ambition—it’s the alchemy that turns vulnerability into strength.",
            "caution": "Resist the urge to suppress feelings entirely—balance them with Capricorn’s disciplined focus to prevent stagnation.",
            "reflection": "Where have you resisted vulnerability in the past? This week, observe how Capricorn’s patience helps you face it.",
            "weekly_tip": "Pair emotional check-ins with a Capricorn-approved ritual (e.g., a walk, meal prep)—grounds the energy in action.",
            "affirmation": "My emotions are a compass, not a burden—I move forward with Capricorn’s discipline and Cancer’s intuition."
          }
        },
        {
          "factor_type": "weekly_moon_phase",
          "factor_value": "last_quarter",
          "weight": 1.05,
          "factor_insights": {
            "motivation": "This is your time to reclaim balance. The Cancer moon’s pull is stronger now, urging you to anchor your energy in what sustains your soul, not just your weekly rhythm.",
            "caution": "Avoid overcommitting to projects that demand emotional labor now. Your energy is better spent on restorative practices, not productivity. Push back on obligations that don’t align with your current priorities.",
            "reflection": "Ask: What did I carry forward from the first half of this week that no longer serves me? The last quarter is your time to let go of emotional baggage that’s heavier than it should be. Journal about what feels like a burden—what can you release without guilt?",
            "weekly_tip": "Schedule a ‘quiet hour’ every evening. No devices, no noise—just you, a candle, and the moon’s pull. Use this time to meditate, stretch, or simply sit in stillness. Your nervous system will thank you.",
            "affirmation": "I release the need to control every outcome. My peace comes from letting go of what I cannot change, and my strength from trusting the process."
          }
        },
        {
          "factor_type": "planetary_focus",
          "factor_value": "moon_focus",
          "weight": 1.1,
          "factor_insights": {
            "motivation": "Trust that your intuition is your most reliable compass when navigating shifts in your emotional landscape.",
            "caution": "Be mindful of overreacting to small changes—your emotions may amplify even minor adjustments.",
            "reflection": "Consider what you’ve been avoiding addressing emotionally—this week, it’s time to face it.",
            "weekly_tip": "When overwhelmed, use a grounding technique like the 5-4-3-2-1 method (name 5 things you see, 4 you feel, etc.).",
            "affirmation": "My intuition guides me with clarity and trust in my inner wisdom."
          }
        },
        {
          "factor_type": "retrograde_archetypes",
          "factor_value": "no_major_retrograde",
          "weight": 1.15,
          "factor_insights": {
            "motivation": "Lean into this week’s emotional depth as your intuition sharpens—let your gut guide you toward what truly nourishes your soul.",
            "caution": "Watch for overprotectiveness—your need to shield others may blind you to their need for space or guidance.",
            "reflection": "Journal prompts: What did I protect myself from last month that no longer serves me? Where do I feel most at ease?",
            "weekly_tip": "Carve out 10 minutes to listen to your body’s signals: hunger, fatigue, or restlessness often precede emotional shifts.",
            "affirmation": "My boundaries are sacred; I release guilt for prioritizing my well-being. I am both secure and open."
          }
        },
        {
          "factor_type": "ingress_archetypes",
          "factor_value": "moon_ingress",
          "weight": 1.05,
          "factor_insights": {
            "motivation": "Channel your moon’s intuitive wisdom into setting intentions that align with your deepest needs, not societal expectations.",
            "caution": "Avoid overindulging in shared spaces where emotions run high—your intuition may flag when energy feels manipulative.",
            "reflection": "Spend time alone with nature; your moon thrives in the quiet, where intuition sharpens like a blade in the dark.",
            "weekly_tip": "Try the ‘moon check-in’: Before bed, ask, What did I need emotionally this week? Answer without judgment.",
            "affirmation": "I release the need to control every detail; my feelings are my own, and I embrace their wisdom."
          }
        },
        {
          "factor_type": "weekly_theme_archetypes",
          "factor_value": "social_visibility",
          "weight": 1.2,
          "factor_insights": {
            "motivation": "Your social visibility this week demands you step into the spotlight—not as a performer, but as a bridge between people. The energy around you is thick with potential, and your role is to shape it into something meaningful.",
            "caution": "If emotions rise sharp, pause before responding. Social visibility amplifies everything you feel—guard against reacting without intention.",
            "reflection": "Ask yourself: Where do I want to be seen? Not just in public, but in the stories that define your legacy. Clarity here shapes influence.",
            "weekly_tip": "Start each interaction with the intention to serve the conversation, not just the crowd. Visibility works best when it’s earned through genuine connection.",
            "affirmation": "I command my presence to be a magnet for meaningful connections, not just attention. My visibility this week is a tool for growth, not performance."
          }
        },
        {
          "factor_type": "weekly_house_focus",
          "factor_value": "seventh_house",
          "weight": 1.08,
          "factor_insights": {
            "motivation": "Commitment here isn’t about rigid roles but the slow, intentional shaping of mutual understanding, where every exchange mirrors the other’s deepest desires.",
            "caution": "Over-investing in one relationship before establishing the same depth with others can create imbalance, leaving you with hollow promises rather than true connection.",
            "reflection": "Reflect on the contracts you’ve signed (or will sign) and ask: Are they aligned with my values, or are they shaped by fear or obligation?",
            "weekly_tip": "When a relationship feels unbalanced, pause and ask: What’s one small way I can meet them in their need this week, even if it’s not reciprocated?",
            "affirmation": "I honor the depth of my relationships by meeting them with patience and presence, not perfection."
          }
        }
      ],
      "debug_trace": null
    }
  ],
  "_enterprise": {
    "client": "The Numerology API",
    "plan": "Enterprise",
    "request_id": "6332660d4373ed04",
    "quota": "unlimited",
    "usage_tracking": false
  },
  "_api_metadata_": {
    "api_name": "The Numerology API by Dakidarts®",
    "api_version": "1.0.1",
    "endpoint_name": "horoscope_transits_weekly_overview_post",
    "endpoint_description": "Provides weekly transit-focused overview (general section only).",
    "developer": "Dakidarts®",
    "copyright": "© 2026 Dakidarts®. All rights reserved.",
    "documentation_url": "https://docs.numerologyapi.com/",
    "response_timestamp": "2026-04-08T19:46:56.078073+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": ""
  }
}