행성별 일일 섹션 호르스코프¶
행성별 일일 섹션 호르스코프 엔드포인트는 자체 호르스코프 엔진에서 제공하는, 행성에 초점을 맞춘 보고서 섹션(일반적인 내용은 아님)을 반환합니다.
언어 지원: 이 엔진 기반
/api/v1/horoscope/reports/*엔드포인트는 현재 영어만 지원합니다 (lang=en).
엔드포인트¶
| 방법 | 경로 |
|---|---|
POST | https://api.numerologyapi.com/api/v1/horoscope/reports/planetary/daily |
요청 본문| 이름 | 필수 | 유형 | 예시 | 설명 |¶
|---|---|---|---|---| | 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). | | planet | 아니오 | 문자열 | sun | Planet key. Allowed: 태양, 달, 수성, 금성, 화성, 목성, 토성, 우라누스, 네프튠, 플루톤, 키론, 북극점, 남극점, 릴리시, 팔라스, 주노, 베스타, 에리스, 세레스. Default: 태양 | | sections | 아니오 | 문자열 배열 | ["career","money"] | Requested report sections. Allowed: 사랑_솔로, 사랑_커플, 경력, 우정, 건강, 돈, 소통, 생활 방식. 일반 is not allowed here; use /개요. | | day | 아니오 | 문자열 | today | Relative daily anchor. Allowed: 어제, 오늘, 내일. Default: 오늘. |
응답¶
엔진 페이로드와 게이트웨이 메타데이터를 반환합니다:
_enterprise_api_metadata_
개인화 활성화¶
개인별 행성 보고서를 생성하려면 (계정 수준의 일반적인 출력 대신), 다음을 포함하십시오:- birth_time - birth_latitude 및 birth_longitude 함께 사용 - 선택적으로 birth_timezone (timezone로 대체)
해당 출생 벡터 필드가 누락된 경우, 엔드포인트는 일반화된 부호 기반 레이어를 사용하여 프로덕션 환경에서 작동합니다.
맞춤형 모드 예시 (권장)¶
맞춤형 모드는 추가적인 결정론적 스위스 에페메리스 벡터(예: 하우스, 타이밍 벡터 및 선택적인 천문학적 레이어)를 활성화합니다. 즉, 같은 부호의 두 사용자는 출생 정보가 다르면 다른 보고서 편집본을 받을 수 있습니다.
curl --request POST \
--url "https://api.numerologyapi.com/api/v1/horoscope/reports/planetary/daily?lang=en" \
--header "X-API-Key: YOUR_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"dob": "1992-07-16",
"timezone": "America/New_York",
"day": "today",
"planet": "sun",
"sections": [
"career",
"money"
],
"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/planetary/daily?lang=en" \
--header "X-API-Key: YOUR_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"dob": "1992-07-16",
"timezone": "America/New_York",
"day": "today",
"planet": "sun",
"sections": [
"career",
"money"
]
}'
예시 응답¶
{
"report_type": "planet",
"sign": "CANCER",
"period": "daily",
"start": "2026-04-08T00:00:00",
"end": "2026-04-09T00:00:00",
"data": {
"period": "daily",
"start": "2026-04-08T00:00:00",
"end": "2026-04-09T00:00:00",
"snapshot": {
"timestamp": "2026-04-08T12:00:00",
"zodiac_system": "tropical",
"ayanamsa": "Lahiri",
"ayanamsa_value": 24.224033,
"ayanamsa_system": "lahiri",
"sun_sign": "ARIES",
"moon_sign": "SAGITTARIUS",
"rising_sign": "VIRGO",
"house_system": "P",
"house_cusps": [
161.6924,
186.013827,
215.276659,
248.620341,
282.855058,
314.297647,
341.6924,
6.013827,
35.276659,
68.620341,
102.855058,
134.297647
],
"positions": [
{
"name": "Sun",
"longitude": 18.662080153343677,
"tropical_longitude": 18.662080153343677,
"sidereal_longitude": 354.4364031365586,
"latitude": -0.00017314999039155018,
"speed": 0.9828625761578493,
"sign": "ARIES",
"tropical_sign": "ARIES",
"sidereal_sign": "PISCES",
"degree_in_sign": 18.662080153343677,
"house": 8,
"retrograde": false,
"ayanamsa_value": 24.224033236855632
},
{
"name": "Moon",
"longitude": 269.96461639695576,
"tropical_longitude": 269.96461639695576,
"sidereal_longitude": 245.73893938017068,
"latitude": -4.795058451420149,
"speed": 11.883451687140411,
"sign": "SAGITTARIUS",
"tropical_sign": "SAGITTARIUS",
"sidereal_sign": "SAGITTARIUS",
"degree_in_sign": 29.964616396955762,
"house": 4,
"retrograde": false,
"ayanamsa_value": 24.224033236855632
},
{
"name": "Mercury",
"longitude": 351.37904025976906,
"tropical_longitude": 351.37904025976906,
"sidereal_longitude": 327.15336324298397,
"latitude": -2.214814112326329,
"speed": 1.1825791118193736,
"sign": "PISCES",
"tropical_sign": "PISCES",
"sidereal_sign": "AQUARIUS",
"degree_in_sign": 21.379040259769056,
"house": 7,
"retrograde": false,
"ayanamsa_value": 24.224033236855632
},
{
"name": "Venus",
"longitude": 40.857993678280415,
"tropical_longitude": 40.857993678280415,
"sidereal_longitude": 16.632316661495327,
"latitude": -0.12219908113230322,
"speed": 1.2265774637001046,
"sign": "TAURUS",
"tropical_sign": "TAURUS",
"sidereal_sign": "ARIES",
"degree_in_sign": 10.857993678280415,
"house": 9,
"retrograde": false,
"ayanamsa_value": 24.224033236855632
},
{
"name": "Mars",
"longitude": 358.9741212040803,
"tropical_longitude": 358.9741212040803,
"sidereal_longitude": 334.7484441872952,
"latitude": -1.01425612458948,
"speed": 0.7792998540255472,
"sign": "PISCES",
"tropical_sign": "PISCES",
"sidereal_sign": "PISCES",
"degree_in_sign": 28.97412120408029,
"house": 7,
"retrograde": false,
"ayanamsa_value": 24.224033236855632
},
{
"name": "Jupiter",
"longitude": 106.34887877141026,
"tropical_longitude": 106.34887877141026,
"sidereal_longitude": 82.12320175462516,
"latitude": 0.37623825357820645,
"speed": 0.08605169031338009,
"sign": "CANCER",
"tropical_sign": "CANCER",
"sidereal_sign": "GEMINI",
"degree_in_sign": 16.348878771410256,
"house": 11,
"retrograde": false,
"ayanamsa_value": 24.224033236855632
},
{
"name": "Saturn",
"longitude": 6.4763051665497295,
"tropical_longitude": 6.4763051665497295,
"sidereal_longitude": 342.2506281497647,
"latitude": -2.1350962445667347,
"speed": 0.1230171210889875,
"sign": "ARIES",
"tropical_sign": "ARIES",
"sidereal_sign": "PISCES",
"degree_in_sign": 6.4763051665497295,
"house": 8,
"retrograde": false,
"ayanamsa_value": 24.224033236855632
},
{
"name": "Uranus",
"longitude": 59.101884166066846,
"tropical_longitude": 59.101884166066846,
"sidereal_longitude": 34.87620714928175,
"latitude": -0.16903279984024824,
"speed": 0.04739079233330246,
"sign": "TAURUS",
"tropical_sign": "TAURUS",
"sidereal_sign": "TAURUS",
"degree_in_sign": 29.101884166066846,
"house": 9,
"retrograde": false,
"ayanamsa_value": 24.224033236855632
},
{
"name": "Neptune",
"longitude": 2.4827979242698643,
"tropical_longitude": 2.4827979242698643,
"sidereal_longitude": 338.25712090748476,
"latitude": -1.3096399800285514,
"speed": 0.03669580398594739,
"sign": "ARIES",
"tropical_sign": "ARIES",
"sidereal_sign": "PISCES",
"degree_in_sign": 2.4827979242698643,
"house": 7,
"retrograde": false,
"ayanamsa_value": 24.224033236855632
},
{
"name": "Pluto",
"longitude": 305.3257061064537,
"tropical_longitude": 305.3257061064537,
"sidereal_longitude": 281.1000290896686,
"latitude": -3.970012080180854,
"speed": 0.012950592230773949,
"sign": "AQUARIUS",
"tropical_sign": "AQUARIUS",
"sidereal_sign": "CAPRICORN",
"degree_in_sign": 5.325706106453708,
"house": 5,
"retrograde": false,
"ayanamsa_value": 24.224033236855632
},
{
"name": "Chiron",
"longitude": 26.150773562016752,
"tropical_longitude": 26.150773562016752,
"sidereal_longitude": 1.9250965452316586,
"latitude": 0.3591183005080764,
"speed": 0.05972523478798165,
"sign": "ARIES",
"tropical_sign": "ARIES",
"sidereal_sign": "ARIES",
"degree_in_sign": 26.150773562016752,
"house": 8,
"retrograde": false,
"ayanamsa_value": 24.224033236855632
},
{
"name": "Ceres",
"longitude": 39.453042282157554,
"tropical_longitude": 39.453042282157554,
"sidereal_longitude": 15.227365265372471,
"latitude": -4.489833691368399,
"speed": 0.3980031154165485,
"sign": "TAURUS",
"tropical_sign": "TAURUS",
"sidereal_sign": "ARIES",
"degree_in_sign": 9.453042282157554,
"house": 9,
"retrograde": false,
"ayanamsa_value": 24.224033236855632
},
{
"name": "North Node",
"longitude": 338.1054320525856,
"tropical_longitude": 338.1054320525856,
"sidereal_longitude": 313.87975503580054,
"latitude": 0.0,
"speed": -0.05526456671736626,
"sign": "PISCES",
"tropical_sign": "PISCES",
"sidereal_sign": "AQUARIUS",
"degree_in_sign": 8.105432052585627,
"house": 6,
"retrograde": true,
"ayanamsa_value": 24.224033236855632
},
{
"name": "South Node",
"longitude": 158.10543205258568,
"tropical_longitude": 158.10543205258568,
"sidereal_longitude": 133.87975503580054,
"latitude": 0.0,
"speed": -0.05526456671736626,
"sign": "VIRGO",
"tropical_sign": "VIRGO",
"sidereal_sign": "LEO",
"degree_in_sign": 8.105432052585684,
"house": 12,
"retrograde": true,
"ayanamsa_value": 24.224033236855632
},
{
"name": "Lilith",
"longitude": 252.18036865761533,
"tropical_longitude": 252.18036865761533,
"sidereal_longitude": 227.95469164083025,
"latitude": -5.124555001082225,
"speed": 0.11201934900409877,
"sign": "SAGITTARIUS",
"tropical_sign": "SAGITTARIUS",
"sidereal_sign": "SCORPIO",
"degree_in_sign": 12.180368657615332,
"house": 4,
"retrograde": false,
"ayanamsa_value": 24.224033236855632
},
{
"name": "Pallas",
"longitude": 354.3095960466505,
"tropical_longitude": 354.3095960466505,
"sidereal_longitude": 330.0839190298654,
"latitude": 3.502091214623772,
"speed": 0.3267412347686282,
"sign": "PISCES",
"tropical_sign": "PISCES",
"sidereal_sign": "PISCES",
"degree_in_sign": 24.309596046650483,
"house": 7,
"retrograde": false,
"ayanamsa_value": 24.224033236855632
},
{
"name": "Juno",
"longitude": 302.67244499904115,
"tropical_longitude": 302.67244499904115,
"sidereal_longitude": 278.44676798225606,
"latitude": 11.637665074974603,
"speed": 0.2511989524314414,
"sign": "AQUARIUS",
"tropical_sign": "AQUARIUS",
"sidereal_sign": "CAPRICORN",
"degree_in_sign": 2.672444999041147,
"house": 5,
"retrograde": false,
"ayanamsa_value": 24.224033236855632
},
{
"name": "Vesta",
"longitude": 344.0219611357695,
"tropical_longitude": 344.0219611357695,
"sidereal_longitude": 319.79628411898443,
"latitude": -3.8449837093845414,
"speed": 0.47647969009636404,
"sign": "PISCES",
"tropical_sign": "PISCES",
"sidereal_sign": "AQUARIUS",
"degree_in_sign": 14.021961135769516,
"house": 7,
"retrograde": false,
"ayanamsa_value": 24.224033236855632
},
{
"name": "Eris",
"longitude": 25.20105590689525,
"tropical_longitude": 25.20105590689525,
"sidereal_longitude": 0.9753788901101663,
"latitude": -10.393832559302957,
"speed": 0.010860664063415876,
"sign": "ARIES",
"tropical_sign": "ARIES",
"sidereal_sign": "ARIES",
"degree_in_sign": 25.20105590689525,
"house": 8,
"retrograde": false,
"ayanamsa_value": 24.224033236855632
}
],
"aspects": [
{
"body1": "Sun",
"body2": "Mercury",
"aspect": "semi-sextile",
"orb": 2.72,
"exact": false,
"applying": false
},
{
"body1": "Sun",
"body2": "Jupiter",
"aspect": "square",
"orb": 2.31,
"exact": false,
"applying": false
},
{
"body1": "Sun",
"body2": "Chiron",
"aspect": "conjunction",
"orb": 7.49,
"exact": false,
"applying": false
},
{
"body1": "Sun",
"body2": "Lilith",
"aspect": "trine",
"orb": 6.48,
"exact": false,
"applying": false
},
{
"body1": "Sun",
"body2": "Eris",
"aspect": "conjunction",
"orb": 6.54,
"exact": false,
"applying": false
},
{
"body1": "Moon",
"body2": "Mars",
"aspect": "square",
"orb": 0.99,
"exact": true,
"applying": false
},
{
"body1": "Moon",
"body2": "Saturn",
"aspect": "square",
"orb": 6.51,
"exact": false,
"applying": false
},
{
"body1": "Moon",
"body2": "Uranus",
"aspect": "quincunx",
"orb": 0.86,
"exact": true,
"applying": false
},
{
"body1": "Moon",
"body2": "Neptune",
"aspect": "square",
"orb": 2.52,
"exact": false,
"applying": false
},
{
"body1": "Moon",
"body2": "Chiron",
"aspect": "trine",
"orb": 3.81,
"exact": false,
"applying": false
},
{
"body1": "Moon",
"body2": "Pallas",
"aspect": "square",
"orb": 5.66,
"exact": false,
"applying": false
},
{
"body1": "Moon",
"body2": "Juno",
"aspect": "semi-sextile",
"orb": 2.71,
"exact": false,
"applying": false
},
{
"body1": "Moon",
"body2": "Eris",
"aspect": "trine",
"orb": 4.76,
"exact": false,
"applying": false
},
{
"body1": "Mercury",
"body2": "Mars",
"aspect": "conjunction",
"orb": 7.6,
"exact": false,
"applying": false
},
{
"body1": "Mercury",
"body2": "Jupiter",
"aspect": "trine",
"orb": 5.03,
"exact": false,
"applying": false
},
{
"body1": "Mercury",
"body2": "Pluto",
"aspect": "semi-square",
"orb": 1.05,
"exact": false,
"applying": false
},
{
"body1": "Mercury",
"body2": "Pallas",
"aspect": "conjunction",
"orb": 2.93,
"exact": false,
"applying": false
},
{
"body1": "Mercury",
"body2": "Vesta",
"aspect": "conjunction",
"orb": 7.36,
"exact": false,
"applying": false
},
{
"body1": "Venus",
"body2": "Jupiter",
"aspect": "sextile",
"orb": 5.49,
"exact": false,
"applying": false
},
{
"body1": "Venus",
"body2": "Pluto",
"aspect": "square",
"orb": 5.53,
"exact": false,
"applying": false
},
{
"body1": "Venus",
"body2": "Ceres",
"aspect": "conjunction",
"orb": 1.4,
"exact": false,
"applying": false
},
{
"body1": "Venus",
"body2": "North Node",
"aspect": "sextile",
"orb": 2.75,
"exact": false,
"applying": false
},
{
"body1": "Venus",
"body2": "South Node",
"aspect": "trine",
"orb": 2.75,
"exact": false,
"applying": false
},
{
"body1": "Venus",
"body2": "Lilith",
"aspect": "quincunx",
"orb": 1.32,
"exact": false,
"applying": false
},
{
"body1": "Venus",
"body2": "Pallas",
"aspect": "semi-square",
"orb": 1.55,
"exact": false,
"applying": false
},
{
"body1": "Venus",
"body2": "Vesta",
"aspect": "sextile",
"orb": 3.16,
"exact": false,
"applying": false
},
{
"body1": "Mars",
"body2": "Saturn",
"aspect": "conjunction",
"orb": 7.5,
"exact": false,
"applying": false
},
{
"body1": "Mars",
"body2": "Uranus",
"aspect": "sextile",
"orb": 0.13,
"exact": true,
"applying": false
},
{
"body1": "Mars",
"body2": "Neptune",
"aspect": "conjunction",
"orb": 3.51,
"exact": false,
"applying": false
},
{
"body1": "Mars",
"body2": "Chiron",
"aspect": "semi-sextile",
"orb": 2.82,
"exact": false,
"applying": false
},
{
"body1": "Mars",
"body2": "Pallas",
"aspect": "conjunction",
"orb": 4.66,
"exact": false,
"applying": false
},
{
"body1": "Mars",
"body2": "Juno",
"aspect": "sextile",
"orb": 3.7,
"exact": false,
"applying": false
},
{
"body1": "Jupiter",
"body2": "Uranus",
"aspect": "semi-square",
"orb": 2.25,
"exact": false,
"applying": false
},
{
"body1": "Jupiter",
"body2": "Pallas",
"aspect": "trine",
"orb": 7.96,
"exact": false,
"applying": false
},
{
"body1": "Jupiter",
"body2": "Vesta",
"aspect": "trine",
"orb": 2.33,
"exact": false,
"applying": false
},
{
"body1": "Saturn",
"body2": "Neptune",
"aspect": "conjunction",
"orb": 3.99,
"exact": false,
"applying": false
},
{
"body1": "Saturn",
"body2": "Pluto",
"aspect": "sextile",
"orb": 1.15,
"exact": false,
"applying": false
},
{
"body1": "Saturn",
"body2": "Ceres",
"aspect": "semi-sextile",
"orb": 2.98,
"exact": false,
"applying": false
},
{
"body1": "Saturn",
"body2": "North Node",
"aspect": "semi-sextile",
"orb": 1.63,
"exact": false,
"applying": false
},
{
"body1": "Saturn",
"body2": "South Node",
"aspect": "quincunx",
"orb": 1.63,
"exact": false,
"applying": false
},
{
"body1": "Saturn",
"body2": "Lilith",
"aspect": "trine",
"orb": 5.7,
"exact": false,
"applying": false
},
{
"body1": "Saturn",
"body2": "Juno",
"aspect": "sextile",
"orb": 3.8,
"exact": false,
"applying": false
},
{
"body1": "Uranus",
"body2": "Neptune",
"aspect": "sextile",
"orb": 3.38,
"exact": false,
"applying": false
},
{
"body1": "Uranus",
"body2": "Pluto",
"aspect": "trine",
"orb": 6.22,
"exact": false,
"applying": false
},
{
"body1": "Uranus",
"body2": "Chiron",
"aspect": "semi-sextile",
"orb": 2.95,
"exact": false,
"applying": false
},
{
"body1": "Uranus",
"body2": "Pallas",
"aspect": "sextile",
"orb": 4.79,
"exact": false,
"applying": false
},
{
"body1": "Uranus",
"body2": "Juno",
"aspect": "trine",
"orb": 3.57,
"exact": false,
"applying": false
},
{
"body1": "Neptune",
"body2": "Pluto",
"aspect": "sextile",
"orb": 2.84,
"exact": false,
"applying": false
},
{
"body1": "Neptune",
"body2": "Juno",
"aspect": "sextile",
"orb": 0.19,
"exact": true,
"applying": false
},
{
"body1": "Pluto",
"body2": "Ceres",
"aspect": "square",
"orb": 4.13,
"exact": false,
"applying": false
},
{
"body1": "Pluto",
"body2": "North Node",
"aspect": "semi-sextile",
"orb": 2.78,
"exact": false,
"applying": false
},
{
"body1": "Pluto",
"body2": "South Node",
"aspect": "quincunx",
"orb": 2.78,
"exact": false,
"applying": false
},
{
"body1": "Pluto",
"body2": "Juno",
"aspect": "conjunction",
"orb": 2.65,
"exact": false,
"applying": false
},
{
"body1": "Chiron",
"body2": "Lilith",
"aspect": "sesquiquadrate",
"orb": 1.03,
"exact": false,
"applying": false
},
{
"body1": "Chiron",
"body2": "Pallas",
"aspect": "semi-sextile",
"orb": 1.84,
"exact": false,
"applying": false
},
{
"body1": "Chiron",
"body2": "Juno",
"aspect": "square",
"orb": 6.52,
"exact": false,
"applying": false
},
{
"body1": "Chiron",
"body2": "Vesta",
"aspect": "semi-square",
"orb": 2.87,
"exact": false,
"applying": false
},
{
"body1": "Chiron",
"body2": "Eris",
"aspect": "conjunction",
"orb": 0.95,
"exact": true,
"applying": false
},
{
"body1": "Ceres",
"body2": "North Node",
"aspect": "sextile",
"orb": 1.35,
"exact": false,
"applying": false
},
{
"body1": "Ceres",
"body2": "South Node",
"aspect": "trine",
"orb": 1.35,
"exact": false,
"applying": false
},
{
"body1": "Ceres",
"body2": "Lilith",
"aspect": "quincunx",
"orb": 2.73,
"exact": false,
"applying": false
},
{
"body1": "Ceres",
"body2": "Pallas",
"aspect": "semi-square",
"orb": 0.14,
"exact": true,
"applying": false
},
{
"body1": "Ceres",
"body2": "Juno",
"aspect": "square",
"orb": 6.78,
"exact": false,
"applying": false
},
{
"body1": "Ceres",
"body2": "Vesta",
"aspect": "sextile",
"orb": 4.57,
"exact": false,
"applying": false
},
{
"body1": "North Node",
"body2": "South Node",
"aspect": "opposition",
"orb": 0.0,
"exact": true,
"applying": false
},
{
"body1": "North Node",
"body2": "Lilith",
"aspect": "square",
"orb": 4.07,
"exact": false,
"applying": false
},
{
"body1": "North Node",
"body2": "Vesta",
"aspect": "conjunction",
"orb": 5.92,
"exact": false,
"applying": false
},
{
"body1": "North Node",
"body2": "Eris",
"aspect": "semi-square",
"orb": 2.1,
"exact": false,
"applying": false
},
{
"body1": "South Node",
"body2": "Lilith",
"aspect": "square",
"orb": 4.07,
"exact": false,
"applying": false
},
{
"body1": "South Node",
"body2": "Vesta",
"aspect": "opposition",
"orb": 5.92,
"exact": false,
"applying": false
},
{
"body1": "South Node",
"body2": "Eris",
"aspect": "sesquiquadrate",
"orb": 2.1,
"exact": false,
"applying": false
},
{
"body1": "Lilith",
"body2": "Vesta",
"aspect": "square",
"orb": 1.84,
"exact": false,
"applying": false
},
{
"body1": "Lilith",
"body2": "Eris",
"aspect": "sesquiquadrate",
"orb": 1.98,
"exact": false,
"applying": false
},
{
"body1": "Pallas",
"body2": "Eris",
"aspect": "semi-sextile",
"orb": 0.89,
"exact": true,
"applying": false
},
{
"body1": "Juno",
"body2": "Eris",
"aspect": "square",
"orb": 7.47,
"exact": false,
"applying": false
}
]
},
"metrics": {
"sample_count": 1,
"aspect_counts": {
"semi-sextile": 9,
"square": 13,
"conjunction": 13,
"trine": 11,
"quincunx": 5,
"semi-square": 6,
"sextile": 13,
"sesquiquadrate": 3,
"opposition": 2
},
"retrograde_bodies": [
"North Node",
"South Node"
],
"sign_changes": []
},
"notable_events": [
"Mars sextile Uranus exact on Apr 08",
"Neptune sextile Juno exact on Apr 08",
"Chiron conjunction Eris exact on Apr 08",
"Moon square Mars exact on Apr 08",
"North Node retrograde emphasis",
"South Node retrograde emphasis"
],
"period_events": [
{
"timestamp": "2026-04-08T12:00:00",
"event_type": "exact_aspect",
"body1": "Mars",
"body2": "Uranus",
"sign": null,
"aspect": "sextile",
"exactness": 0.13,
"narrative_priority": 1.714,
"section_bias": {
"general": 1.0,
"career": 0.8,
"health": 0.6,
"love_singles": 0.3,
"lifestyle": 0.7,
"communication": 0.4
},
"description": "Mars sextile Uranus exact on Apr 08"
},
{
"timestamp": "2026-04-08T12:00:00",
"event_type": "exact_aspect",
"body1": "Neptune",
"body2": "Juno",
"sign": null,
"aspect": "sextile",
"exactness": 0.19,
"narrative_priority": 1.711,
"section_bias": {
"general": 1.0,
"health": 0.5,
"lifestyle": 0.6
},
"description": "Neptune sextile Juno exact on Apr 08"
},
{
"timestamp": "2026-04-08T12:00:00",
"event_type": "exact_aspect",
"body1": "Chiron",
"body2": "Eris",
"sign": null,
"aspect": "conjunction",
"exactness": 0.95,
"narrative_priority": 1.617,
"section_bias": {
"general": 1.0,
"health": 0.8,
"love_couples": 0.4
},
"description": "Chiron conjunction Eris exact on Apr 08"
},
{
"timestamp": "2026-04-08T12:00:00",
"event_type": "exact_aspect",
"body1": "Moon",
"body2": "Mars",
"sign": null,
"aspect": "square",
"exactness": 0.99,
"narrative_priority": 1.615,
"section_bias": {
"general": 1.4,
"love_singles": 0.7,
"love_couples": 0.4,
"friendship": 0.3,
"health": 0.8999999999999999,
"career": 0.8
},
"description": "Moon square Mars exact on Apr 08"
},
{
"timestamp": "2026-04-08T12:00:00",
"event_type": "retrograde_emphasis",
"body1": "North Node",
"body2": null,
"sign": null,
"aspect": null,
"exactness": null,
"narrative_priority": 1.125,
"section_bias": {
"general": 1.4,
"career": 0.4,
"love_singles": 0.3
},
"description": "North Node retrograde emphasis"
},
{
"timestamp": "2026-04-08T12:00:00",
"event_type": "retrograde_emphasis",
"body1": "South Node",
"body2": null,
"sign": null,
"aspect": null,
"exactness": null,
"narrative_priority": 1.035,
"section_bias": {
"general": 1.2999999999999998,
"lifestyle": 0.4,
"friendship": 0.3
},
"description": "South Node retrograde emphasis"
}
],
"factor_values": {
"planet_core_archetypes": "sun_core",
"planet_condition_archetypes": "direct_flow",
"planet_sign_archetypes": "element_fire",
"planet_house_focus": "eighth_house",
"transits_archetypes": "conjunction_growth",
"aspects": "conjunction"
}
},
"sections": [
{
"section": "career",
"title": "Career daily outlook: protective and intuitive (high)",
"summary": "Planet-led daily momentum for Cancer is routed through Sun, where work visibility, priorities, and execution reacts fastest. The practical thesis today is a visibility-forward push where identity and direction need clean ownership, which consistently rewards work that compounds. Let precision lead, then act. Mars sextile Uranus peaks on Apr 08. In career terms, In work visibility, priorities, and execution, Sun is the core narrative driver, so anchor delivery standards in execution quality to build visible professional traction; Professionally, convert this into concrete output and clean prioritization. Today, prioritize tasks that demand emotional intelligence—your ability to connect deeply will elevate your influence in meetings. This keeps your effort compounding. At the same time, At professional level, Condition is direct flow, so execution quality can build visible professional traction without forcing pace; At work, sequence this into focused execution and visible follow-through. Observe how your energy shifts when leading vs. collaborating—adjust tone to match the task’s emotional weight. That framing improves strategic timing. End the day with one concrete follow-through you can trust. Keep it anchored in work visibility, priorities, and execution. Start your day by journaling: What emotional insight from yesterday’s interactions could inform my strategy today? Let that answer tighten your next priority.",
"deep_report": "The daily interpretation starts with headline pressure and then tightens execution through secondary context. For this daily career arc, let execution be your orienting principle. The opening move today centers here; the lived expression is this: Primary momentum in this daily cycle comes from planet core archetypes signature of sun core.\n\nIn career terms, In work visibility, priorities, and execution, Sun is the core narrative driver, so anchor delivery standards in execution quality to build visible professional traction; Professionally, convert this into concrete output and clean prioritization. In practical terms, the priority is Today, prioritize tasks that demand emotional intelligence—your ability to connect deeply will elevate your influence in meetings. Convert it into outcomes via Start your day by journaling: What emotional insight from yesterday’s interactions could inform my strategy today.\n\nKeep Reflect on how your past career choices have balanced emotional fulfillment with tangible results—what patterns emerge in your leadership style alive and avoid conditions where emotions cloud judgment. As Mars sextile Uranus peaks on Apr 08 peaks, tighten delivery choices in work visibility, priorities, and execution within this planet-led cycle. The strongest day-end stance is simple: follow the core signal, calibrate with the rest.\n\nProtect your attention and let sequence create momentum for visible follow-through in your work today as this planet-led day unfolds in work visibility, priorities, and execution.",
"highlights": [
"Sun is the core driver, so choices linked to this planet's themes carry the strongest signal.",
"Planetary condition is direct flow, setting the tempo for how quickly results compound this cycle.",
"A conjunction growth pattern concentrates energy into one clear growth edge.",
"Planet house focus concentrates on shared resources, intimacy, and deeper trust work, making this life-area the main decision arena."
],
"cautions": [
"When emotions cloud judgment, pause to ask: Does this align with my long-term career goals, or am I reacting to short-term pressure?.",
"Resist the urge to micromanage during this period—trust your team’s adaptability to your vision.",
"Hold back from the urge to micromanage creative phases—let team members own their contributions.",
"Be wary of overpromising in high-stakes discussions. Your confidence is a tool, but it’s not an excuse for inconsistency. Clarify expectations early to prevent misunderstandings."
],
"actions": [
"Start your day by journaling: What emotional insight from yesterday’s interactions could inform my strategy today?",
"End the day by summarizing three wins in your team’s emotional connection to the work. Celebrate them.",
"Open meetings with a shared emotional anchor: ‘Let’s approach this with curiosity and care.’.",
"Set a ‘no-negotiation’ boundary: One hour before a critical meeting, disconnect from emails/texts. Your mental clarity will improve outcomes exponentially."
],
"scores": {
"momentum": 100.0,
"clarity": 36.5,
"opportunity": 100.0,
"focus": 82.4,
"stability": 32.1,
"connection": 76.7
},
"intensity": "high",
"factor_details": [
{
"factor_type": "planet_core_archetypes",
"factor_value": "sun_core",
"weight": 1.45,
"factor_insights": {
"motivation": "Today, prioritize tasks that demand emotional intelligence—your ability to connect deeply will elevate your influence in meetings.",
"caution": "When emotions cloud judgment, pause to ask: Does this align with my long-term career goals, or am I reacting to short-term pressure?.",
"reflection": "Reflect on how your past career choices have balanced emotional fulfillment with tangible results—what patterns emerge in your leadership style?",
"daily_tip": "Start your day by journaling: What emotional insight from yesterday’s interactions could inform my strategy today?",
"affirmation": "My authority is rooted in emotional intelligence, not just experience—today, I lead with confidence and precision."
}
},
{
"factor_type": "planet_condition_archetypes",
"factor_value": "direct_flow",
"weight": 1.3,
"factor_insights": {
"motivation": "Cancer’s nurturing energy demands you assess how your leadership style fuels others’ creativity.",
"caution": "Resist the urge to micromanage creative phases—let team members own their contributions.",
"reflection": "Observe how your energy shifts when leading vs. collaborating—adjust tone to match the task’s emotional weight.",
"daily_tip": "Start meetings with a shared emotional anchor: ‘Let’s approach this with curiosity and care.’",
"affirmation": "My energy fuels collaboration, not isolation—I trust others’ strengths as much as my own."
}
},
{
"factor_type": "planet_sign_archetypes",
"factor_value": "element_fire",
"weight": 1.15,
"factor_insights": {
"motivation": "Leverage your nurturing energy to build resilience in leadership roles where emotional intelligence drives results.",
"caution": "Guard against burnout by setting boundaries—your emotional labor fuels creativity, not exhaustion in leadership roles.",
"reflection": "Observe how your team reacts to your leadership—do they feel protected or inspired? Fire demands both warmth and drive.",
"daily_tip": "End the day by reviewing one decision you trusted your intuition on—how did it align with your vision?",
"affirmation": "My emotional depth fuels decisions that inspire action, not hesitation, in high-intensity career moments."
}
},
{
"factor_type": "planet_house_focus",
"factor_value": "eighth_house",
"weight": 1.25,
"factor_insights": {
"motivation": "Guard your emotional energy—your career thrives on stability, not turbulence. Trust that your intuition about boundaries is guiding you toward sustainable growth.",
"caution": "Be wary of overpromising in high-stakes discussions. Your confidence is a tool, but it’s not an excuse for inconsistency. Clarify expectations early to prevent misunderstandings.",
"reflection": "Visualize your ideal work environment. Now, compare it to your current reality. What’s one small change you can implement to bridge the gap? Start with the first step.",
"daily_tip": "Set a ‘no-negotiation’ boundary: One hour before a critical meeting, disconnect from emails/texts. Your mental clarity will improve outcomes exponentially.",
"affirmation": "My work reflects resilience, not endurance. I release what no longer serves me and embrace transformation with confidence."
}
},
{
"factor_type": "transits_archetypes",
"factor_value": "conjunction_growth",
"weight": 1.3,
"factor_insights": {
"motivation": "Leverage emotional intelligence to align your vision with collective growth; this is your moment to shape meaningful impact.",
"caution": "Resist the urge to micromanage during this period—trust your team’s adaptability to your vision.",
"reflection": "What boundaries have you set for yourself in leadership that others might not yet recognize? Adjust them now.",
"daily_tip": "End the day by summarizing three wins in your team’s emotional connection to the work. Celebrate them.",
"affirmation": "I honor my team’s creativity while keeping the project’s purpose sharp—this is where great work thrives."
}
},
{
"factor_type": "aspects",
"factor_value": "conjunction",
"weight": 1.2,
"factor_insights": {
"motivation": "This high-energy conjunction demands you balance empathy with assertiveness; your intuition will guide bold decisions that align with your vision.",
"caution": "Overly sensitive to criticism or feedback in this phase; filter input to ensure it fuels progress rather than derails momentum.",
"reflection": "Trace this energy back to your emotional roots: Where does this surge of ambition come from? Is it growth or avoidance?",
"daily_tip": "Prioritize one high-impact conversation today: Use your emotional connection to make your vision tangible for others.",
"affirmation": "My intuition is my compass—when aligned, it directs me toward impactful decisions."
}
}
],
"debug_trace": null
},
{
"section": "money",
"title": "Money daily outlook: protective and intuitive (high)",
"summary": "In this planet-led daily cycle, Sun keeps Cancer focused on practical movement in resources, spending choices, and value alignment. Planet-led momentum today is a visibility-forward push where identity and direction need clean ownership; shift from emotional spending loops to value-led financial decisions. Keep today simple and exact. Mars sextile Uranus peaks on Apr 08. In money terms, For resources, spending choices, and value alignment, Sun is central; prioritize value-led allocation so financial stability compounds through cleaner spending discipline; Financially, apply this through value-based decisions and disciplined timing. Savor the quiet trust in your ability to manage what’s truly essential, not what feels indulgent. That perspective strengthens financial discipline. Meanwhile, At resource-management level, with direct flow online, steady value-led allocation keeps spending discipline moving toward financial stability; with money, convert this into timing discipline and values-led choices. Consider the emotional weight of your transactions: Do you feel secure or anxious after each step? That perspective strengthens financial discipline. Close the day by anchoring one completed move. Keep it anchored in resources, spending choices, and value alignment. Open your bank app at the same time daily (e.g., 7 AM) to check balances before scrolling through ads. That perspective strengthens financial discipline.",
"deep_report": "Today's deep reading starts with the strongest active influences, then pulls in supporting nuance where useful. In money terms, keep reserves as the anchor theme. A follow-on influence adjusts the tone: The first structural cue in this daily narrative is planet core archetypes signature of sun core.\n\nIn money terms, For resources, spending choices, and value alignment, Sun is central; prioritize value-led allocation so financial stability compounds through cleaner spending discipline; Financially, apply this through value-based decisions and disciplined timing. Practically, the thesis is Savor the quiet trust in your ability to manage what’s truly essential, not what feels indulgent. Turn it into progress through Open your bank app at the same time daily (e.g., 7 AM) to check balances before scrolling through ads.\n\nCarry Notice where you’ve defaulted to ‘emotional spending’—is it fear, nostalgia, or habit and avoid Overdrafts or unexpected charges could trigger a defensive spiral—plan for the next paycheck’s gap now. With Mars sextile Uranus peaks on Apr 08 active, read it as a planet-led execution marker in resources, spending choices, and value alignment for today. To close the day cleanly, protect the central storyline and trim reactive noise.\n\nKeep your pace honest, and your outcomes stay clean for practical financial choices and timing today while the planetary signal is active in resources, spending choices, and value alignment this day.",
"highlights": [
"Sun is the core driver, so choices linked to this planet's themes carry the strongest signal.",
"Planetary condition is direct flow, setting the tempo for how quickly results compound this cycle.",
"A conjunction growth pattern concentrates energy into one clear growth edge.",
"Planet house focus concentrates on shared obligations, trust economics, and boundary clarity around resources, making this life-area the main decision arena."
],
"cautions": [
"Overdrafts or unexpected charges could trigger a defensive spiral—plan for the next paycheck’s gap now.",
"Overdrafts and unexpected costs can turn a steady rhythm into chaos—keep an emergency fund in mind even as you plan.",
"Monitor emotional decisions tied to ‘needs’ that don’t align with your long-term goals.",
"Keep clear of impulsive withdrawals or sudden financial commitments—this house thrives on calculated risk."
],
"actions": [
"Open your bank app at the same time daily (e.g., 7 AM) to check balances before scrolling through ads.",
"Set a ‘no-spend’ rule for one meal/day. Use it to practice gratitude for what you have.",
"Set a 10-minute rule for bills: If it takes longer than that, reconsider or break it into smaller steps.",
"End your day by reviewing one unexpected expense—why did it happen, and how can you prevent it?"
],
"scores": {
"momentum": 100.0,
"clarity": 35.4,
"opportunity": 100.0,
"focus": 84.8,
"stability": 34.1,
"connection": 77.6
},
"intensity": "high",
"factor_details": [
{
"factor_type": "planet_core_archetypes",
"factor_value": "sun_core",
"weight": 1.45,
"factor_insights": {
"motivation": "Savor the quiet trust in your ability to manage what’s truly essential, not what feels indulgent.",
"caution": "Overdrafts or unexpected charges could trigger a defensive spiral—plan for the next paycheck’s gap now.",
"reflection": "Notice where you’ve defaulted to ‘emotional spending’—is it fear, nostalgia, or habit? Name it.",
"daily_tip": "Open your bank app at the same time daily (e.g., 7 AM) to check balances before scrolling through ads.",
"affirmation": "I trust that my financial foundation is stronger than any temporary shortfall I might face."
}
},
{
"factor_type": "planet_condition_archetypes",
"factor_value": "direct_flow",
"weight": 1.3,
"factor_insights": {
"motivation": "Cancer’s water sign thrives on emotional balance, so align spending with your deepest needs rather than fleeting desires.",
"caution": "Overdrafts and unexpected costs can turn a steady rhythm into chaos—keep an emergency fund in mind even as you plan.",
"reflection": "Consider the emotional weight of your transactions: Do you feel secure or anxious after each step?",
"daily_tip": "Set a 10-minute rule for bills: If it takes longer than that, reconsider or break it into smaller steps.",
"affirmation": "My money moves with intention, not reaction. I honor my needs and protect my stability."
}
},
{
"factor_type": "planet_sign_archetypes",
"factor_value": "element_fire",
"weight": 1.15,
"factor_insights": {
"motivation": "Fire energy nudges you to act decisively, but Cancer’s emotional layers demand balance.",
"caution": "Avoid dismissing small, unexpected expenses as ‘not worth it’—they add up fast.",
"reflection": "Ask: If my bank account grew by $X tomorrow, what would I do differently?",
"daily_tip": "When tempted to splurge, ask: Would I still want this tomorrow?",
"affirmation": "Every dollar today serves a purpose that aligns with my values."
}
},
{
"factor_type": "planet_house_focus",
"factor_value": "eighth_house",
"weight": 1.25,
"factor_insights": {
"motivation": "Trust that every dollar you protect now is a shield against future financial surprises.",
"caution": "Avoid impulsive withdrawals or sudden financial commitments—this house thrives on calculated risk.",
"reflection": "Your past financial habits may still shape this moment—what’s one area you’re ready to rewrite?",
"daily_tip": "End your day by reviewing one unexpected expense—why did it happen, and how can you prevent it?",
"affirmation": "I honor my boundaries with money, trusting that every choice aligns with my deepest needs."
}
},
{
"factor_type": "transits_archetypes",
"factor_value": "conjunction_growth",
"weight": 1.3,
"factor_insights": {
"motivation": "Ask: Where do I spend without intention? Let answers guide adjustments, not guilt.",
"caution": "Avoid emotional decisions tied to ‘needs’ that don’t align with your long-term goals.",
"reflection": "Track every purchase for 24 hours. If it doesn’t serve a clear purpose, delete the receipt.",
"daily_tip": "Set a ‘no-spend’ rule for one meal/day. Use it to practice gratitude for what you have.",
"affirmation": "Every expense today serves a future I can trust. I am disciplined, not deprived."
}
},
{
"factor_type": "aspects",
"factor_value": "conjunction",
"weight": 1.2,
"factor_insights": {
"motivation": "This high energy demands discipline: resist impulse buys, and let your wallet speak before your heart.",
"caution": "Ask yourself: Is this purchase aligned with my long-term goals, or just a short-term fix?",
"reflection": "Revisit your budget like a map—where do you overspend, and where do you hoard? Balance is key.",
"daily_tip": "Open your bank app right now and check your balance. No excuses. This is non-negotiable discipline.",
"affirmation": "Every dollar I spend today serves a purpose, not an emotion. I align my wallet with my values."
}
}
],
"debug_trace": null
}
],
"_enterprise": {
"client": "The Numerology API",
"plan": "Enterprise",
"request_id": "d99796a2a21389e4",
"quota": "unlimited",
"usage_tracking": false
},
"_api_metadata_": {
"api_name": "The Numerology API by Dakidarts®",
"api_version": "1.0.1",
"endpoint_name": "horoscope_planetary_daily_post",
"endpoint_description": "Provides daily planetary section reports (non-general sections).",
"developer": "Dakidarts®",
"copyright": "© 2026 Dakidarts®. All rights reserved.",
"documentation_url": "https://docs.numerologyapi.com/",
"response_timestamp": "2026-04-08T11:28:01.589165+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": ""
}
}