Synastry API
시너스트리(Synastry)는 두 사람의 출생 차트를 비교하여 관계의 역학과 호환성을 분석하는 점성술 기법입니다. 연인, 친구, 비즈니스 파트너, 가족 간의 상호작용 패턴과 잠재력을 파악할 수 있습니다.
시너스트리 계산
/v1/astrology/synastryRelationship두 사람의 차트를 비교하여 관계 호환성과 시너스트리 애스펙트를 분석합니다.
시너스트리란?
시너스트리는 두 개의 차트를 겹쳐놓고 행성들 간의 애스펙트를 분석합니다. 한 사람의 행성이 다른 사람의 행성과 이루는 각도 관계를 통해 다음을 파악합니다:
- 상호 인력: 두 사람이 서로에게 끌리는 이유와 방식
- 도전 영역: 갈등이나 긴장이 발생할 수 있는 부분
- 성장 기회: 관계를 통해 서로 발전할 수 있는 영역
- 소통 패턴: 감정과 생각을 교환하는 방식
- 장기 잠재력: 관계의 지속 가능성과 진화 방향
시너스트리의 기본 원리
예를 들어, Alice의 금성(사랑과 가치)이 Bob의 태양(정체성과 자아)과 트라인 (120도)을 이루면, Alice는 Bob을 매력적으로 느끼고, Bob은 Alice로부터 인정받는 느낌을 받습니다. 반대로 Alice의 달(감정)이 Bob의 화성(에너지)과 스퀘어(90도)를 이루면, 감정적 필요와 행동 방식에서 긴장이 생길 수 있습니다. 시너스트리는 이런 상호작용을 수백 가지 조합으로 분석합니다.
관계 유형별 중요 애스펙트
| 관계 유형 | 최우선 애스펙트 | 중요 요소 |
|---|---|---|
| 연인 (Romantic) | Venus-Mars, Sun-Moon, Venus-Sun, Moon-Venus, Mars-Venus, Ascendant connections | 육체적 끌림, 감정적 조화, 가치관 일치 |
| 친구 (Friendship) | Mercury-Mercury, Sun-Jupiter, Moon-Moon, Venus-Uranus | 소통 스타일, 공통 관심사, 즐거움 공유 |
| 비즈니스 (Business) | Sun-Saturn, Mars-Jupiter, Mercury-Saturn, MC connections | 목표 일치, 역할 분담, 신뢰성, 실행력 |
| 가족 (Family) | Moon-Moon, Sun-Moon, IC connections, 4th house overlays | 정서적 안전감, 뿌리 공유, 양육 패턴 |
요청 파라미터
파라미터
| 이름 | 타입 | 필수 | 설명 |
|---|---|---|---|
person1_datetime | string | 필수 | 첫 번째 사람 출생 날짜/시간 (ISO 8601 형식) 예시: |
person1_location | object | 필수 | 첫 번째 사람 출생 위치 정보 |
person1_location.latitude | number | 필수 | 위도 (-90 ~ 90) 예시: |
person1_location.longitude | number | 필수 | 경도 (-180 ~ 180) 예시: |
person1_location.timezone | string | 선택 | IANA 타임존 (예: Asia/Seoul) - 미제공 시 좌표로 자동 감지 예시: |
person1_name | string | 선택 | 첫 번째 사람 이름 예시: 기본값: |
person2_datetime | string | 필수 | 두 번째 사람 출생 날짜/시간 (ISO 8601 형식) 예시: |
person2_location | object | 필수 | 두 번째 사람 출생 위치 정보 |
person2_name | string | 선택 | 두 번째 사람 이름 예시: 기본값: |
relationship_type | string | 선택 | 관계 타입 (romantic/friendship/business/family/general) 예시: 기본값: |
analysis_depth | string | 선택 | 분석 깊이 (basic/standard/detailed/comprehensive) 예시: 기본값: |
house_system | string | 선택 | 하우스 시스템 (PLACIDUS, WHOLE_SIGN, EQUAL 등) 예시: 기본값: |
orb_degrees | number | 선택 | 주요 애스펙트 오브 허용 범위 (2.0 ~ 15.0도) 예시: 기본값: |
minor_orb_degrees | number | 선택 | 마이너 애스펙트 오브 허용 범위 (1.0 ~ 8.0도) 예시: 기본값: |
include_minor_aspects | boolean | 선택 | 마이너 애스펙트 포함 여부 (세미섹스타일, 퀸쿤스 등) 예시: 기본값: |
include_composite | boolean | 선택 | 합성 차트(Composite Chart) 포함 여부 예시: 기본값: |
compatibility_method | string | 선택 | 호환성 계산 방법 (simple/weighted/advanced) 예시: 기본값: |
emphasis_luminaries | boolean | 선택 | 태양, 달 강조 여부 (호환성 계산 시 가중치 증가) 예시: 기본값: |
relationship_type과 analysis_depth
relationship_type을 지정하면 해당 관계에 맞는 애스펙트에 더 높은 가중치를 부여합니다. analysis_depth를 "detailed"나 "comprehensive"로 설정하면 더 많은 분석 데이터(하우스 오버레이 상세 분석, 원소/모드 분석 등)가 포함됩니다.
요청 예시
curl -X POST https://api.destinyapi.com/v1/astrology/synastry \
-H "X-API-Key: your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"person1_datetime": "1990-01-15T14:30:00",
"person1_location": {
"latitude": 37.5665,
"longitude": 126.978,
"timezone": "Asia/Seoul",
"elevation": 38
},
"person1_name": "John Doe",
"person2_datetime": "1992-03-20T16:45:00",
"person2_location": {
"latitude": 37.5665,
"longitude": 126.978,
"timezone": "Asia/Seoul",
"elevation": 38
},
"person2_name": "Jane Smith",
"relationship_type": "romantic",
"analysis_depth": "standard",
"house_system": "PLACIDUS",
"orb_degrees": 8,
"minor_orb_degrees": 3,
"include_minor_aspects": false,
"include_composite": false,
"include_midpoint_analysis": false,
"include_vertex_points": false,
"compatibility_method": "weighted",
"emphasis_luminaries": true,
"emphasis_personal_planets": true
}'응답 구조
성공 응답 (200)
성공 응답
{
"success": true,
"data": {
"person1_chart": {
"chart_info": {
"name": "John Doe",
"datetime": "1990-01-15T14:30:00",
"house_system": "PLACIDUS"
},
"bodies": {
"Moon": {
"longitude": 164.10728449894503,
"latitude": -2.433219801367135,
"sign": "Virgo",
"sign_degree": 14.107284498945035,
"house": 4,
"type": "luminary",
"category": "personal",
"weight": 10,
"retrograde": false,
"speed": 12.572773570309437,
"name_ko": "달",
"name_en": "Moon"
},
"Pluto": {
"longitude": 227.42263468468818,
"latitude": 15.37669864517166,
"sign": "Scorpio",
"sign_degree": 17.422634684688177,
"house": 6,
"type": "planet",
"category": "transpersonal",
"weight": 4,
"retrograde": false,
"speed": 0.020466473597480217,
"name_ko": "명왕성",
"name_en": "Pluto"
},
"Mercury": {
"longitude": 281.5452507322837,
"latitude": 3.37829136814258,
"sign": "Capricorn",
"sign_degree": 11.545250732283705,
"house": 8,
"type": "planet",
"category": "personal",
"weight": 8,
"retrograde": false,
"speed": -0.7633419239937211,
"name_ko": "수성",
"name_en": "Mercury"
},
"Mars": {
"longitude": 259.71630173185815,
"latitude": -0.18890186715558102,
"sign": "Sagittarius",
"sign_degree": 19.716301731858152,
"house": 7,
"type": "planet",
"category": "personal",
"weight": 8,
"retrograde": false,
"speed": 0.7117844995264022,
"name_ko": "화성",
"name_en": "Mars"
},
"Sun": {
"longitude": 294.8024863243448,
"latitude": -0.00008908560370540947,
"sign": "Capricorn",
"sign_degree": 24.802486324344784,
"house": 8,
"type": "luminary",
"category": "personal",
"weight": 10,
"retrograde": false,
"speed": 1.0182543072914996,
"name_ko": "태양",
"name_en": "Sun"
},
"Uranus": {
"longitude": 276.59757302053856,
"latitude": -0.2726160945577932,
"sign": "Capricorn",
"sign_degree": 6.597573020538562,
"house": 8,
"type": "planet",
"category": "transpersonal",
"weight": 4,
"retrograde": false,
"speed": 0.057876678783941315,
"name_ko": "천왕성",
"name_en": "Uranus"
},
"Neptune": {
"longitude": 282.5556941535978,
"latitude": 0.8457625771169008,
"sign": "Capricorn",
"sign_degree": 12.555694153597813,
"house": 8,
"type": "planet",
"category": "transpersonal",
"weight": 4,
"retrograde": false,
"speed": 0.03720272361533716,
"name_ko": "해왕성",
"name_en": "Neptune"
},
"Saturn": {
"longitude": 287.28256992260805,
"latitude": 0.2771488150757121,
"sign": "Capricorn",
"sign_degree": 17.282569922608047,
"house": 8,
"type": "planet",
"category": "social",
"weight": 6,
"retrograde": false,
"speed": 0.11785094930019113,
"name_ko": "토성",
"name_en": "Saturn"
},
"Venus": {
"longitude": 300.84613239834005,
"latitude": 5.345328409295521,
"sign": "Aquarius",
"sign_degree": 0.8461323983400462,
"house": 9,
"type": "planet",
"category": "personal",
"weight": 9,
"retrograde": false,
"speed": -0.5903041354031302,
"name_ko": "금성",
"name_en": "Venus"
},
"Jupiter": {
"longitude": 93.39789745021899,
"latitude": -0.08336863355896541,
"sign": "Cancer",
"sign_degree": 3.3978974502189914,
"house": 1,
"type": "planet",
"category": "social",
"weight": 6,
"retrograde": false,
"speed": -0.11775938785376638,
"name_ko": "목성",
"name_en": "Jupiter"
},
"True Node": {
"longitude": 317.7080946575413,
"latitude": 0,
"sign": "Aquarius",
"sign_degree": 17.708094657541324,
"house": 9,
"type": "node",
"category": "point",
"weight": 5,
"retrograde": false,
"speed": -0.05294114231446656,
"name_ko": "드래곤헤드",
"name_en": "True Node"
}
},
"angles": {
"ASC": {
"longitude": 73.80217769863685,
"sign": "Gemini",
"sign_degree": 13.802177698636854,
"type": "angle",
"category": "angle",
"weight": 8,
"name_ko": "상승점",
"name_en": "ASC"
},
"MC": {
"longitude": 321.51259762720684,
"sign": "Aquarius",
"sign_degree": 21.512597627206844,
"type": "angle",
"category": "angle",
"weight": 7,
"name_ko": "천정점",
"name_en": "MC"
}
},
"houses": {
"house_1": {
"cusp_longitude": 73.80217763515988,
"sign": "Gemini",
"sign_degree": 13.802177635159879,
"bodies_in_house": [
"Jupiter"
]
},
"house_2": {
"cusp_longitude": 96.2296514991633,
"sign": "Cancer",
"sign_degree": 6.229651499163296,
"bodies_in_house": []
},
"house_3": {
"cusp_longitude": 117.44718533695762,
"sign": "Cancer",
"sign_degree": 27.447185336957617,
"bodies_in_house": []
},
"house_4": {
"cusp_longitude": 141.5125975648466,
"sign": "Leo",
"sign_degree": 21.5125975648466,
"bodies_in_house": [
"Moon"
]
},
"house_5": {
"cusp_longitude": 172.51731593092222,
"sign": "Virgo",
"sign_degree": 22.517315930922223,
"bodies_in_house": []
},
"house_6": {
"cusp_longitude": 212.55778173740327,
"sign": "Scorpio",
"sign_degree": 2.5577817374032747,
"bodies_in_house": [
"Pluto"
]
},
"house_7": {
"cusp_longitude": 253.80217763515986,
"sign": "Sagittarius",
"sign_degree": 13.802177635159865,
"bodies_in_house": [
"Mars"
]
},
"house_8": {
"cusp_longitude": 276.2296514991633,
"sign": "Capricorn",
"sign_degree": 6.22965149916331,
"bodies_in_house": [
"Mercury",
"Sun",
"Uranus",
"Neptune",
"Saturn"
]
},
"house_9": {
"cusp_longitude": 297.4471853369576,
"sign": "Capricorn",
"sign_degree": 27.447185336957602,
"bodies_in_house": [
"Venus",
"True Node"
]
},
"house_10": {
"cusp_longitude": 321.5125975648466,
"sign": "Aquarius",
"sign_degree": 21.5125975648466,
"bodies_in_house": []
},
"house_11": {
"cusp_longitude": 352.5173159309222,
"sign": "Pisces",
"sign_degree": 22.517315930922223,
"bodies_in_house": []
},
"house_12": {
"cusp_longitude": 32.557781737403275,
"sign": "Taurus",
"sign_degree": 2.5577817374032747,
"bodies_in_house": []
}
}
},
"person2_chart": {
"chart_info": {
"name": "Jane Smith",
"datetime": "1992-03-20T16:45:00",
"house_system": "PLACIDUS"
},
"bodies": {
"Moon": {
"longitude": 200.90886519532717,
"latitude": -4.837093480495417,
"sign": "Libra",
"sign_degree": 20.908865195327166,
"house": 2,
"type": "luminary",
"category": "personal",
"weight": 10,
"retrograde": false,
"speed": 14.14125379892539,
"name_ko": "달",
"name_en": "Moon"
},
"Pluto": {
"longitude": 232.78511103259214,
"latitude": 15.114371678509414,
"sign": "Scorpio",
"sign_degree": 22.78511103259214,
"house": 3,
"type": "planet",
"category": "transpersonal",
"weight": 4,
"retrograde": false,
"speed": -0.013620645040646195,
"name_ko": "명왕성",
"name_en": "Pluto"
},
"Mercury": {
"longitude": 10.587737029453237,
"latitude": 3.4929852822678376,
"sign": "Aries",
"sign_degree": 10.587737029453237,
"house": 8,
"type": "planet",
"category": "personal",
"weight": 8,
"retrograde": false,
"speed": -0.4255558415223959,
"name_ko": "수성",
"name_en": "Mercury"
},
"Mars": {
"longitude": 323.9845088310343,
"latitude": -1.1713319129346715,
"sign": "Aquarius",
"sign_degree": 23.984508831034304,
"house": 6,
"type": "planet",
"category": "personal",
"weight": 8,
"retrograde": false,
"speed": 0.7742542386040441,
"name_ko": "화성",
"name_en": "Mars"
},
"Sun": {
"longitude": 359.9565262738567,
"latitude": -0.0002441919566703271,
"sign": "Pisces",
"sign_degree": 29.956526273856696,
"house": 12,
"type": "luminary",
"category": "personal",
"weight": 10,
"retrograde": false,
"speed": 0.9929855802511156,
"name_ko": "태양",
"name_en": "Sun"
},
"Uranus": {
"longitude": 287.5678268232757,
"latitude": -0.38969731134573204,
"sign": "Capricorn",
"sign_degree": 17.56782682327571,
"house": 5,
"type": "planet",
"category": "transpersonal",
"weight": 4,
"retrograde": false,
"speed": 0.027107249206892448,
"name_ko": "천왕성",
"name_en": "Uranus"
},
"Neptune": {
"longitude": 288.69159889562667,
"latitude": 0.7353732426327957,
"sign": "Capricorn",
"sign_degree": 18.69159889562667,
"house": 5,
"type": "planet",
"category": "transpersonal",
"weight": 4,
"retrograde": false,
"speed": 0.016881702231330564,
"name_ko": "해왕성",
"name_en": "Neptune"
},
"Saturn": {
"longitude": 314.86868443640816,
"latitude": -0.6890414214103711,
"sign": "Aquarius",
"sign_degree": 14.86868443640816,
"house": 6,
"type": "planet",
"category": "social",
"weight": 6,
"retrograde": false,
"speed": 0.09588293305569096,
"name_ko": "토성",
"name_en": "Saturn"
},
"Venus": {
"longitude": 337.8088845315611,
"latitude": -1.227463044256219,
"sign": "Pisces",
"sign_degree": 7.808884531561091,
"house": 12,
"type": "planet",
"category": "personal",
"weight": 9,
"retrograde": false,
"speed": 1.2345044427092944,
"name_ko": "금성",
"name_en": "Venus"
},
"Jupiter": {
"longitude": 157.14636303500836,
"latitude": 1.3767747465469413,
"sign": "Virgo",
"sign_degree": 7.146363035008363,
"house": 1,
"type": "planet",
"category": "social",
"weight": 6,
"retrograde": false,
"speed": -0.11237905873713316,
"name_ko": "목성",
"name_en": "Jupiter"
},
"True Node": {
"longitude": 275.6062105206869,
"latitude": 0,
"sign": "Capricorn",
"sign_degree": 5.606210520686886,
"house": 4,
"type": "node",
"category": "point",
"weight": 5,
"retrograde": false,
"speed": -0.052964109613640176,
"name_ko": "드래곤헤드",
"name_en": "True Node"
}
},
"angles": {
"ASC": {
"longitude": 156.63638574248293,
"sign": "Virgo",
"sign_degree": 6.636385742482929,
"type": "angle",
"category": "angle",
"weight": 8,
"name_ko": "상승점",
"name_en": "ASC"
},
"MC": {
"longitude": 63.35016684124637,
"sign": "Gemini",
"sign_degree": 3.35016684124637,
"type": "angle",
"category": "angle",
"weight": 7,
"name_ko": "천정점",
"name_en": "MC"
}
},
"houses": {
"house_1": {
"cusp_longitude": 156.63638567477165,
"sign": "Virgo",
"sign_degree": 6.636385674771645,
"bodies_in_house": [
"Jupiter"
]
},
"house_2": {
"cusp_longitude": 181.1784842744084,
"sign": "Libra",
"sign_degree": 1.1784842744083903,
"bodies_in_house": [
"Moon"
]
},
"house_3": {
"cusp_longitude": 210.39753510808856,
"sign": "Scorpio",
"sign_degree": 0.39753510808856163,
"bodies_in_house": [
"Pluto"
]
},
"house_4": {
"cusp_longitude": 243.35016676163372,
"sign": "Sagittarius",
"sign_degree": 3.350166761633716,
"bodies_in_house": [
"True Node"
]
},
"house_5": {
"cusp_longitude": 277.12065248858073,
"sign": "Capricorn",
"sign_degree": 7.120652488580731,
"bodies_in_house": [
"Uranus",
"Neptune"
]
},
"house_6": {
"cusp_longitude": 308.60839825700305,
"sign": "Aquarius",
"sign_degree": 8.608398257003046,
"bodies_in_house": [
"Mars",
"Saturn"
]
},
"house_7": {
"cusp_longitude": 336.63638567477165,
"sign": "Pisces",
"sign_degree": 6.636385674771645,
"bodies_in_house": []
},
"house_8": {
"cusp_longitude": 1.1784842744083903,
"sign": "Aries",
"sign_degree": 1.1784842744083903,
"bodies_in_house": [
"Mercury"
]
},
"house_9": {
"cusp_longitude": 30.39753510808856,
"sign": "Taurus",
"sign_degree": 0.39753510808856163,
"bodies_in_house": []
},
"house_10": {
"cusp_longitude": 63.350166761633716,
"sign": "Gemini",
"sign_degree": 3.350166761633716,
"bodies_in_house": []
},
"house_11": {
"cusp_longitude": 97.1206524885807,
"sign": "Cancer",
"sign_degree": 7.120652488580703,
"bodies_in_house": []
},
"house_12": {
"cusp_longitude": 128.60839825700305,
"sign": "Leo",
"sign_degree": 8.608398257003046,
"bodies_in_house": [
"Sun",
"Venus"
]
}
}
},
"synastry_info": {
"person1_name": "John Doe",
"person2_name": "Jane Smith",
"person1_datetime": "1990-01-15T14:30:00",
"person2_datetime": "1992-03-20T16:45:00",
"relationship_type": "romantic",
"analysis_depth": "standard",
"house_system": "PLACIDUS",
"orb_degrees": 8,
"minor_orb_degrees": 3,
"compatibility_method": "weighted",
"calculation_date": "2025-11-12T03:59:43.737119"
},
"synastry_aspects": [
{
"person1_point": "MC",
"person2_point": "Moon",
"person1_point_ko": "천정점",
"person2_point_ko": "달",
"aspect_type": "trine",
"aspect_code": "TRI",
"orb": 0.6,
"exact_angle": 120.6,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 83.06,
"tightness": "exact",
"aspect_sign": "Sagittarius",
"aspect_sign_ko": "궁수자리",
"sign_interpretation": "확장적이고 모험적인 조화, 공통 철학과 이상",
"interpretation_key": "mc_trine_moon"
},
{
"person1_point": "Venus",
"person2_point": "Sun",
"person1_point_ko": "금성",
"person2_point_ko": "태양",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 0.89,
"exact_angle": 59.11,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 67.51,
"tightness": "exact",
"aspect_sign": "Pisces",
"aspect_sign_ko": "물고기자리",
"sign_interpretation": "부드럽고 이해심 깊은 협력",
"interpretation_key": "venus_sextile_sun"
},
{
"person1_point": "Mars",
"person2_point": "Moon",
"person1_point_ko": "화성",
"person2_point_ko": "달",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 1.19,
"exact_angle": 58.81,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 61.83,
"tightness": "tight",
"aspect_sign": "Scorpio",
"aspect_sign_ko": "전갈자리",
"sign_interpretation": "깊이 있고 변화를 돕는 협력",
"interpretation_key": "mars_sextile_moon"
},
{
"person1_point": "Venus",
"person2_point": "MC",
"person1_point_ko": "금성",
"person2_point_ko": "천정점",
"aspect_type": "trine",
"aspect_code": "TRI",
"orb": 2.5,
"exact_angle": 122.5,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 57.57,
"tightness": "tight",
"aspect_sign": "Aries",
"aspect_sign_ko": "양자리",
"sign_interpretation": "열정적이고 직접적인 조화로운 에너지 교환",
"interpretation_key": "venus_trine_mc"
},
{
"person1_point": "Sun",
"person2_point": "Moon",
"person1_point_ko": "태양",
"person2_point_ko": "달",
"aspect_type": "square",
"aspect_code": "SQR",
"orb": 3.89,
"exact_angle": 93.89,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 55.57,
"tightness": "moderate",
"aspect_sign": "Sagittarius",
"aspect_sign_ko": "궁수자리",
"sign_interpretation": "과도함과 무책임의 갈등, 신념 충돌",
"interpretation_key": "sun_square_moon"
},
{
"person1_point": "ASC",
"person2_point": "Saturn",
"person1_point_ko": "상승점",
"person2_point_ko": "토성",
"aspect_type": "trine",
"aspect_code": "TRI",
"orb": 1.07,
"exact_angle": 118.93,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 55.03,
"tightness": "tight",
"aspect_sign": "Aries",
"aspect_sign_ko": "양자리",
"sign_interpretation": "열정적이고 직접적인 조화로운 에너지 교환",
"interpretation_key": "asc_trine_saturn"
},
{
"person1_point": "MC",
"person2_point": "Mars",
"person1_point_ko": "천정점",
"person2_point_ko": "화성",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 2.47,
"exact_angle": 2.47,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 54.2,
"tightness": "tight",
"aspect_sign": "Aquarius",
"aspect_sign_ko": "물병자리",
"sign_interpretation": "독창적이고 미래 지향적인 결합",
"interpretation_key": "mc_conjunction_mars"
},
{
"person1_point": "True Node",
"person2_point": "Moon",
"person1_point_ko": "드래곤헤드",
"person2_point_ko": "달",
"aspect_type": "trine",
"aspect_code": "TRI",
"orb": 3.2,
"exact_angle": 116.8,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 53.03,
"tightness": "moderate",
"aspect_sign": "Sagittarius",
"aspect_sign_ko": "궁수자리",
"sign_interpretation": "확장적이고 모험적인 조화, 공통 철학과 이상",
"interpretation_key": "true node_trine_moon"
},
{
"person1_point": "Uranus",
"person2_point": "ASC",
"person1_point_ko": "천왕성",
"person2_point_ko": "상승점",
"aspect_type": "trine",
"aspect_code": "TRI",
"orb": 0.04,
"exact_angle": 119.96,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 52.6,
"tightness": "exact",
"aspect_sign": "Scorpio",
"aspect_sign_ko": "전갈자리",
"sign_interpretation": "깊고 강렬한 변화적 조화, 상호 변화와 성장",
"interpretation_key": "uranus_trine_asc"
},
{
"person1_point": "Mercury",
"person2_point": "Mercury",
"person1_point_ko": "수성",
"person2_point_ko": "수성",
"aspect_type": "square",
"aspect_code": "SQR",
"orb": 0.96,
"exact_angle": 89.04,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 50.64,
"tightness": "exact",
"aspect_sign": "Aquarius",
"aspect_sign_ko": "물병자리",
"sign_interpretation": "예측 불가능하고 거리감 있는 갈등",
"interpretation_key": "mercury_square_mercury"
},
{
"person1_point": "Jupiter",
"person2_point": "Sun",
"person1_point_ko": "목성",
"person2_point_ko": "태양",
"aspect_type": "square",
"aspect_code": "SQR",
"orb": 3.44,
"exact_angle": 93.44,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 47.75,
"tightness": "moderate",
"aspect_sign": "Taurus",
"aspect_sign_ko": "황소자리",
"sign_interpretation": "고집스럽고 완고한 갈등, 가치관 차이",
"interpretation_key": "jupiter_square_sun"
},
{
"person1_point": "Moon",
"person2_point": "Uranus",
"person1_point_ko": "달",
"person2_point_ko": "천왕성",
"aspect_type": "trine",
"aspect_code": "TRI",
"orb": 3.46,
"exact_angle": 123.46,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 47.61,
"tightness": "moderate",
"aspect_sign": "Scorpio",
"aspect_sign_ko": "전갈자리",
"sign_interpretation": "깊고 강렬한 변화적 조화, 상호 변화와 성장",
"interpretation_key": "moon_trine_uranus"
},
{
"person1_point": "Saturn",
"person2_point": "Moon",
"person1_point_ko": "토성",
"person2_point_ko": "달",
"aspect_type": "square",
"aspect_code": "SQR",
"orb": 3.63,
"exact_angle": 86.37,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 46.4,
"tightness": "moderate",
"aspect_sign": "Sagittarius",
"aspect_sign_ko": "궁수자리",
"sign_interpretation": "과도함과 무책임의 갈등, 신념 충돌",
"interpretation_key": "saturn_square_moon"
},
{
"person1_point": "Sun",
"person2_point": "Pluto",
"person1_point_ko": "태양",
"person2_point_ko": "명왕성",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 2.02,
"exact_angle": 62.02,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 43.59,
"tightness": "tight",
"aspect_sign": "Sagittarius",
"aspect_sign_ko": "궁수자리",
"sign_interpretation": "개방적이고 성장을 돕는 협력",
"interpretation_key": "sun_sextile_pluto"
},
{
"person1_point": "Uranus",
"person2_point": "Venus",
"person1_point_ko": "천왕성",
"person2_point_ko": "금성",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 1.21,
"exact_angle": 61.21,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 41.13,
"tightness": "tight",
"aspect_sign": "Aquarius",
"aspect_sign_ko": "물병자리",
"sign_interpretation": "혁신적이고 독립적인 협력",
"interpretation_key": "uranus_sextile_venus"
},
{
"person1_point": "Jupiter",
"person2_point": "Venus",
"person1_point_ko": "목성",
"person2_point_ko": "금성",
"aspect_type": "trine",
"aspect_code": "TRI",
"orb": 4.41,
"exact_angle": 115.59,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 40.24,
"tightness": "moderate",
"aspect_sign": "Taurus",
"aspect_sign_ko": "황소자리",
"sign_interpretation": "안정적이고 실용적인 조화, 물질적 풍요로움",
"interpretation_key": "jupiter_trine_venus"
},
{
"person1_point": "Moon",
"person2_point": "Neptune",
"person1_point_ko": "달",
"person2_point_ko": "해왕성",
"aspect_type": "trine",
"aspect_code": "TRI",
"orb": 4.58,
"exact_angle": 124.58,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 39.43,
"tightness": "moderate",
"aspect_sign": "Scorpio",
"aspect_sign_ko": "전갈자리",
"sign_interpretation": "깊고 강렬한 변화적 조화, 상호 변화와 성장",
"interpretation_key": "moon_trine_neptune"
},
{
"person1_point": "Saturn",
"person2_point": "Uranus",
"person1_point_ko": "토성",
"person2_point_ko": "천왕성",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 0.29,
"exact_angle": 0.29,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 38.86,
"tightness": "exact",
"aspect_sign": "Capricorn",
"aspect_sign_ko": "염소자리",
"sign_interpretation": "구조적이고 책임감 있는 결합",
"interpretation_key": "saturn_conjunction_uranus"
},
{
"person1_point": "Mercury",
"person2_point": "Venus",
"person1_point_ko": "수성",
"person2_point_ko": "금성",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 3.74,
"exact_angle": 56.26,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 38.33,
"tightness": "moderate",
"aspect_sign": "Aquarius",
"aspect_sign_ko": "물병자리",
"sign_interpretation": "혁신적이고 독립적인 협력",
"interpretation_key": "mercury_sextile_venus"
},
{
"person1_point": "Sun",
"person2_point": "Sun",
"person1_point_ko": "태양",
"person2_point_ko": "태양",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 5.15,
"exact_angle": 65.15,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 37.8,
"tightness": "moderate",
"aspect_sign": "Aquarius",
"aspect_sign_ko": "물병자리",
"sign_interpretation": "혁신적이고 독립적인 협력",
"interpretation_key": "sun_sextile_sun"
},
{
"person1_point": "Uranus",
"person2_point": "Jupiter",
"person1_point_ko": "천왕성",
"person2_point_ko": "목성",
"aspect_type": "trine",
"aspect_code": "TRI",
"orb": 0.55,
"exact_angle": 119.45,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 37.8,
"tightness": "exact",
"aspect_sign": "Scorpio",
"aspect_sign_ko": "전갈자리",
"sign_interpretation": "깊고 강렬한 변화적 조화, 상호 변화와 성장",
"interpretation_key": "uranus_trine_jupiter"
},
{
"person1_point": "MC",
"person2_point": "Pluto",
"person1_point_ko": "천정점",
"person2_point_ko": "명왕성",
"aspect_type": "square",
"aspect_code": "SQR",
"orb": 1.27,
"exact_angle": 88.73,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 36.96,
"tightness": "tight",
"aspect_sign": "Capricorn",
"aspect_sign_ko": "염소자리",
"sign_interpretation": "책임과 제약의 갈등, 경직된 관계",
"interpretation_key": "mc_square_pluto"
},
{
"person1_point": "Mercury",
"person2_point": "ASC",
"person1_point_ko": "수성",
"person2_point_ko": "상승점",
"aspect_type": "trine",
"aspect_code": "TRI",
"orb": 4.91,
"exact_angle": 124.91,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 35.84,
"tightness": "moderate",
"aspect_sign": "Scorpio",
"aspect_sign_ko": "전갈자리",
"sign_interpretation": "깊고 강렬한 변화적 조화, 상호 변화와 성장",
"interpretation_key": "mercury_trine_asc"
},
{
"person1_point": "ASC",
"person2_point": "Mercury",
"person1_point_ko": "상승점",
"person2_point_ko": "수성",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 3.21,
"exact_angle": 63.21,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 35.83,
"tightness": "moderate",
"aspect_sign": "Taurus",
"aspect_sign_ko": "황소자리",
"sign_interpretation": "실용적이고 안정적인 협력",
"interpretation_key": "asc_sextile_mercury"
},
{
"person1_point": "Saturn",
"person2_point": "Neptune",
"person1_point_ko": "토성",
"person2_point_ko": "해왕성",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 1.41,
"exact_angle": 1.41,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 34.36,
"tightness": "tight",
"aspect_sign": "Capricorn",
"aspect_sign_ko": "염소자리",
"sign_interpretation": "구조적이고 책임감 있는 결합",
"interpretation_key": "saturn_conjunction_neptune"
},
{
"person1_point": "Neptune",
"person2_point": "Mercury",
"person1_point_ko": "해왕성",
"person2_point_ko": "수성",
"aspect_type": "square",
"aspect_code": "SQR",
"orb": 1.97,
"exact_angle": 88.03,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 33.73,
"tightness": "tight",
"aspect_sign": "Aquarius",
"aspect_sign_ko": "물병자리",
"sign_interpretation": "예측 불가능하고 거리감 있는 갈등",
"interpretation_key": "neptune_square_mercury"
},
{
"person1_point": "Mars",
"person2_point": "Mars",
"person1_point_ko": "화성",
"person2_point_ko": "화성",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 4.27,
"exact_angle": 64.27,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 33.02,
"tightness": "moderate",
"aspect_sign": "Capricorn",
"aspect_sign_ko": "염소자리",
"sign_interpretation": "체계적이고 건설적인 협력",
"interpretation_key": "mars_sextile_mars"
},
{
"person1_point": "Uranus",
"person2_point": "True Node",
"person1_point_ko": "천왕성",
"person2_point_ko": "드래곤헤드",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 0.99,
"exact_angle": 0.99,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 32.43,
"tightness": "exact",
"aspect_sign": "Capricorn",
"aspect_sign_ko": "염소자리",
"sign_interpretation": "구조적이고 책임감 있는 결합",
"interpretation_key": "uranus_conjunction_true node"
},
{
"person1_point": "Moon",
"person2_point": "Venus",
"person1_point_ko": "달",
"person2_point_ko": "금성",
"aspect_type": "opposition",
"aspect_code": "OPP",
"orb": 6.3,
"exact_angle": 173.7,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 32,
"tightness": "loose",
"aspect_sign": "Sagittarius",
"aspect_sign_ko": "궁수자리",
"sign_interpretation": "자유와 확장 욕구의 대립",
"interpretation_key": "moon_opposition_venus"
},
{
"person1_point": "True Node",
"person2_point": "Saturn",
"person1_point_ko": "드래곤헤드",
"person2_point_ko": "토성",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 2.84,
"exact_angle": 2.84,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 31.51,
"tightness": "tight",
"aspect_sign": "Aquarius",
"aspect_sign_ko": "물병자리",
"sign_interpretation": "독창적이고 미래 지향적인 결합",
"interpretation_key": "true node_conjunction_saturn"
},
{
"person1_point": "Mercury",
"person2_point": "Jupiter",
"person1_point_ko": "수성",
"person2_point_ko": "목성",
"aspect_type": "trine",
"aspect_code": "TRI",
"orb": 4.4,
"exact_angle": 124.4,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 31.37,
"tightness": "moderate",
"aspect_sign": "Scorpio",
"aspect_sign_ko": "전갈자리",
"sign_interpretation": "깊고 강렬한 변화적 조화, 상호 변화와 성장",
"interpretation_key": "mercury_trine_jupiter"
},
{
"person1_point": "Jupiter",
"person2_point": "ASC",
"person1_point_ko": "목성",
"person2_point_ko": "상승점",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 3.24,
"exact_angle": 63.24,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 31.24,
"tightness": "moderate",
"aspect_sign": "Leo",
"aspect_sign_ko": "사자자리",
"sign_interpretation": "창의적이고 즐거운 협력",
"interpretation_key": "jupiter_sextile_asc"
},
{
"person1_point": "Jupiter",
"person2_point": "True Node",
"person1_point_ko": "목성",
"person2_point_ko": "드래곤헤드",
"aspect_type": "opposition",
"aspect_code": "OPP",
"orb": 2.21,
"exact_angle": 177.79,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 30,
"tightness": "tight",
"aspect_sign": "Aries",
"aspect_sign_ko": "양자리",
"sign_interpretation": "직접적인 대립과 경쟁적 관계",
"interpretation_key": "jupiter_opposition_true node"
},
{
"person1_point": "ASC",
"person2_point": "Venus",
"person1_point_ko": "상승점",
"person2_point_ko": "금성",
"aspect_type": "square",
"aspect_code": "SQR",
"orb": 5.99,
"exact_angle": 95.99,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 28.61,
"tightness": "moderate",
"aspect_sign": "Aries",
"aspect_sign_ko": "양자리",
"sign_interpretation": "충동적이고 성급한 갈등, 행동으로 표현되는 긴장",
"interpretation_key": "asc_square_venus"
},
{
"person1_point": "Sun",
"person2_point": "Neptune",
"person1_point_ko": "태양",
"person2_point_ko": "해왕성",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 6.11,
"exact_angle": 6.11,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 28.31,
"tightness": "loose",
"aspect_sign": "Capricorn",
"aspect_sign_ko": "염소자리",
"sign_interpretation": "구조적이고 책임감 있는 결합",
"interpretation_key": "sun_conjunction_neptune"
},
{
"person1_point": "ASC",
"person2_point": "Moon",
"person1_point_ko": "상승점",
"person2_point_ko": "달",
"aspect_type": "trine",
"aspect_code": "TRI",
"orb": 7.11,
"exact_angle": 127.11,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 27.08,
"tightness": "loose",
"aspect_sign": "Leo",
"aspect_sign_ko": "사자자리",
"sign_interpretation": "창의적이고 표현적인 조화, 상호 격려와 자신감",
"interpretation_key": "asc_trine_moon"
},
{
"person1_point": "Pluto",
"person2_point": "Saturn",
"person1_point_ko": "명왕성",
"person2_point_ko": "토성",
"aspect_type": "square",
"aspect_code": "SQR",
"orb": 2.55,
"exact_angle": 87.45,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 26.06,
"tightness": "tight",
"aspect_sign": "Capricorn",
"aspect_sign_ko": "염소자리",
"sign_interpretation": "책임과 제약의 갈등, 경직된 관계",
"interpretation_key": "pluto_square_saturn"
},
{
"person1_point": "Mars",
"person2_point": "Saturn",
"person1_point_ko": "화성",
"person2_point_ko": "토성",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 4.85,
"exact_angle": 55.15,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 25.97,
"tightness": "moderate",
"aspect_sign": "Capricorn",
"aspect_sign_ko": "염소자리",
"sign_interpretation": "체계적이고 건설적인 협력",
"interpretation_key": "mars_sextile_saturn"
},
{
"person1_point": "Moon",
"person2_point": "Jupiter",
"person1_point_ko": "달",
"person2_point_ko": "목성",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 6.96,
"exact_angle": 6.96,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 25.29,
"tightness": "loose",
"aspect_sign": "Virgo",
"aspect_sign_ko": "처녀자리",
"sign_interpretation": "분석적이고 개선 지향적인 결합",
"interpretation_key": "moon_conjunction_jupiter"
},
{
"person1_point": "Uranus",
"person2_point": "Mercury",
"person1_point_ko": "천왕성",
"person2_point_ko": "수성",
"aspect_type": "square",
"aspect_code": "SQR",
"orb": 3.99,
"exact_angle": 93.99,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 25.24,
"tightness": "moderate",
"aspect_sign": "Aquarius",
"aspect_sign_ko": "물병자리",
"sign_interpretation": "예측 불가능하고 거리감 있는 갈등",
"interpretation_key": "uranus_square_mercury"
},
{
"person1_point": "Neptune",
"person2_point": "Venus",
"person1_point_ko": "해왕성",
"person2_point_ko": "금성",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 4.75,
"exact_angle": 55.25,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 24.58,
"tightness": "moderate",
"aspect_sign": "Aquarius",
"aspect_sign_ko": "물병자리",
"sign_interpretation": "혁신적이고 독립적인 협력",
"interpretation_key": "neptune_sextile_venus"
},
{
"person1_point": "Moon",
"person2_point": "ASC",
"person1_point_ko": "달",
"person2_point_ko": "상승점",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 7.47,
"exact_angle": 7.47,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 23.67,
"tightness": "loose",
"aspect_sign": "Virgo",
"aspect_sign_ko": "처녀자리",
"sign_interpretation": "분석적이고 개선 지향적인 결합",
"interpretation_key": "moon_conjunction_asc"
},
{
"person1_point": "Pluto",
"person2_point": "Uranus",
"person1_point_ko": "명왕성",
"person2_point_ko": "천왕성",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 0.15,
"exact_angle": 60.15,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 23.65,
"tightness": "exact",
"aspect_sign": "Sagittarius",
"aspect_sign_ko": "궁수자리",
"sign_interpretation": "개방적이고 성장을 돕는 협력",
"interpretation_key": "pluto_sextile_uranus"
},
{
"person1_point": "True Node",
"person2_point": "Mars",
"person1_point_ko": "드래곤헤드",
"person2_point_ko": "화성",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 6.28,
"exact_angle": 6.28,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 23.24,
"tightness": "loose",
"aspect_sign": "Aquarius",
"aspect_sign_ko": "물병자리",
"sign_interpretation": "독창적이고 미래 지향적인 결합",
"interpretation_key": "true node_conjunction_mars"
},
{
"person1_point": "Jupiter",
"person2_point": "Jupiter",
"person1_point_ko": "목성",
"person2_point_ko": "목성",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 3.75,
"exact_angle": 63.75,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 22.51,
"tightness": "moderate",
"aspect_sign": "Leo",
"aspect_sign_ko": "사자자리",
"sign_interpretation": "창의적이고 즐거운 협력",
"interpretation_key": "jupiter_sextile_jupiter"
},
{
"person1_point": "Neptune",
"person2_point": "ASC",
"person1_point_ko": "해왕성",
"person2_point_ko": "상승점",
"aspect_type": "trine",
"aspect_code": "TRI",
"orb": 5.92,
"exact_angle": 125.92,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 21.55,
"tightness": "moderate",
"aspect_sign": "Scorpio",
"aspect_sign_ko": "전갈자리",
"sign_interpretation": "깊고 강렬한 변화적 조화, 상호 변화와 성장",
"interpretation_key": "neptune_trine_asc"
},
{
"person1_point": "Uranus",
"person2_point": "Sun",
"person1_point_ko": "천왕성",
"person2_point_ko": "태양",
"aspect_type": "square",
"aspect_code": "SQR",
"orb": 6.64,
"exact_angle": 83.36,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 21.4,
"tightness": "loose",
"aspect_sign": "Aquarius",
"aspect_sign_ko": "물병자리",
"sign_interpretation": "예측 불가능하고 거리감 있는 갈등",
"interpretation_key": "uranus_square_sun"
},
{
"person1_point": "Mercury",
"person2_point": "True Node",
"person1_point_ko": "수성",
"person2_point_ko": "드래곤헤드",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 5.94,
"exact_angle": 5.94,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 21.12,
"tightness": "moderate",
"aspect_sign": "Capricorn",
"aspect_sign_ko": "염소자리",
"sign_interpretation": "구조적이고 책임감 있는 결합",
"interpretation_key": "mercury_conjunction_true node"
},
{
"person1_point": "Pluto",
"person2_point": "Neptune",
"person1_point_ko": "명왕성",
"person2_point_ko": "해왕성",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 1.27,
"exact_angle": 61.27,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 20.95,
"tightness": "tight",
"aspect_sign": "Sagittarius",
"aspect_sign_ko": "궁수자리",
"sign_interpretation": "개방적이고 성장을 돕는 협력",
"interpretation_key": "pluto_sextile_neptune"
},
{
"person1_point": "Sun",
"person2_point": "Uranus",
"person1_point_ko": "태양",
"person2_point_ko": "천왕성",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 7.23,
"exact_angle": 7.23,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 20.13,
"tightness": "loose",
"aspect_sign": "Capricorn",
"aspect_sign_ko": "염소자리",
"sign_interpretation": "구조적이고 책임감 있는 결합",
"interpretation_key": "sun_conjunction_uranus"
},
{
"person1_point": "MC",
"person2_point": "Saturn",
"person1_point_ko": "천정점",
"person2_point_ko": "토성",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 6.64,
"exact_angle": 6.64,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 19.2,
"tightness": "loose",
"aspect_sign": "Aquarius",
"aspect_sign_ko": "물병자리",
"sign_interpretation": "독창적이고 미래 지향적인 결합",
"interpretation_key": "mc_conjunction_saturn"
},
{
"person1_point": "Mercury",
"person2_point": "Uranus",
"person1_point_ko": "수성",
"person2_point_ko": "천왕성",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 6.02,
"exact_angle": 6.02,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 19.09,
"tightness": "loose",
"aspect_sign": "Capricorn",
"aspect_sign_ko": "염소자리",
"sign_interpretation": "구조적이고 책임감 있는 결합",
"interpretation_key": "mercury_conjunction_uranus"
},
{
"person1_point": "Neptune",
"person2_point": "Jupiter",
"person1_point_ko": "해왕성",
"person2_point_ko": "목성",
"aspect_type": "trine",
"aspect_code": "TRI",
"orb": 5.41,
"exact_angle": 125.41,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 18.36,
"tightness": "moderate",
"aspect_sign": "Scorpio",
"aspect_sign_ko": "전갈자리",
"sign_interpretation": "깊고 강렬한 변화적 조화, 상호 변화와 성장",
"interpretation_key": "neptune_trine_jupiter"
},
{
"person1_point": "ASC",
"person2_point": "Jupiter",
"person1_point_ko": "상승점",
"person2_point_ko": "목성",
"aspect_type": "square",
"aspect_code": "SQR",
"orb": 6.66,
"exact_angle": 83.34,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 18.03,
"tightness": "loose",
"aspect_sign": "Cancer",
"aspect_sign_ko": "게자리",
"sign_interpretation": "감정적 상처와 방어적 태도, 과거에 얽매임",
"interpretation_key": "asc_square_jupiter"
},
{
"person1_point": "ASC",
"person2_point": "ASC",
"person1_point_ko": "상승점",
"person2_point_ko": "상승점",
"aspect_type": "square",
"aspect_code": "SQR",
"orb": 7.17,
"exact_angle": 82.83,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 17.46,
"tightness": "loose",
"aspect_sign": "Cancer",
"aspect_sign_ko": "게자리",
"sign_interpretation": "감정적 상처와 방어적 태도, 과거에 얽매임",
"interpretation_key": "asc_square_asc"
},
{
"person1_point": "Pluto",
"person2_point": "Mars",
"person1_point_ko": "명왕성",
"person2_point_ko": "화성",
"aspect_type": "square",
"aspect_code": "SQR",
"orb": 6.56,
"exact_angle": 96.56,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 17.33,
"tightness": "loose",
"aspect_sign": "Capricorn",
"aspect_sign_ko": "염소자리",
"sign_interpretation": "책임과 제약의 갈등, 경직된 관계",
"interpretation_key": "pluto_square_mars"
},
{
"person1_point": "Saturn",
"person2_point": "Mercury",
"person1_point_ko": "토성",
"person2_point_ko": "수성",
"aspect_type": "square",
"aspect_code": "SQR",
"orb": 6.69,
"exact_angle": 83.31,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 16.2,
"tightness": "loose",
"aspect_sign": "Aquarius",
"aspect_sign_ko": "물병자리",
"sign_interpretation": "예측 불가능하고 거리감 있는 갈등",
"interpretation_key": "saturn_square_mercury"
},
{
"person1_point": "Neptune",
"person2_point": "Uranus",
"person1_point_ko": "해왕성",
"person2_point_ko": "천왕성",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 5.01,
"exact_angle": 5.01,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 15.96,
"tightness": "moderate",
"aspect_sign": "Capricorn",
"aspect_sign_ko": "염소자리",
"sign_interpretation": "구조적이고 책임감 있는 결합",
"interpretation_key": "neptune_conjunction_uranus"
},
{
"person1_point": "True Node",
"person2_point": "Pluto",
"person1_point_ko": "드래곤헤드",
"person2_point_ko": "명왕성",
"aspect_type": "square",
"aspect_code": "SQR",
"orb": 5.08,
"exact_angle": 84.92,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 15.51,
"tightness": "moderate",
"aspect_sign": "Capricorn",
"aspect_sign_ko": "염소자리",
"sign_interpretation": "책임과 제약의 갈등, 경직된 관계",
"interpretation_key": "true node_square_pluto"
},
{
"person1_point": "Pluto",
"person2_point": "Pluto",
"person1_point_ko": "명왕성",
"person2_point_ko": "명왕성",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 5.36,
"exact_angle": 5.36,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 14.84,
"tightness": "moderate",
"aspect_sign": "Scorpio",
"aspect_sign_ko": "전갈자리",
"sign_interpretation": "강렬하고 변화를 일으키는 결합",
"interpretation_key": "pluto_conjunction_pluto"
},
{
"person1_point": "Jupiter",
"person2_point": "Mercury",
"person1_point_ko": "목성",
"person2_point_ko": "수성",
"aspect_type": "square",
"aspect_code": "SQR",
"orb": 7.19,
"exact_angle": 82.81,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 13.77,
"tightness": "loose",
"aspect_sign": "Taurus",
"aspect_sign_ko": "황소자리",
"sign_interpretation": "고집스럽고 완고한 갈등, 가치관 차이",
"interpretation_key": "jupiter_square_mercury"
},
{
"person1_point": "Mercury",
"person2_point": "Neptune",
"person1_point_ko": "수성",
"person2_point_ko": "해왕성",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 7.15,
"exact_angle": 7.15,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 13.7,
"tightness": "loose",
"aspect_sign": "Capricorn",
"aspect_sign_ko": "염소자리",
"sign_interpretation": "구조적이고 책임감 있는 결합",
"interpretation_key": "mercury_conjunction_neptune"
},
{
"person1_point": "Saturn",
"person2_point": "Pluto",
"person1_point_ko": "토성",
"person2_point_ko": "명왕성",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 5.5,
"exact_angle": 54.5,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 13.49,
"tightness": "moderate",
"aspect_sign": "Sagittarius",
"aspect_sign_ko": "궁수자리",
"sign_interpretation": "개방적이고 성장을 돕는 협력",
"interpretation_key": "saturn_sextile_pluto"
},
{
"person1_point": "Neptune",
"person2_point": "Neptune",
"person1_point_ko": "해왕성",
"person2_point_ko": "해왕성",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 6.14,
"exact_angle": 6.14,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 12.37,
"tightness": "loose",
"aspect_sign": "Capricorn",
"aspect_sign_ko": "염소자리",
"sign_interpretation": "구조적이고 책임감 있는 결합",
"interpretation_key": "neptune_conjunction_neptune"
},
{
"person1_point": "True Node",
"person2_point": "Mercury",
"person1_point_ko": "드래곤헤드",
"person2_point_ko": "수성",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 7.12,
"exact_angle": 52.88,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 11.23,
"tightness": "loose",
"aspect_sign": "Pisces",
"aspect_sign_ko": "물고기자리",
"sign_interpretation": "부드럽고 이해심 깊은 협력",
"interpretation_key": "true node_sextile_mercury"
},
{
"person1_point": "Neptune",
"person2_point": "True Node",
"person1_point_ko": "해왕성",
"person2_point_ko": "드래곤헤드",
"aspect_type": "conjunction",
"aspect_code": "CNJ",
"orb": 6.95,
"exact_angle": 6.95,
"aspect_nature": "neutral",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 10.98,
"tightness": "loose",
"aspect_sign": "Capricorn",
"aspect_sign_ko": "염소자리",
"sign_interpretation": "구조적이고 책임감 있는 결합",
"interpretation_key": "neptune_conjunction_true node"
}
],
"house_overlay": {
"person1_in_person2_houses": {
"Moon": {
"house": 1,
"house_meaning": "Self, Identity, First Impressions",
"house_meaning_ko": "자아, 정체성, 첫인상",
"longitude": 164.10728449894503,
"sign": "Virgo",
"point_ko": "달",
"overlay_interpretation": "상대방의 1하우스 영역에 Moon 에너지 투입"
},
"Pluto": {
"house": 3,
"house_meaning": "Communication, Siblings, Short Trips",
"house_meaning_ko": "소통, 형제자매, 단거리 여행",
"longitude": 227.42263468468818,
"sign": "Scorpio",
"point_ko": "명왕성",
"overlay_interpretation": "상대방의 3하우스 영역에 Pluto 에너지 투입"
},
"Mercury": {
"house": 5,
"house_meaning": "Romance, Creativity, Children",
"house_meaning_ko": "연애, 창의성, 자녀",
"longitude": 281.5452507322837,
"sign": "Capricorn",
"point_ko": "수성",
"overlay_interpretation": "상대방의 5하우스 영역에 Mercury 에너지 투입 (연인 관계에 특히 중요)"
},
"Mars": {
"house": 4,
"house_meaning": "Home, Family, Roots",
"house_meaning_ko": "가정, 가족, 뿌리",
"longitude": 259.71630173185815,
"sign": "Sagittarius",
"point_ko": "화성",
"overlay_interpretation": "상대방의 4하우스 영역에 Mars 에너지 투입"
},
"Sun": {
"house": 5,
"house_meaning": "Romance, Creativity, Children",
"house_meaning_ko": "연애, 창의성, 자녀",
"longitude": 294.8024863243448,
"sign": "Capricorn",
"point_ko": "태양",
"overlay_interpretation": "상대방의 연애와 창의성 영역을 활성화 (연인 관계에 특히 중요)"
},
"Uranus": {
"house": 4,
"house_meaning": "Home, Family, Roots",
"house_meaning_ko": "가정, 가족, 뿌리",
"longitude": 276.59757302053856,
"sign": "Capricorn",
"point_ko": "천왕성",
"overlay_interpretation": "상대방의 4하우스 영역에 Uranus 에너지 투입"
},
"Neptune": {
"house": 5,
"house_meaning": "Romance, Creativity, Children",
"house_meaning_ko": "연애, 창의성, 자녀",
"longitude": 282.5556941535978,
"sign": "Capricorn",
"point_ko": "해왕성",
"overlay_interpretation": "상대방의 5하우스 영역에 Neptune 에너지 투입 (연인 관계에 특히 중요)"
},
"Saturn": {
"house": 5,
"house_meaning": "Romance, Creativity, Children",
"house_meaning_ko": "연애, 창의성, 자녀",
"longitude": 287.28256992260805,
"sign": "Capricorn",
"point_ko": "토성",
"overlay_interpretation": "상대방의 5하우스 영역에 Saturn 에너지 투입 (연인 관계에 특히 중요)"
},
"Venus": {
"house": 5,
"house_meaning": "Romance, Creativity, Children",
"house_meaning_ko": "연애, 창의성, 자녀",
"longitude": 300.84613239834005,
"sign": "Aquarius",
"point_ko": "금성",
"overlay_interpretation": "상대방의 연애와 즐거움 영역에 매력적 영향 (연인 관계에 특히 중요)"
},
"Jupiter": {
"house": 10,
"house_meaning": "Career, Reputation, Public Image",
"house_meaning_ko": "경력, 명성, 대중적 이미지",
"longitude": 93.39789745021899,
"sign": "Cancer",
"point_ko": "목성",
"overlay_interpretation": "상대방의 10하우스 영역에 Jupiter 에너지 투입"
},
"True Node": {
"house": 6,
"house_meaning": "Work, Health, Daily Routine",
"house_meaning_ko": "일, 건강, 일상 루틴",
"longitude": 317.7080946575413,
"sign": "Aquarius",
"point_ko": "드래곤헤드",
"overlay_interpretation": "상대방의 6하우스 영역에 True Node 에너지 투입"
},
"ASC": {
"house": 10,
"house_meaning": "Career, Reputation, Public Image",
"house_meaning_ko": "경력, 명성, 대중적 이미지",
"longitude": 73.80217769863685,
"sign": "Gemini",
"point_ko": "상승점",
"overlay_interpretation": "상대방의 10하우스 영역에 ASC 에너지 투입"
},
"MC": {
"house": 6,
"house_meaning": "Work, Health, Daily Routine",
"house_meaning_ko": "일, 건강, 일상 루틴",
"longitude": 321.51259762720684,
"sign": "Aquarius",
"point_ko": "천정점",
"overlay_interpretation": "상대방의 6하우스 영역에 MC 에너지 투입"
}
},
"person2_in_person1_houses": {
"Moon": {
"house": 5,
"house_meaning": "Romance, Creativity, Children",
"house_meaning_ko": "연애, 창의성, 자녀",
"longitude": 200.90886519532717,
"sign": "Libra",
"point_ko": "달",
"overlay_interpretation": "상대방의 5하우스 영역에 Moon 에너지 투입 (연인 관계에 특히 중요)"
},
"Pluto": {
"house": 6,
"house_meaning": "Work, Health, Daily Routine",
"house_meaning_ko": "일, 건강, 일상 루틴",
"longitude": 232.78511103259214,
"sign": "Scorpio",
"point_ko": "명왕성",
"overlay_interpretation": "상대방의 6하우스 영역에 Pluto 에너지 투입"
},
"Mercury": {
"house": 12,
"house_meaning": "Spirituality, Hidden Things, Subconscious",
"house_meaning_ko": "영성, 숨겨진 것들, 무의식",
"longitude": 10.587737029453237,
"sign": "Aries",
"point_ko": "수성",
"overlay_interpretation": "상대방의 12하우스 영역에 Mercury 에너지 투입"
},
"Mars": {
"house": 10,
"house_meaning": "Career, Reputation, Public Image",
"house_meaning_ko": "경력, 명성, 대중적 이미지",
"longitude": 323.9845088310343,
"sign": "Aquarius",
"point_ko": "화성",
"overlay_interpretation": "상대방의 10하우스 영역에 Mars 에너지 투입"
},
"Sun": {
"house": 12,
"house_meaning": "Spirituality, Hidden Things, Subconscious",
"house_meaning_ko": "영성, 숨겨진 것들, 무의식",
"longitude": 359.9565262738567,
"sign": "Pisces",
"point_ko": "태양",
"overlay_interpretation": "상대방의 12하우스 영역에 Sun 에너지 투입"
},
"Uranus": {
"house": 8,
"house_meaning": "Shared Resources, Transformation, Intimacy",
"house_meaning_ko": "공유 자원, 변화, 친밀감",
"longitude": 287.5678268232757,
"sign": "Capricorn",
"point_ko": "천왕성",
"overlay_interpretation": "상대방의 8하우스 영역에 Uranus 에너지 투입 (연인 관계에 특히 중요)"
},
"Neptune": {
"house": 8,
"house_meaning": "Shared Resources, Transformation, Intimacy",
"house_meaning_ko": "공유 자원, 변화, 친밀감",
"longitude": 288.69159889562667,
"sign": "Capricorn",
"point_ko": "해왕성",
"overlay_interpretation": "상대방의 8하우스 영역에 Neptune 에너지 투입 (연인 관계에 특히 중요)"
},
"Saturn": {
"house": 9,
"house_meaning": "Philosophy, Higher Learning, Travel",
"house_meaning_ko": "철학, 고등 교육, 여행",
"longitude": 314.86868443640816,
"sign": "Aquarius",
"point_ko": "토성",
"overlay_interpretation": "상대방의 9하우스 영역에 Saturn 에너지 투입"
},
"Venus": {
"house": 10,
"house_meaning": "Career, Reputation, Public Image",
"house_meaning_ko": "경력, 명성, 대중적 이미지",
"longitude": 337.8088845315611,
"sign": "Pisces",
"point_ko": "금성",
"overlay_interpretation": "상대방의 10하우스 영역에 Venus 에너지 투입"
},
"Jupiter": {
"house": 4,
"house_meaning": "Home, Family, Roots",
"house_meaning_ko": "가정, 가족, 뿌리",
"longitude": 157.14636303500836,
"sign": "Virgo",
"point_ko": "목성",
"overlay_interpretation": "상대방의 4하우스 영역에 Jupiter 에너지 투입"
},
"True Node": {
"house": 7,
"house_meaning": "Partnerships, Marriage, Open Enemies",
"house_meaning_ko": "파트너십, 결혼, 공개적 적",
"longitude": 275.6062105206869,
"sign": "Capricorn",
"point_ko": "드래곤헤드",
"overlay_interpretation": "상대방의 7하우스 영역에 True Node 에너지 투입 (연인 관계에 특히 중요)"
},
"ASC": {
"house": 4,
"house_meaning": "Home, Family, Roots",
"house_meaning_ko": "가정, 가족, 뿌리",
"longitude": 156.63638574248293,
"sign": "Virgo",
"point_ko": "상승점",
"overlay_interpretation": "상대방의 4하우스 영역에 ASC 에너지 투입"
},
"MC": {
"house": 12,
"house_meaning": "Spirituality, Hidden Things, Subconscious",
"house_meaning_ko": "영성, 숨겨진 것들, 무의식",
"longitude": 63.35016684124637,
"sign": "Gemini",
"point_ko": "천정점",
"overlay_interpretation": "상대방의 12하우스 영역에 MC 에너지 투입"
}
},
"significant_overlays": [
{
"direction": "person1_to_person2",
"point": "Moon",
"point_ko": "달",
"house": 1,
"house_meaning": "자아, 정체성, 첫인상",
"significance": "high",
"interpretation": "상대방의 1하우스 영역에 Moon 에너지 투입"
},
{
"direction": "person1_to_person2",
"point": "Sun",
"point_ko": "태양",
"house": 5,
"house_meaning": "연애, 창의성, 자녀",
"significance": "high",
"interpretation": "상대방의 연애와 창의성 영역을 활성화 (연인 관계에 특히 중요)"
},
{
"direction": "person1_to_person2",
"point": "Venus",
"point_ko": "금성",
"house": 5,
"house_meaning": "연애, 창의성, 자녀",
"significance": "high",
"interpretation": "상대방의 연애와 즐거움 영역에 매력적 영향 (연인 관계에 특히 중요)"
},
{
"direction": "person2_to_person1",
"point": "Moon",
"point_ko": "달",
"house": 5,
"house_meaning": "연애, 창의성, 자녀",
"significance": "high",
"interpretation": "상대방의 5하우스 영역에 Moon 에너지 투입 (연인 관계에 특히 중요)"
}
],
"overlay_summary": {
"total_overlays": 26,
"person1_activates_houses": [
1,
3,
4,
5,
6,
10
],
"person2_activates_houses": [
4,
5,
6,
7,
8,
9,
10,
12
]
}
},
"element_modality_analysis": {
"person1_distribution": {
"elements": {
"fire": 1,
"earth": 3,
"air": 2,
"water": 0
},
"modalities": {
"cardinal": 2,
"fixed": 1,
"mutable": 3
},
"dominant_element": "earth",
"dominant_modality": "mutable",
"point_details": [
{
"point": "Sun",
"point_ko": "태양",
"sign": "Capricorn",
"sign_ko": "염소자리",
"element": "earth",
"element_ko": "흙",
"modality": "cardinal",
"modality_ko": "기본"
},
{
"point": "Moon",
"point_ko": "달",
"sign": "Virgo",
"sign_ko": "처녀자리",
"element": "earth",
"element_ko": "흙",
"modality": "mutable",
"modality_ko": "변화"
},
{
"point": "Mercury",
"point_ko": "수성",
"sign": "Capricorn",
"sign_ko": "염소자리",
"element": "earth",
"element_ko": "흙",
"modality": "cardinal",
"modality_ko": "기본"
},
{
"point": "Venus",
"point_ko": "금성",
"sign": "Aquarius",
"sign_ko": "물병자리",
"element": "air",
"element_ko": "공기",
"modality": "fixed",
"modality_ko": "고정"
},
{
"point": "Mars",
"point_ko": "화성",
"sign": "Sagittarius",
"sign_ko": "궁수자리",
"element": "fire",
"element_ko": "불",
"modality": "mutable",
"modality_ko": "변화"
},
{
"point": "ASC",
"point_ko": "상승점",
"sign": "Gemini",
"sign_ko": "쌍둥이자리",
"element": "air",
"element_ko": "공기",
"modality": "mutable",
"modality_ko": "변화"
}
],
"total_points": 6
},
"person2_distribution": {
"elements": {
"fire": 1,
"earth": 1,
"air": 2,
"water": 2
},
"modalities": {
"cardinal": 2,
"fixed": 1,
"mutable": 3
},
"dominant_element": "air",
"dominant_modality": "mutable",
"point_details": [
{
"point": "Sun",
"point_ko": "태양",
"sign": "Pisces",
"sign_ko": "물고기자리",
"element": "water",
"element_ko": "물",
"modality": "mutable",
"modality_ko": "변화"
},
{
"point": "Moon",
"point_ko": "달",
"sign": "Libra",
"sign_ko": "천칭자리",
"element": "air",
"element_ko": "공기",
"modality": "cardinal",
"modality_ko": "기본"
},
{
"point": "Mercury",
"point_ko": "수성",
"sign": "Aries",
"sign_ko": "양자리",
"element": "fire",
"element_ko": "불",
"modality": "cardinal",
"modality_ko": "기본"
},
{
"point": "Venus",
"point_ko": "금성",
"sign": "Pisces",
"sign_ko": "물고기자리",
"element": "water",
"element_ko": "물",
"modality": "mutable",
"modality_ko": "변화"
},
{
"point": "Mars",
"point_ko": "화성",
"sign": "Aquarius",
"sign_ko": "물병자리",
"element": "air",
"element_ko": "공기",
"modality": "fixed",
"modality_ko": "고정"
},
{
"point": "ASC",
"point_ko": "상승점",
"sign": "Virgo",
"sign_ko": "처녀자리",
"element": "earth",
"element_ko": "흙",
"modality": "mutable",
"modality_ko": "변화"
}
],
"total_points": 6
},
"element_compatibility": {
"person1_dominant": "earth",
"person2_dominant": "air",
"person1_dominant_ko": "흙",
"person2_dominant_ko": "공기",
"compatibility_score": 50,
"compatibility_type": "challenging",
"compatibility_description": "현실과 이상의 차이",
"element_breakdown": [
{
"element": "fire",
"element_ko": "불",
"person1_count": 1,
"person2_count": 1,
"total_count": 2,
"balance_score": 1
},
{
"element": "earth",
"element_ko": "흙",
"person1_count": 3,
"person2_count": 1,
"total_count": 4,
"balance_score": 0.3333333333333333
},
{
"element": "air",
"element_ko": "공기",
"person1_count": 2,
"person2_count": 2,
"total_count": 4,
"balance_score": 1
},
{
"element": "water",
"element_ko": "물",
"person1_count": 0,
"person2_count": 2,
"total_count": 2,
"balance_score": 0
}
]
},
"modality_compatibility": {
"person1_dominant": "mutable",
"person2_dominant": "mutable",
"person1_dominant_ko": "변화",
"person2_dominant_ko": "변화",
"compatibility_score": 75,
"compatibility_type": "flexible",
"compatibility_description": "유연하지만 방향성 부족 가능"
},
"temperament_analysis": "John Doe은 흙 원소가 지배적이며 변화 성향을 보입니다. 현실적이면서도 유연하며 상황에 맞게 적응합니다. Jane Smith은 공기 원소가 지배적이며 변화 성향을 보입니다. 호기심이 많고 소통을 좋아하며 다양한 관심사를 가집니다. 원소 호환성: 현실과 이상의 차이 (점수: 50/100) 양상 호환성: 유연하지만 방향성 부족 가능 (점수: 75/100) 종합 평가 (62.5/100): 기질적으로 노력이 필요하지만 가능성 있는 관계입니다."
},
"house_overlay_analysis": {
"key_insights": [
"John Doe의 태양이 Jane Smith의 창의성과 연애 영역을 밝게 비춥니다",
"John Doe의 금성이 Jane Smith의 연애와 즐거움 영역에 강한 매력을 발산합니다",
"Jane Smith의 화성이 John Doe의 경력과 사회적 성취에 추진력을 제공합니다"
],
"relationship_areas": {
"romance": {
"rating": "매우 강함",
"score": 124,
"factors": [
"Moon-1하우스 (+10)",
"Mercury-5하우스 (+15)",
"Sun-5하우스 (+25)"
]
},
"communication": {
"rating": "매우 강함",
"score": 21,
"factors": [
"Moon-1하우스 (+5)",
"Pluto-3하우스 (+8)",
"Saturn-9하우스 (+6)"
]
},
"stability": {
"rating": "매우 강함",
"score": 117,
"factors": [
"Moon-1하우스 (+5)",
"Mars-4하우스 (+16)",
"Uranus-4하우스 (+8)"
]
},
"growth": {
"rating": "매우 강함",
"score": 145,
"factors": [
"Pluto-3하우스 (+2)",
"Mercury-5하우스 (+6)",
"Sun-5하우스 (+10)"
]
},
"intimacy": {
"rating": "매우 강함",
"score": 79,
"factors": [
"Mars-4하우스 (+8)",
"Uranus-4하우스 (+4)",
"Mercury-12하우스 (+9)"
]
}
},
"overall_interpretation": "이 관계는 강한 로맨틱 에너지와 서로에 대한 매력이 돋보입니다. 특히 연인 관계로서 매우 강한 잠재력을 보입니다. 전반적으로 매우 활발하고 의미 있는 상호작용이 기대됩니다.",
"analysis_summary": {
"total_meaningful_overlays": 3,
"strongest_area": "growth",
"relationship_focus": "romantic_focus"
}
},
"relationship_theme_summary": {
"themes": {
"romance_chemistry": {
"score": 39.5,
"rating": "매우 높음",
"level": 5,
"description": "폭발적인 로맨틱 케미스트리와 강렬한 매력",
"factors": []
},
"emotional_bond": {
"score": 39.3,
"rating": "매우 높음",
"level": 5,
"description": "매우 깊고 직관적인 감정적 연결",
"factors": [
"Sun-Moon square (감정적 갈등 가능)"
]
},
"communication": {
"score": 252.3,
"rating": "매우 높음",
"level": 5,
"description": "완벽한 소통과 이해",
"factors": [
"Mercury square (소통 노력 필요)",
"Mercury sextile (원활한 소통)",
"Mercury trine (원활한 소통)"
]
},
"intellectual_connection": {
"score": 125.1,
"rating": "매우 높음",
"level": 5,
"description": "매우 강한 연결",
"factors": []
},
"physical_attraction": {
"score": 31,
"rating": "매우 높음",
"level": 5,
"description": "매우 강한 연결",
"factors": []
},
"long_term_stability": {
"score": 263.3,
"rating": "매우 높음",
"level": 5,
"description": "매우 안정적이고 지속 가능한 관계",
"factors": [
"Saturn trine (장기적 안정)",
"Saturn square (책임감 필요)",
"Saturn conjunction (책임감 필요)"
]
},
"spiritual_connection": {
"score": 592.2,
"rating": "매우 높음",
"level": 5,
"description": "매우 강한 연결",
"factors": []
},
"growth_potential": {
"score": 544.1,
"rating": "매우 높음",
"level": 5,
"description": "매우 강한 연결",
"factors": [
"Jupiter trine (상호 성장)",
"Jupiter trine (상호 성장)",
"Jupiter sextile (상호 성장)"
]
}
},
"key_themes": [
"romance_chemistry",
"emotional_bond",
"physical_attraction",
"long_term_stability"
],
"overall_relationship_summary": "John Doe과 Jane Smith의 관계는 로맨틱 케미스트리, 감정적 유대, 소통 영역에서 특히 강한 연결을 보입니다. 연인 관계로서 매우 큰 잠재력을 가진 조합입니다."
},
"compatibility_analysis": {
"overall_score": 73.3,
"total_aspects": 66,
"major_aspects": 66,
"minor_aspects": 0,
"harmonious_aspects": 30,
"challenging_aspects": 18,
"neutral_aspects": 18,
"total_weight": 2105.15,
"positive_weight": 1352.86,
"challenging_weight": 372.86,
"aspect_breakdown": {
"trine": {
"count": 14,
"total_weight": 600.57,
"average_orb": 3.44,
"nature": "harmonious",
"average_weight": 42.9
},
"sextile": {
"count": 16,
"total_weight": 532.66,
"average_orb": 3.27,
"nature": "harmonious",
"average_weight": 33.29
},
"square": {
"count": 16,
"total_weight": 470.6599999999999,
"average_orb": 4.6,
"nature": "challenging",
"average_weight": 29.42
},
"conjunction": {
"count": 18,
"total_weight": 439.25999999999993,
"average_orb": 5.07,
"nature": "neutral",
"average_weight": 24.4
},
"opposition": {
"count": 2,
"total_weight": 62,
"average_orb": 4.26,
"nature": "challenging",
"average_weight": 31
}
},
"strongest_aspects": [
{
"person1_point": "MC",
"person2_point": "Moon",
"person1_point_ko": "천정점",
"person2_point_ko": "달",
"aspect_type": "trine",
"aspect_code": "TRI",
"orb": 0.6,
"exact_angle": 120.6,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 83.06,
"tightness": "exact",
"aspect_sign": "Sagittarius",
"aspect_sign_ko": "궁수자리",
"sign_interpretation": "확장적이고 모험적인 조화, 공통 철학과 이상",
"interpretation_key": "mc_trine_moon"
},
{
"person1_point": "Venus",
"person2_point": "Sun",
"person1_point_ko": "금성",
"person2_point_ko": "태양",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 0.89,
"exact_angle": 59.11,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 67.51,
"tightness": "exact",
"aspect_sign": "Pisces",
"aspect_sign_ko": "물고기자리",
"sign_interpretation": "부드럽고 이해심 깊은 협력",
"interpretation_key": "venus_sextile_sun"
},
{
"person1_point": "Mars",
"person2_point": "Moon",
"person1_point_ko": "화성",
"person2_point_ko": "달",
"aspect_type": "sextile",
"aspect_code": "SXT",
"orb": 1.19,
"exact_angle": 58.81,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 61.83,
"tightness": "tight",
"aspect_sign": "Scorpio",
"aspect_sign_ko": "전갈자리",
"sign_interpretation": "깊이 있고 변화를 돕는 협력",
"interpretation_key": "mars_sextile_moon"
},
{
"person1_point": "Venus",
"person2_point": "MC",
"person1_point_ko": "금성",
"person2_point_ko": "천정점",
"aspect_type": "trine",
"aspect_code": "TRI",
"orb": 2.5,
"exact_angle": 122.5,
"aspect_nature": "harmonious",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 57.57,
"tightness": "tight",
"aspect_sign": "Aries",
"aspect_sign_ko": "양자리",
"sign_interpretation": "열정적이고 직접적인 조화로운 에너지 교환",
"interpretation_key": "venus_trine_mc"
},
{
"person1_point": "Sun",
"person2_point": "Moon",
"person1_point_ko": "태양",
"person2_point_ko": "달",
"aspect_type": "square",
"aspect_code": "SQR",
"orb": 3.89,
"exact_angle": 93.89,
"aspect_nature": "challenging",
"is_major": true,
"is_from_person1": true,
"aspect_weight": 55.57,
"tightness": "moderate",
"aspect_sign": "Sagittarius",
"aspect_sign_ko": "궁수자리",
"sign_interpretation": "과도함과 무책임의 갈등, 신념 충돌",
"interpretation_key": "sun_square_moon"
}
],
"relationship_strengths": [
"서로의 인생 방향과 목표에 대한 이해"
],
"relationship_challenges": [
"자아와 감정의 갈등 (square 아스펙트)"
],
"compatibility_notes": "좋은 호환성을 보이는 romantic 관계입니다. 주요 영향: trine, sextile 아스펙트가 관계의 특성을 결정합니다."
}
},
"message": "Synastry calculated successfully between John Doe and Jane Smith",
"timestamp": "2025-11-12T03:59:43.737289",
"usage_info": {
"feature": "synastry",
"user": "internal",
"used": 0,
"limit": 999999,
"remaining": 999999
}
}응답 필드 설명
- person1_chart: 첫 번째 사람의 차트 데이터
chart_info: 기본 정보 (name, datetime, house_system)bodies: 행성 정보longitude: 황경 (0-360도)sign: 별자리 이름sign_degree: 별자리 내 도수 (0-30도)house: 하우스 번호type: luminary/planet/nodecategory: personal/social/transpersonal/angleweight: 호환성 계산 시 가중치 (1-10)name_ko,name_en: 한글/영문 이름
angles: ASC, MC 등 앵글 정보 (bodies와 동일한 구조)houses: 하우스 정보cusp_longitude: 커스프 황경sign: 커스프 별자리bodies_in_house: 해당 하우스에 있는 행성 목록 (배열)
- person2_chart: 두 번째 사람의 차트 데이터 (구조 동일)
- synastry_info: 시너스트리 계산 정보
person1_name,person2_name: 두 사람 이름relationship_type: 관계 유형analysis_depth: 분석 깊이house_system: 하우스 시스템orb_degrees,minor_orb_degrees: 오브 설정compatibility_method: 호환성 계산 방법calculation_date: 계산 일시
- synastry_aspects: 시너스트리 애스펙트 목록 (가중치 순 정렬)
person1_point,person2_point: 두 사람의 행성/포인트 이름aspect_type: 애스펙트 유형 (conjunction, trine, square, sextile, opposition 등)aspect_code: 애스펙트 코드 (CNJ, TRI, SQR, SXT, OPP 등)orb: 정확한 각도와의 차이exact_angle: 실제 각도aspect_nature: harmonious/challenging/neutralis_major: 주요 애스펙트 여부aspect_weight: 애스펙트 가중치 (중요도)tightness: tight/moderate/wide (오브 정밀도)interpretation_key: 해석 키 (예: venus_trine_sun)
- house_overlay: 하우스 오버레이 분석
person1_in_person2_houses: Person1의 천체들이 Person2의 하우스에서 어떻게 작용하는지house: 하우스 번호 (1-12)house_meaning: 하우스 의미 (영문)house_meaning_ko: 하우스 의미 (한글)longitude: 천체 황경sign: 천체가 위치한 별자리point_ko: 천체 이름 (한글)overlay_interpretation: 오버레이 해석 텍스트
person2_in_person1_houses: Person2의 천체들이 Person1의 하우스에서 어떻게 작용하는지 (구조 동일)significant_overlays: 중요한 오버레이 목록direction: 방향 (person1_to_person2 또는 person2_to_person1)point: 천체 이름point_ko: 천체 이름 (한글)house: 하우스 번호house_meaning: 하우스 의미 (한글)significance: 중요도 (high)interpretation: 해석
overlay_summary: 오버레이 요약total_overlays: 전체 오버레이 개수person1_activates_houses: Person1이 활성화하는 하우스 목록person2_activates_houses: Person2가 활성화하는 하우스 목록
- element_modality_analysis: 원소 및 모드 호환성 분석 (v1.4.0)
person1_distribution: Person1의 분포elements: 원소 분포 (fire, earth, air, water)modalities: 모드 분포 (cardinal, fixed, mutable)dominant_element: 우세 원소dominant_modality: 우세 모드point_details: 천체별 상세 정보 (별자리, 원소, 모드)
person2_distribution: Person2의 분포 (구조 동일)element_compatibility: 원소 호환성 분석person1_dominant,person2_dominant: 각자의 우세 원소person1_dominant_ko,person2_dominant_ko: 우세 원소 (한글)compatibility_score: 호환성 점수 (0-100)compatibility_type: 호환성 타입 (same/supportive/neutral/challenging/opposing)compatibility_description: 호환성 설명element_breakdown: 원소별 상세 분포element,element_ko: 원소 이름person1_count,person2_count: 각자의 개수total_count: 합계balance_score: 균형 점수 (0-1)
modality_compatibility: 모드 호환성 분석person1_dominant,person2_dominant: 각자의 우세 모드person1_dominant_ko,person2_dominant_ko: 우세 모드 (한글)compatibility_score: 호환성 점수 (0-100)compatibility_type: 호환성 타입 (competitive/complementary/supportive/stable/balancing/flexible)compatibility_description: 호환성 설명
temperament_analysis: 기질 종합 분석 (문자열)
- compatibility_analysis: 종합 호환성 분석
overall_score: 전체 호환성 점수 (0-100)total_aspects: 총 애스펙트 개수major_aspects,minor_aspects: 주요/부요 애스펙트 개수harmonious_aspects,challenging_aspects,neutral_aspects: 성격별 애스펙트 개수total_weight,positive_weight,challenging_weight: 가중치 합계aspect_breakdown: 애스펙트 타입별 분석count: 해당 애스펙트 타입 개수total_weight: 해당 타입 가중치 합계average_orb: 평균 오브nature: 성격 (harmonious/challenging/neutral)average_weight: 평균 가중치
strongest_aspects: 가장 강한 애스펙트 5개 (가중치 순)person1_point,person2_point: 천체 이름person1_point_ko,person2_point_ko: 천체 이름 (한글)aspect_type: 애스펙트 타입aspect_code: 애스펙트 코드 (TRI, SQR, CNJ, etc)orb,exact_angle: 오브 및 정확 각도aspect_nature: 성격 (harmonious/challenging/neutral)is_major,is_from_person1: 주요 애스펙트 여부, 방향aspect_weight: 가중치tightness: 정밀도 (tight/moderate/wide)aspect_sign,aspect_sign_ko: 애스펙트가 형성되는 별자리sign_interpretation: 별자리 기반 해석interpretation_key: 해석 키
relationship_strengths: 관계의 강점 목록 (배열)relationship_challenges: 관계의 도전 과제 목록 (배열)compatibility_notes: 상세 호환성 분석 텍스트
- house_overlay_analysis: 하우스 오버레이 텍스트 분석 (v1.4.0)
key_insights: 주요 통찰력 배열 (상위 8개)- 각 오버레이의 의미와 영향을 설명하는 텍스트
- 예: 'Alice의 태양이 Bob의 7하우스에 위치하여 파트너십과 결혼 영역에 강력한 에너지를 제공합니다.'
relationship_areas: 관계 영역별 분석romance,communication,stability,growth,intimacy: 각 영역별 객체- 각 영역 객체 구조:
rating: 등급 ('매우 강함', '강함', '보통', '약함', '해당 없음')score: 점수 (숫자)factors: 영향 요인 배열 (상위 3개)- 포맷:
천체-하우스 (+가중치)예:Sun-5하우스 (+10)
- 포맷:
overall_interpretation: 전체적인 하우스 오버레이 해석 (텍스트)analysis_summary: 분석 요약total_meaningful_overlays: 의미 있는 오버레이 총 개수strongest_area: 가장 강한 영역 (romance, communication, stability, growth, intimacy 중 하나)relationship_focus: 관계 초점 (열거형 문자열)- 'romantic_focus': 로맨틱 에너지 중심
- 'communication_focus': 소통과 지적 교류 중심
- 'stability_focus': 안정성과 신뢰 중심
- 'growth_focus': 성장과 발전 중심
- 'intimacy_focus': 감정적 연결과 친밀감 중심
- 'balanced_focus': 균형 잡힌 관계
- relationship_theme_summary: 관계 테마 종합 요약 (v1.4.0)
themes: 테마별 분석 객체 (8개 테마)romance_chemistry: 로맨틱 케미스트리emotional_bond: 감정적 유대communication: 소통intellectual_connection: 지적 연결physical_attraction: 육체적 끌림long_term_stability: 장기적 안정성spiritual_connection: 영적 연결growth_potential: 성장 잠재력- 각 테마 객체 구조:
score: 점수 (숫자, 소수점 1자리)rating: 한국어 등급 ('매우 높음', '높음', '보통', '낮음', '매우 낮음')level: 등급 레벨 (1-5 정수, 5가 가장 높음)description: 레벨에 따른 설명 텍스트factors: 영향 요인 배열 (상위 3개)
key_themes: 핵심 테마 배열 (관계 타입에 따라 식별된 주요 테마들, 최대 4개)overall_relationship_summary: 관계 전체에 대한 종합 요약 텍스트
- composite_chart: 컴포지트 차트 (선택적, include_composite: true 시)
- 두 사람의 중간 지점으로 계산된 합성 차트
- 차트 구조는 person1_chart와 동일
- timestamp: 응답 생성 시간
- usage_info: API 사용량 정보
주요 시너스트리 애스펙트 해석
조화로운 애스펙트 (Harmonious)
| 애스펙트 | 의미 | 관계에서의 효과 |
|---|---|---|
| Sun ☍ Moon | 정체성-감정 조화 | 자연스러운 이해와 균형, "완전한" 느낌 |
| Venus △ Mars | 사랑-욕망 트라인 | 강한 육체적, 낭만적 끌림 (가장 강력한 인력 애스펙트 중 하나) |
| Moon △ Venus | 감정-애정 트라인 | 부드러운 감정 교류, 양육적 사랑, 편안함 |
| Sun ☌ Venus | 자아-사랑 합 | 상대를 사랑하고 감탄하는 관계, 상호 인정 |
| Mercury ☌ Mercury | 소통 합 | 비슷한 사고방식, 쉬운 대화, 정신적 연결 |
| Jupiter △ Sun/Moon | 확장-핵심 트라인 | 낙관주의, 성장, 행운을 가져다주는 관계 |
도전적 애스펙트 (Challenging)
| 애스펙트 | 의미 | 관계에서의 효과 |
|---|---|---|
| Sun □ Moon | 정체성-감정 스퀘어 | 다른 감정 표현 방식, 욕구 충돌 (극복 시 균형과 성장 가능) |
| Venus □ Saturn | 사랑-제약 스퀘어 | 애정 표현의 어려움, 냉담함, 책임감 vs 자유로움 |
| Mars □ Mars | 에너지 충돌 | 경쟁, 갈등, 다른 행동 방식 (건설적으로 사용 시 활력) |
| Moon ☍ Uranus | 감정-불안정 대칭 | 예측 불가능성, 급격한 변화, 정서적 거리감 |
| Sun □ Saturn | 자아-제한 스퀘어 | 비판, 억압감, 책임의 무게 (Saturn 쪽이 Sun을 제한하는 느낌) |
| Venus ☍ Pluto | 사랑-강박 대칭 | 강렬한 집착, 소유욕, 변화의 촉매 (매우 강력하고 변혁적) |
도전적 애스펙트는 나쁜가?
아닙니다. 도전적 애스펙트(스퀘어, 대칭)는 긴장을 만들지만, 이 긴장이 관계를 "역동적"이고 "성장 지향적"으로 만듭니다. 조화로운 애스펙트만 있으면 관계가 편하지만 자극이 없고, 도전적 애스펙트만 있으면 지치지만 변화와 발전이 있습니다. 이상적인 시너스트리는 조화로운 애스펙트와 적절한 도전적 애스펙트의 균형입니다.
하우스 오버레이 해석
하우스 오버레이는 한 사람의 행성이 다른 사람의 어느 하우스에 위치하는지를 보여줍니다. 이는 "상대방의 삶의 어느 영역에 영향을 주는가"를 나타냅니다.
주요 하우스 오버레이
| 행성 in 하우스 | 의미 |
|---|---|
| 상대 Sun in 나의 1하우스 | 상대가 나의 정체성을 밝혀주고 자신감을 높여줌 |
| 상대 Moon in 나의 4하우스 | 깊은 정서적 안정감, 가족 같은 느낌, 집에서 편안함 (결혼에 좋음) |
| 상대 Venus in 나의 5하우스 | 로맨스, 즐거움, 창조성 자극, 연애의 하우스 (매우 낭만적) |
| 상대 Venus in 나의 7하우스 | 파트너십과 결혼에 이상적, 상대를 "이상적 파트너"로 봄 |
| 상대 Mars in 나의 1하우스 | 강한 육체적 끌림, 에너지 자극 (긍정적이지만 때론 공격적) |
| 상대 Saturn in 나의 7하우스 | 진지한 관계, 책임감, 장기적 약속 (무겁지만 안정적, 카르마적 연결) |
| 상대 Neptune in 나의 12하우스 | 영적 연결, 무의식적 끌림, 환상 (매우 신비롭고 혼란스러울 수 있음) |
| 상대 Sun/Moon in 나의 8하우스 | 깊은 친밀감, 변혁, 심리적 탐구 (강렬하고 변화를 일으킴) |
호환성 점수 해석
| 점수 범위 | 평가 | 의미 |
|---|---|---|
| 85-100 | 매우 높은 호환성 | 자연스러운 조화, 강한 연결, 장기 관계 잠재력 매우 높음 |
| 70-84 | 높은 호환성 | 좋은 균형, 노력 시 성공적 관계 가능 |
| 55-69 | 보통 호환성 | 도전과 기회 혼재, 의식적 노력 필요 |
| 40-54 | 낮은 호환성 | 상당한 차이와 갈등, 많은 타협과 이해 필요 |
| 0-39 | 매우 낮은 호환성 | 근본적 불일치, 관계 유지가 매우 어려움 |
호환성 점수 활용 가이드
호환성 점수는 "관계의 운명"이 아니라 "자연스러운 흐름"을 나타냅니다. 70점 이상이면 일반적으로 좋은 관계이며, 55-70점은 노력이 필요하지만 충분히 좋은 관계입니다. 점수가 낮더라도 의식적인 노력과 성숙한 소통으로 훌륭한 관계를 만들 수 있습니다. 반대로 점수가 높아도 방치하면 문제가 생길 수 있습니다. 점수는 "출발점"이지 "결과"가 아닙니다.
에러 응답
잘못된 날짜 형식 (400)
날짜 형식 오류
{
"success": false,
"error": "Invalid value for 'body -> person1_datetime': Invalid datetime format. Use ISO format: YYYY-MM-DDTHH:MM:SS",
"error_code": 400,
"details": null,
"timestamp": "2024-07-17T12:00:00.123456"
}잘못된 오브 범위 (400)
오브 범위 오류
{
"success": false,
"error": "Invalid value for 'body -> orb_degrees': ensure this value is less than or equal to 15.0",
"error_code": 400,
"details": null,
"timestamp": "2024-07-17T12:00:00.123456"
}사용량 제한 초과 (429)
Rate Limit 초과
{
"success": false,
"error": "Rate limit exceeded for feature: synastry",
"error_code": 429,
"details": null,
"timestamp": "2024-07-17T12:00:00.123456"
}에러 코드 요약
| 코드 | 설명 | 해결 방법 |
|---|---|---|
| 400 | 잘못된 요청 데이터 | 날짜 형식, 좌표 범위, 오브 범위, 관계 타입 등 확인 |
| 401 | 인증 실패 | 유효한 API 키를 X-API-Key 헤더에 포함 |
| 403 | 권한 없음 | 현재 플랜에서 synastry 기능 사용 가능 여부 확인 |
| 429 | 사용량 제한 초과 | 플랜 업그레이드 또는 다음 주기까지 대기 |
| 500 | 서버 내부 오류 | 잠시 후 재시도, 지속 시 고객 지원 문의 |
사용 예시
연인 관계 분석
Alice와 Bob의 연인 관계를 분석할 때, relationship_type: romantic과 emphasis_luminaries: true를 설정합니다. 응답에서 Venus-Mars, Sun-Moon 애스펙트를 우선적으로 확인하고, 5하우스와 7하우스 오버레이를 주목합니다.compatibility_analysis.physical_attraction과 emotional_compatibility 점수가 특히 중요합니다.
비즈니스 파트너 평가
relationship_type: business로 설정하면 Sun-Saturn, Mercury-Saturn, Mars-Jupiter 애스펙트에 높은 가중치가 부여됩니다. 10하우스와 6하우스 오버레이, values_alignment과 communication 점수를 중점적으로 검토하여 업무 호환성을 판단합니다.
가족 관계 이해
부모-자녀, 형제자매 관계는 relationship_type: family로 분석합니다. Moon-Moon, Sun-Moon 애스펙트와 4하우스 오버레이가 정서적 유대감을 나타냅니다. 도전적 애스펙트가 있어도 가족 관계에서는 "성장의 촉매"로 작용할 수 있습니다.
관련 엔드포인트
- Natal Chart API - 개인 출생 차트
- Transits API - 관계에 영향을 주는 트랜짓
- Progressions API - 관계 진화 추적
시너스트리 분석의 실전 활용
시너스트리는 관계 상담에서 가장 많이 사용되는 점성술 기법입니다. 중요한 점은:
1. 완벽한 시너스트리는 없습니다 - 모든 관계에는 조화와 도전이 공존합니다.
2. 자각이 핵심입니다 - 시너스트리는 "왜 우리가 이렇게 반응하는가"를 보여줘 객관성을 제공합니다.
3. 성장 도구입니다 - 약점을 알면 의식적으로 보완할 수 있고, 강점을 알면 더 활용할 수 있습니다.
4. 양방향입니다 - Alice의 금성이 Bob의 화성과 이루는 애스펙트와 Bob의 화성이 Alice의 금성과 이루는 애스펙트는 같은 연결의 양면입니다.
시너스트리는 "이 관계가 운명인가?"를 판단하는 도구가 아니라, "이 관계를 어떻게 최선으로 만들 수 있는가?"를 이해하는 도구입니다.