Solar Returns API
솔라 리턴(Solar Return)은 태양이 출생 시와 정확히 동일한 황경 위치로 돌아오는 순간의 차트로, 생일을 기준으로 향후 1년간의 주요 테마와 사건을 예측하는 가장 대중적인 연간 예측 기법입니다.
솔라 리턴 계산
/v1/astrology/solar-returnPredictive특정 연도의 솔라 리턴 차트와 정확한 회귀 시각을 계산합니다.
솔라 리턴이란?
매년 생일 무렵, 태양은 출생 당시와 동일한 황경도로 돌아옵니다. 이 순간의 차트가 솔라 리턴 차트이며, 다음 원리로 작동합니다:
- 정확한 순간: 생일 당일이 아니라 태양이 정확히 네이탈 위치로 돌아오는 시각 (보통 생일 전후 36시간 이내)
- 연간 유효기간: 해당 솔라 리턴부터 다음 솔라 리턴까지 약 1년간 유효
- 위치의 중요성: 솔라 리턴이 일어나는 위치에 따라 하우스 배치가 달라져 연간 테마가 변화
- 네이탈과의 관계: 솔라 리턴 차트는 네이탈 차트의 잠재력을 "활성화"하는 타이밍 차트
계산 예시
1990년 6월 15일 오후 2시 30분 서울 출생인 경우, 2024년 솔라 리턴은 태양이 쌍둥이자리 23°27'24"(네이탈 태양 위치)로 정확히 돌아오는 순간입니다. 이는 2024년 6월 14일 저녁이나 15일 새벽이 될 수 있으며, 이 순간의 차트가 2024년 6월부터 2025년 6월까지의 연간 테마를 보여줍니다.
솔라 리턴의 해석 요소
| 요소 | 중요도 | 의미 |
|---|---|---|
| SR Ascendant | 최우선 | 연간 전체 분위기, 자신을 표현하는 방식 |
| SR Sun in House | 최우선 | 올해 주요 초점이 되는 삶의 영역 |
| SR Moon in House | 매우 높음 | 감정적 필요, 편안함을 느끼는 영역 |
| Angular Planets | 매우 높음 | 1/4/7/10하우스에 있는 행성은 올해 강력하게 작용 |
| SR to Natal Aspects | 높음 | 솔라 리턴 행성이 네이탈 행성과 이루는 애스펙트 |
| Stelliums | 높음 | 3개 이상 행성이 모인 하우스 = 올해 집중 영역 |
| Retrogrades | 중간 | 역행 행성의 테마는 내면화, 재검토 필요 |
이주 솔라 리턴 (Relocated Solar Return)
솔라 리턴이 발생하는 순간, 본인이 있는 위치에 따라 하우스 배치가 달라집니다. 일부 점성가들은 생일을 특정 위치에서 보내 의도적으로 유리한 솔라 리턴 차트를 만들기도 합니다 (Relocated Solar Return):
- 목적: 불리한 행성을 각도에서 멀리하거나, 유리한 행성을 각도에 배치
- 논란: 효과에 대해 점성가들 사이에 의견이 분분 (출생지만 유효 vs 실제 위치 유효)
- 실용적 접근: 이사나 장기 체류 시 해당 위치의 솔라 리턴 참고
요청 파라미터
파라미터
| 이름 | 타입 | 필수 | 설명 |
|---|---|---|---|
natal_datetime | string | 필수 | 출생 날짜 및 시간 (ISO 8601 형식) 예시: |
natal_location | object | 필수 | 출생 위치 정보 |
natal_location.latitude | number | 필수 | 위도 (-90 ~ 90) 예시: |
natal_location.longitude | number | 필수 | 경도 (-180 ~ 180) 예시: |
natal_location.timezone | string | 선택 | IANA 타임존 (예: Asia/Seoul) - 미제공 시 좌표로 자동 감지 예시: |
return_year | number | 필수 | 솔라 리턴 연도 (1900 ~ 2100) 예시: |
return_location | object | 선택 | 솔라 리턴 계산 위치 (기본값: 출생지) |
house_system | string | 선택 | 하우스 시스템 (PLACIDUS, WHOLE_SIGN, EQUAL 등) 예시: 기본값: |
tolerance_minutes | number | 선택 | 태양 회귀 허용 오차 (분, 0.1 ~ 60.0) 예시: 기본값: |
include_aspects | boolean | 선택 | 솔라 리턴 애스펙트 포함 여부 예시: 기본값: |
orb_degrees | number | 선택 | 애스펙트 오브 허용 범위 (2.0 ~ 15.0도) 예시: 기본값: |
include_relocated | boolean | 선택 | 이주 솔라 리턴 포함 여부 예시: 기본값: |
relocated_location | object | 선택 | 이주 솔라 리턴 위치 (include_relocated가 true일 때) |
name | string | 선택 | 차트 소유자 이름 예시: |
include_lunar_return | boolean | 선택 | 루나 리턴 정보 포함 여부 예시: 기본값: |
return_location 활용
return_location을 제공하지 않으면 출생지에서의 솔라 리턴 차트를 계산합니다 (가장 전통적). 현재 거주지나 생일을 보낼 위치를 지정하면 해당 위치에서의 하우스 배치를 확인할 수 있습니다. 단, 천체 위치는 동일하고 하우스와 ASC/MC만 변경됩니다.
요청 예시
curl -X POST https://api.destinyapi.com/v1/astrology/solar-return \
-H "X-API-Key: your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"natal_datetime": "1990-01-15T14:30:00",
"natal_location": {
"latitude": 37.5665,
"longitude": 126.978,
"timezone": "Asia/Seoul",
"elevation": 38
},
"return_year": 2025,
"return_location": {
"latitude": 37.5665,
"longitude": 126.978,
"timezone": "Asia/Seoul",
"elevation": 38
},
"house_system": "PLACIDUS",
"tolerance_minutes": 5,
"include_aspects": true,
"orb_degrees": 8,
"include_relocated": false,
"include_lunar_return": false,
"name": "John Doe"
}'솔라 리턴 정확한 시각의 중요성
솔라 리턴은 생일 "당일"이 아니라 태양이 정확히 네이탈 위치로 돌아오는 "순간"의 차트입니다. 이는 생일 하루 전이나 하루 후가 될 수 있으며, 시간대와 시차에 따라 달라집니다. API는 자동으로 정확한 솔라 리턴 순간을 계산합니다.
응답 구조
성공 응답 (200)
성공 응답
{
"success": true,
"data": {
"natal_chart": {
"chart_info": {
"name": "Natal Chart",
"datetime": "1990-01-15T14:30:00",
"location": {
"latitude": 37.5665,
"longitude": 126.978,
"elevation": 38
},
"house_system": "PLACIDUS",
"timezone": "Asia/Seoul"
},
"angles": {
"asc": {
"longitude": 73.80217769863685,
"sign": "Gemini",
"dms": "13° Gemini 48' 07\""
},
"mc": {
"longitude": 321.51259762720684,
"sign": "Aquarius",
"dms": "21° Aquarius 30' 45\""
}
},
"bodies": {
"moon": {
"longitude": 164.10728449894503,
"latitude": -2.433219801367135,
"distance": 0.0026239507561749147,
"sign": "Virgo",
"house": 4,
"retrograde": false,
"dms": "14° Virgo 06' 25\"",
"speed": 12.572773570309437
},
"pluto": {
"longitude": 227.42263468468818,
"latitude": 15.37669864517166,
"distance": 30.007005739975973,
"sign": "Scorpio",
"house": 6,
"retrograde": false,
"dms": "17° Scorpio 25' 20\"",
"speed": 0.020466473597480217
},
"mercury": {
"longitude": 281.5452507322837,
"latitude": 3.37829136814258,
"distance": 0.7050147477210029,
"sign": "Capricorn",
"house": 8,
"retrograde": true,
"dms": "11° Capricorn 32' 41\"",
"speed": -0.7633419239937211
},
"mars": {
"longitude": 259.71630173185815,
"latitude": -0.18890186715558102,
"distance": 2.2263250385699975,
"sign": "Sagittarius",
"house": 7,
"retrograde": false,
"dms": "19° Sagittarius 42' 58\"",
"speed": 0.7117844995264022
},
"sun": {
"longitude": 294.8024863243448,
"latitude": -0.00008908560370540947,
"distance": 0.9836363353585106,
"sign": "Capricorn",
"house": 8,
"retrograde": false,
"dms": "24° Capricorn 48' 08\"",
"speed": 1.0182543072914996
},
"uranus": {
"longitude": 276.59757302053856,
"latitude": -0.2726160945577932,
"distance": 20.314516054119306,
"sign": "Capricorn",
"house": 8,
"retrograde": false,
"dms": "06° Capricorn 35' 51\"",
"speed": 0.057876678783941315
},
"neptune": {
"longitude": 282.5556941535978,
"latitude": 0.8457625771169008,
"distance": 31.170544300803186,
"sign": "Capricorn",
"house": 8,
"retrograde": false,
"dms": "12° Capricorn 33' 20\"",
"speed": 0.03720272361533716
},
"saturn": {
"longitude": 287.28256992260805,
"latitude": 0.2771488150757121,
"distance": 11.000447376290355,
"sign": "Capricorn",
"house": 8,
"retrograde": false,
"dms": "17° Capricorn 16' 56\"",
"speed": 0.11785094930019113
},
"venus": {
"longitude": 300.84613239834005,
"latitude": 5.345328409295521,
"distance": 0.2685803172382466,
"sign": "Aquarius",
"house": 9,
"retrograde": true,
"dms": "00° Aquarius 50' 45\"",
"speed": -0.5903041354031302
},
"jupiter": {
"longitude": 93.39789745021899,
"latitude": -0.08336863355896541,
"distance": 4.22763815782696,
"sign": "Cancer",
"house": 1,
"retrograde": true,
"dms": "03° Cancer 23' 52\"",
"speed": -0.11775938785376638
},
"true_node": {
"longitude": 317.7080946575413,
"latitude": 0,
"distance": null,
"sign": "Aquarius",
"house": 9,
"retrograde": true,
"dms": "17° Aquarius 42' 28\"",
"speed": -0.05294114231446656
}
},
"houses": {
"house_1": {
"cusp_longitude": 73.80217763515988,
"sign": "Gemini",
"bodies": [
"jupiter",
"asc"
]
},
"house_2": {
"cusp_longitude": 96.2296514991633,
"sign": "Cancer",
"bodies": []
},
"house_3": {
"cusp_longitude": 117.44718533695762,
"sign": "Cancer",
"bodies": []
},
"house_4": {
"cusp_longitude": 141.5125975648466,
"sign": "Leo",
"bodies": [
"moon"
]
},
"house_5": {
"cusp_longitude": 172.51731593092222,
"sign": "Virgo",
"bodies": []
},
"house_6": {
"cusp_longitude": 212.55778173740327,
"sign": "Scorpio",
"bodies": [
"pluto"
]
},
"house_7": {
"cusp_longitude": 253.80217763515986,
"sign": "Sagittarius",
"bodies": [
"mars"
]
},
"house_8": {
"cusp_longitude": 276.2296514991633,
"sign": "Capricorn",
"bodies": [
"mercury",
"sun",
"uranus",
"neptune",
"saturn"
]
},
"house_9": {
"cusp_longitude": 297.4471853369576,
"sign": "Capricorn",
"bodies": [
"venus",
"true_node"
]
},
"house_10": {
"cusp_longitude": 321.5125975648466,
"sign": "Aquarius",
"bodies": [
"mc"
]
},
"house_11": {
"cusp_longitude": 352.5173159309222,
"sign": "Pisces",
"bodies": []
},
"house_12": {
"cusp_longitude": 32.557781737403275,
"sign": "Taurus",
"bodies": []
}
},
"aspects": [
{
"body1": "asc",
"body2": "mc",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "jupiter",
"body2": "true_node",
"aspect_type": "Sesquiquadrate",
"orb": 2.5,
"exact": false,
"applying": false
},
{
"body1": "mars",
"body2": "asc",
"aspect_type": "Opposition",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "mars",
"body2": "mc",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": null
},
{
"body1": "mars",
"body2": "true_node",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": true
},
{
"body1": "mercury",
"body2": "asc",
"aspect_type": "Quincunx",
"orb": 3,
"exact": false,
"applying": null
},
{
"body1": "mercury",
"body2": "neptune",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "mercury",
"body2": "saturn",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "mercury",
"body2": "uranus",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "moon",
"body2": "asc",
"aspect_type": "Square",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "moon",
"body2": "jupiter",
"aspect_type": "Quintile",
"orb": 1.5,
"exact": false,
"applying": false
},
{
"body1": "moon",
"body2": "mars",
"aspect_type": "Square",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "moon",
"body2": "mercury",
"aspect_type": "Trine",
"orb": 9,
"exact": false,
"applying": true
},
{
"body1": "moon",
"body2": "neptune",
"aspect_type": "Trine",
"orb": 9,
"exact": false,
"applying": true
},
{
"body1": "moon",
"body2": "pluto",
"aspect_type": "Sextile",
"orb": 7,
"exact": false,
"applying": false
},
{
"body1": "moon",
"body2": "saturn",
"aspect_type": "Trine",
"orb": 9,
"exact": false,
"applying": false
},
{
"body1": "moon",
"body2": "uranus",
"aspect_type": "Trine",
"orb": 9,
"exact": false,
"applying": true
},
{
"body1": "moon",
"body2": "venus",
"aspect_type": "Sesquiquadrate",
"orb": 2.5,
"exact": false,
"applying": false
},
{
"body1": "neptune",
"body2": "asc",
"aspect_type": "Quincunx",
"orb": 3,
"exact": false,
"applying": null
},
{
"body1": "neptune",
"body2": "saturn",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "pluto",
"body2": "jupiter",
"aspect_type": "Sesquiquadrate",
"orb": 2.5,
"exact": false,
"applying": false
},
{
"body1": "pluto",
"body2": "mc",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": null
},
{
"body1": "pluto",
"body2": "mercury",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": true
},
{
"body1": "pluto",
"body2": "neptune",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": false
},
{
"body1": "pluto",
"body2": "saturn",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": false
},
{
"body1": "pluto",
"body2": "true_node",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": false
},
{
"body1": "pluto",
"body2": "venus",
"aspect_type": "Quintile",
"orb": 1.5,
"exact": false,
"applying": false
},
{
"body1": "saturn",
"body2": "true_node",
"aspect_type": "Semisextile",
"orb": 2,
"exact": false,
"applying": false
},
{
"body1": "sun",
"body2": "saturn",
"aspect_type": "Conjunction",
"orb": 10,
"exact": false,
"applying": true
},
{
"body1": "sun",
"body2": "venus",
"aspect_type": "Conjunction",
"orb": 10,
"exact": false,
"applying": false
},
{
"body1": "true_node",
"body2": "asc",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "true_node",
"body2": "mc",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "uranus",
"body2": "jupiter",
"aspect_type": "Opposition",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "uranus",
"body2": "mc",
"aspect_type": "Semisquare",
"orb": 2.5,
"exact": false,
"applying": null
},
{
"body1": "uranus",
"body2": "neptune",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "venus",
"body2": "asc",
"aspect_type": "Sesquiquadrate",
"orb": 2.5,
"exact": false,
"applying": null
},
{
"body1": "venus",
"body2": "jupiter",
"aspect_type": "Quincunx",
"orb": 3,
"exact": false,
"applying": true
},
{
"body1": "jupiter",
"body2": "asc",
"aspect_type": "Parallel",
"orb": 1,
"exact": false,
"applying": null
},
{
"body1": "mars",
"body2": "asc",
"aspect_type": "Contra-Parallel",
"orb": 1,
"exact": false,
"applying": null
},
{
"body1": "mars",
"body2": "jupiter",
"aspect_type": "Contra-Parallel",
"orb": 1,
"exact": false,
"applying": null
},
{
"body1": "mars",
"body2": "uranus",
"aspect_type": "Parallel",
"orb": 1,
"exact": false,
"applying": null
},
{
"body1": "neptune",
"body2": "asc",
"aspect_type": "Contra-Parallel",
"orb": 1,
"exact": false,
"applying": null
},
{
"body1": "neptune",
"body2": "saturn",
"aspect_type": "Parallel",
"orb": 1,
"exact": true,
"applying": null
},
{
"body1": "saturn",
"body2": "asc",
"aspect_type": "Contra-Parallel",
"orb": 1,
"exact": false,
"applying": null
},
{
"body1": "sun",
"body2": "asc",
"aspect_type": "Contra-Parallel",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "sun",
"body2": "neptune",
"aspect_type": "Parallel",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "sun",
"body2": "saturn",
"aspect_type": "Parallel",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "uranus",
"body2": "jupiter",
"aspect_type": "Contra-Parallel",
"orb": 1,
"exact": false,
"applying": null
},
{
"body1": "venus",
"body2": "mc",
"aspect_type": "Parallel",
"orb": 1,
"exact": false,
"applying": null
},
{
"body1": "venus",
"body2": "true_node",
"aspect_type": "Parallel",
"orb": 1,
"exact": false,
"applying": null
}
],
"dignities": {
"moon": {
"essential_dignities": {
"rulership": null,
"exaltation": null,
"triplicity": "Moon",
"term": null,
"face": null,
"detriment": null,
"fall": null
},
"is_peregrine": false,
"lilly_score": 3
},
"mercury": {
"essential_dignities": {
"rulership": null,
"exaltation": null,
"triplicity": null,
"term": null,
"face": null,
"detriment": null,
"fall": null
},
"is_peregrine": true,
"lilly_score": 0
},
"mars": {
"essential_dignities": {
"rulership": null,
"exaltation": null,
"triplicity": null,
"term": null,
"face": null,
"detriment": null,
"fall": null
},
"is_peregrine": true,
"lilly_score": 0
},
"sun": {
"essential_dignities": {
"rulership": null,
"exaltation": null,
"triplicity": null,
"term": null,
"face": "Sun",
"detriment": null,
"fall": null
},
"is_peregrine": false,
"lilly_score": 1
},
"saturn": {
"essential_dignities": {
"rulership": "Saturn",
"exaltation": null,
"triplicity": null,
"term": null,
"face": null,
"detriment": null,
"fall": null
},
"is_peregrine": false,
"lilly_score": 5
},
"venus": {
"essential_dignities": {
"rulership": null,
"exaltation": null,
"triplicity": null,
"term": null,
"face": "Venus",
"detriment": null,
"fall": null
},
"is_peregrine": false,
"lilly_score": 1
},
"jupiter": {
"essential_dignities": {
"rulership": null,
"exaltation": "Jupiter",
"triplicity": null,
"term": null,
"face": null,
"detriment": null,
"fall": null
},
"is_peregrine": false,
"lilly_score": 4
}
}
},
"solar_return_chart": {
"chart_info": {
"name": "Natal Chart Solar Return 2025",
"datetime": "2025-01-14T17:31:09.139739+00:00",
"location": {
"latitude": 37.5665,
"longitude": 126.978,
"elevation": 38
},
"house_system": "PLACIDUS",
"timezone": "Asia/Seoul"
},
"angles": {
"asc": {
"longitude": 223.90530996291105,
"sign": "Scorpio",
"dms": "13° Scorpio 54' 19\""
},
"mc": {
"longitude": 141.82866469349005,
"sign": "Leo",
"dms": "21° Leo 49' 43\""
}
},
"bodies": {
"moon": {
"longitude": 124.6019591692516,
"latitude": 4.1340142425107675,
"distance": 0.0025710818386733914,
"sign": "Leo",
"house": 9,
"retrograde": false,
"dms": "04° Leo 36' 06\"",
"speed": 13.22350033294697
},
"astraea_(5)": {
"longitude": 240.60416909187302,
"latitude": 4.455306847144535,
"distance": 2.8555333682568578,
"sign": "Sagittarius",
"house": 1,
"retrograde": false,
"dms": "00° Sagittarius 36' 15\"",
"speed": 0
},
"mars": {
"longitude": 116.76248487238875,
"latitude": 4.269420053549337,
"distance": 0.6427967881524105,
"sign": "Cancer",
"house": 9,
"retrograde": true,
"dms": "26° Cancer 45' 43\"",
"speed": -0.4002848383379387
},
"sun": {
"longitude": 294.80499075297024,
"latitude": 0.00009264730767154395,
"distance": 0.9836037481421979,
"sign": "Capricorn",
"house": 3,
"retrograde": false,
"dms": "24° Capricorn 48' 17\"",
"speed": 1.0182231943872466
},
"uranus": {
"longitude": 53.372427754724725,
"latitude": -0.2481237483269594,
"distance": 19.061648673514764,
"sign": "Taurus",
"house": 7,
"retrograde": true,
"dms": "23° Taurus 22' 20\"",
"speed": -0.01372521245457392
},
"vesta_(4)": {
"longitude": 214.11806124560232,
"latitude": 7.294099737458236,
"distance": 2.2068436777071754,
"sign": "Scorpio",
"house": 12,
"retrograde": false,
"dms": "04° Scorpio 07' 04\"",
"speed": 0
},
"admetos_(85030)": {
"longitude": 113.02558880077888,
"latitude": -27.636210134398873,
"distance": 4.0111757860910915,
"sign": "Cancer",
"house": 9,
"retrograde": false,
"dms": "23° Cancer 01' 32\"",
"speed": 0
},
"eris_(136199)": {
"longitude": 24.039227916093118,
"latitude": -10.746742471020417,
"distance": 95.61193144719311,
"sign": "Aries",
"house": 6,
"retrograde": false,
"dms": "24° Aries 02' 20\"",
"speed": 0
},
"saturn": {
"longitude": 345.68109007875853,
"latitude": -1.9499742303213703,
"distance": 10.216311082175396,
"sign": "Pisces",
"house": 4,
"retrograde": false,
"dms": "15° Pisces 40' 50\"",
"speed": 0.09234435956386733
},
"pluto": {
"longitude": 301.49749512910046,
"latitude": -3.2879115431452823,
"distance": 36.155482403098226,
"sign": "Aquarius",
"house": 3,
"retrograde": false,
"dms": "01° Aquarius 29' 50\"",
"speed": 0.032118909439304844
},
"venus": {
"longitude": 341.901362858927,
"latitude": -0.22228429022700003,
"distance": 0.6492202117475397,
"sign": "Pisces",
"house": 4,
"retrograde": false,
"dms": "11° Pisces 54' 04\"",
"speed": 0.98592298290896
},
"jupiter": {
"longitude": 72.0014047938884,
"latitude": -0.5541804359720734,
"distance": 4.321459940722948,
"sign": "Gemini",
"house": 7,
"retrograde": true,
"dms": "12° Gemini 00' 04\"",
"speed": -0.06868303516966989
},
"juno_(3)": {
"longitude": 232.35403595760468,
"latitude": 8.6702877119138,
"distance": 3.622004156347889,
"sign": "Scorpio",
"house": 1,
"retrograde": false,
"dms": "22° Scorpio 21' 14\"",
"speed": 0
},
"apollo_(1862)": {
"longitude": 233.80320259189529,
"latitude": 1.6929126213688233,
"distance": 1.6697481450019698,
"sign": "Scorpio",
"house": 1,
"retrograde": false,
"dms": "23° Scorpio 48' 11\"",
"speed": 0
},
"makemake_(136472)": {
"longitude": 191.38926392097588,
"latitude": 27.517392407069053,
"distance": 52.49327797485194,
"sign": "Libra",
"house": 11,
"retrograde": false,
"dms": "11° Libra 23' 20\"",
"speed": 0
},
"lilith_(1181)": {
"longitude": 284.7213599645477,
"latitude": 1.5149231026732766,
"distance": 3.9405439332547108,
"sign": "Capricorn",
"house": 2,
"retrograde": false,
"dms": "14° Capricorn 43' 16\"",
"speed": 0
},
"mercury": {
"longitude": 279.17465609614686,
"latitude": -0.6626574606615834,
"distance": 1.3271570100305154,
"sign": "Capricorn",
"house": 2,
"retrograde": false,
"dms": "09° Capricorn 10' 27\"",
"speed": 1.4909716706824838
},
"poseidon_(4341)": {
"longitude": 279.319595261465,
"latitude": 2.2197027859273453,
"distance": 3.2949858140622594,
"sign": "Capricorn",
"house": 2,
"retrograde": false,
"dms": "09° Capricorn 19' 10\"",
"speed": 0
},
"ceres_(1)": {
"longitude": 313.9194823387593,
"latitude": -7.05293724725399,
"distance": 3.879455334893043,
"sign": "Aquarius",
"house": 3,
"retrograde": false,
"dms": "13° Aquarius 55' 09\"",
"speed": 0
},
"eros_(433)": {
"longitude": 281.97706270031875,
"latitude": -3.4621051797215308,
"distance": 2.6664411914838024,
"sign": "Capricorn",
"house": 2,
"retrograde": false,
"dms": "11° Capricorn 58' 37\"",
"speed": 0
},
"zeus_(5731)": {
"longitude": 316.2153424599253,
"latitude": 6.005066095589546,
"distance": 4.620722952893577,
"sign": "Aquarius",
"house": 3,
"retrograde": false,
"dms": "16° Aquarius 12' 55\"",
"speed": 0
},
"chiron_(2060)": {
"longitude": 18.769361942591008,
"latitude": 0.9060032904671231,
"distance": 18.653862098579502,
"sign": "Aries",
"house": 5,
"retrograde": false,
"dms": "18° Aries 46' 09\"",
"speed": 0
},
"pallas_(2)": {
"longitude": 287.2864371377449,
"latitude": 25.67208068931102,
"distance": 4.18197801894115,
"sign": "Capricorn",
"house": 3,
"retrograde": false,
"dms": "17° Capricorn 17' 11\"",
"speed": 0
},
"neptune": {
"longitude": 357.5374402481882,
"latitude": -1.2776843084317258,
"distance": 30.331712578686194,
"sign": "Pisces",
"house": 5,
"retrograde": false,
"dms": "27° Pisces 32' 14\"",
"speed": 0.02097746928484412
},
"cupido_(763)": {
"longitude": 74.58524782984905,
"latitude": 2.0896971936883055,
"distance": 1.22713590950344,
"sign": "Gemini",
"house": 8,
"retrograde": false,
"dms": "14° Gemini 35' 06\"",
"speed": 0
},
"sedna_(90377)": {
"longitude": 59.824488043655194,
"latitude": -11.94599013692676,
"distance": 82.71830004919809,
"sign": "Taurus",
"house": 7,
"retrograde": false,
"dms": "29° Taurus 49' 28\"",
"speed": 0
},
"true_node": {
"longitude": 0.7704799789037532,
"latitude": 0,
"distance": null,
"sign": "Aries",
"house": 5,
"retrograde": true,
"dms": "00° Aries 46' 13\"",
"speed": -0.05294018393442457
}
},
"houses": {
"house_1": {
"cusp_longitude": 223.9053099928356,
"sign": "Scorpio",
"bodies": [
"astraea_(5)",
"juno_(3)",
"apollo_(1862)",
"asc"
]
},
"house_2": {
"cusp_longitude": 253.28916425767173,
"sign": "Sagittarius",
"bodies": [
"lilith_(1181)",
"mercury",
"poseidon_(4341)",
"eros_(433)"
]
},
"house_3": {
"cusp_longitude": 286.63426221027385,
"sign": "Capricorn",
"bodies": [
"sun",
"pluto",
"ceres_(1)",
"zeus_(5731)",
"pallas_(2)"
]
},
"house_4": {
"cusp_longitude": 321.82866473172055,
"sign": "Aquarius",
"bodies": [
"saturn",
"venus"
]
},
"house_5": {
"cusp_longitude": 354.31206115168334,
"sign": "Pisces",
"bodies": [
"chiron_(2060)",
"neptune",
"true_node"
]
},
"house_6": {
"cusp_longitude": 21.4912746308961,
"sign": "Aries",
"bodies": [
"eris_(136199)"
]
},
"house_7": {
"cusp_longitude": 43.90530999283561,
"sign": "Taurus",
"bodies": [
"uranus",
"jupiter",
"sedna_(90377)"
]
},
"house_8": {
"cusp_longitude": 73.2891642576717,
"sign": "Gemini",
"bodies": [
"cupido_(763)"
]
},
"house_9": {
"cusp_longitude": 106.63426221027385,
"sign": "Cancer",
"bodies": [
"moon",
"mars",
"admetos_(85030)"
]
},
"house_10": {
"cusp_longitude": 141.82866473172055,
"sign": "Leo",
"bodies": [
"mc"
]
},
"house_11": {
"cusp_longitude": 174.3120611516833,
"sign": "Virgo",
"bodies": [
"makemake_(136472)"
]
},
"house_12": {
"cusp_longitude": 201.49127463089607,
"sign": "Libra",
"bodies": [
"vesta_(4)"
]
}
},
"aspects": [
{
"body1": "admetos_(85030)",
"body2": "apollo_(1862)",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "admetos_(85030)",
"body2": "chiron_(2060)",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": null
},
{
"body1": "admetos_(85030)",
"body2": "eris_(136199)",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": null
},
{
"body1": "admetos_(85030)",
"body2": "juno_(3)",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "admetos_(85030)",
"body2": "mc",
"aspect_type": "Semisextile",
"orb": 2,
"exact": false,
"applying": null
},
{
"body1": "admetos_(85030)",
"body2": "neptune",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "admetos_(85030)",
"body2": "pallas_(2)",
"aspect_type": "Opposition",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "admetos_(85030)",
"body2": "saturn",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "admetos_(85030)",
"body2": "true_node",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "apollo_(1862)",
"body2": "chiron_(2060)",
"aspect_type": "Biquintile",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "apollo_(1862)",
"body2": "mc",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": null
},
{
"body1": "apollo_(1862)",
"body2": "mercury",
"aspect_type": "Semisquare",
"orb": 2.5,
"exact": false,
"applying": true
},
{
"body1": "apollo_(1862)",
"body2": "neptune",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "apollo_(1862)",
"body2": "poseidon_(4341)",
"aspect_type": "Semisquare",
"orb": 2.5,
"exact": false,
"applying": null
},
{
"body1": "apollo_(1862)",
"body2": "sedna_(90377)",
"aspect_type": "Opposition",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "apollo_(1862)",
"body2": "true_node",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "astraea_(5)",
"body2": "admetos_(85030)",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "astraea_(5)",
"body2": "apollo_(1862)",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "astraea_(5)",
"body2": "ceres_(1)",
"aspect_type": "Quintile",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "astraea_(5)",
"body2": "eris_(136199)",
"aspect_type": "Biquintile",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "astraea_(5)",
"body2": "lilith_(1181)",
"aspect_type": "Semisquare",
"orb": 2.5,
"exact": false,
"applying": null
},
{
"body1": "astraea_(5)",
"body2": "mars",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "astraea_(5)",
"body2": "neptune",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "astraea_(5)",
"body2": "pallas_(2)",
"aspect_type": "Semisquare",
"orb": 2.5,
"exact": false,
"applying": null
},
{
"body1": "astraea_(5)",
"body2": "pluto",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": true
},
{
"body1": "astraea_(5)",
"body2": "sedna_(90377)",
"aspect_type": "Opposition",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "astraea_(5)",
"body2": "sun",
"aspect_type": "Sextile",
"orb": 7,
"exact": false,
"applying": false
},
{
"body1": "astraea_(5)",
"body2": "true_node",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "astraea_(5)",
"body2": "uranus",
"aspect_type": "Opposition",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "ceres_(1)",
"body2": "asc",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": null
},
{
"body1": "ceres_(1)",
"body2": "chiron_(2060)",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": null
},
{
"body1": "ceres_(1)",
"body2": "cupido_(763)",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "ceres_(1)",
"body2": "eros_(433)",
"aspect_type": "Semisextile",
"orb": 2,
"exact": false,
"applying": null
},
{
"body1": "ceres_(1)",
"body2": "mc",
"aspect_type": "Opposition",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "ceres_(1)",
"body2": "neptune",
"aspect_type": "Semisquare",
"orb": 2.5,
"exact": false,
"applying": false
},
{
"body1": "ceres_(1)",
"body2": "true_node",
"aspect_type": "Semisquare",
"orb": 2.5,
"exact": false,
"applying": false
},
{
"body1": "ceres_(1)",
"body2": "zeus_(5731)",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "chiron_(2060)",
"body2": "cupido_(763)",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": null
},
{
"body1": "chiron_(2060)",
"body2": "mc",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "chiron_(2060)",
"body2": "pallas_(2)",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": null
},
{
"body1": "cupido_(763)",
"body2": "asc",
"aspect_type": "Quincunx",
"orb": 3,
"exact": false,
"applying": null
},
{
"body1": "eris_(136199)",
"body2": "apollo_(1862)",
"aspect_type": "Quincunx",
"orb": 3,
"exact": false,
"applying": null
},
{
"body1": "eris_(136199)",
"body2": "chiron_(2060)",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "eris_(136199)",
"body2": "juno_(3)",
"aspect_type": "Quincunx",
"orb": 3,
"exact": false,
"applying": null
},
{
"body1": "eris_(136199)",
"body2": "mc",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "eris_(136199)",
"body2": "pallas_(2)",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": null
},
{
"body1": "eros_(433)",
"body2": "asc",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": null
},
{
"body1": "eros_(433)",
"body2": "chiron_(2060)",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": null
},
{
"body1": "eros_(433)",
"body2": "cupido_(763)",
"aspect_type": "Quincunx",
"orb": 3,
"exact": false,
"applying": null
},
{
"body1": "eros_(433)",
"body2": "pallas_(2)",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "juno_(3)",
"body2": "apollo_(1862)",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "juno_(3)",
"body2": "mc",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": null
},
{
"body1": "juno_(3)",
"body2": "mercury",
"aspect_type": "Semisquare",
"orb": 2.5,
"exact": false,
"applying": true
},
{
"body1": "juno_(3)",
"body2": "neptune",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "juno_(3)",
"body2": "pallas_(2)",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": null
},
{
"body1": "juno_(3)",
"body2": "poseidon_(4341)",
"aspect_type": "Semisquare",
"orb": 2.5,
"exact": false,
"applying": null
},
{
"body1": "juno_(3)",
"body2": "sedna_(90377)",
"aspect_type": "Opposition",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "juno_(3)",
"body2": "zeus_(5731)",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": null
},
{
"body1": "jupiter",
"body2": "asc",
"aspect_type": "Quincunx",
"orb": 3,
"exact": false,
"applying": null
},
{
"body1": "jupiter",
"body2": "ceres_(1)",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "jupiter",
"body2": "cupido_(763)",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "jupiter",
"body2": "eros_(433)",
"aspect_type": "Quincunx",
"orb": 3,
"exact": false,
"applying": false
},
{
"body1": "jupiter",
"body2": "lilith_(1181)",
"aspect_type": "Quincunx",
"orb": 3,
"exact": false,
"applying": true
},
{
"body1": "jupiter",
"body2": "makemake_(136472)",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "jupiter",
"body2": "mercury",
"aspect_type": "Quincunx",
"orb": 3,
"exact": false,
"applying": false
},
{
"body1": "jupiter",
"body2": "pallas_(2)",
"aspect_type": "Biquintile",
"orb": 1.5,
"exact": false,
"applying": false
},
{
"body1": "jupiter",
"body2": "poseidon_(4341)",
"aspect_type": "Quincunx",
"orb": 3,
"exact": false,
"applying": false
},
{
"body1": "jupiter",
"body2": "true_node",
"aspect_type": "Quintile",
"orb": 1.5,
"exact": false,
"applying": true
},
{
"body1": "jupiter",
"body2": "zeus_(5731)",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "lilith_(1181)",
"body2": "asc",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": null
},
{
"body1": "lilith_(1181)",
"body2": "ceres_(1)",
"aspect_type": "Semisextile",
"orb": 2,
"exact": false,
"applying": null
},
{
"body1": "lilith_(1181)",
"body2": "chiron_(2060)",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": null
},
{
"body1": "lilith_(1181)",
"body2": "cupido_(763)",
"aspect_type": "Quincunx",
"orb": 3,
"exact": false,
"applying": null
},
{
"body1": "lilith_(1181)",
"body2": "eros_(433)",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "lilith_(1181)",
"body2": "mc",
"aspect_type": "Biquintile",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "lilith_(1181)",
"body2": "mercury",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "lilith_(1181)",
"body2": "neptune",
"aspect_type": "Quintile",
"orb": 1.5,
"exact": false,
"applying": true
},
{
"body1": "lilith_(1181)",
"body2": "pallas_(2)",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "lilith_(1181)",
"body2": "poseidon_(4341)",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "lilith_(1181)",
"body2": "sedna_(90377)",
"aspect_type": "Sesquiquadrate",
"orb": 2.5,
"exact": false,
"applying": null
},
{
"body1": "lilith_(1181)",
"body2": "zeus_(5731)",
"aspect_type": "Semisextile",
"orb": 2,
"exact": false,
"applying": null
},
{
"body1": "makemake_(136472)",
"body2": "ceres_(1)",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "makemake_(136472)",
"body2": "chiron_(2060)",
"aspect_type": "Opposition",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "makemake_(136472)",
"body2": "cupido_(763)",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "makemake_(136472)",
"body2": "eros_(433)",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": null
},
{
"body1": "makemake_(136472)",
"body2": "lilith_(1181)",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": null
},
{
"body1": "makemake_(136472)",
"body2": "mercury",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": false
},
{
"body1": "makemake_(136472)",
"body2": "pallas_(2)",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": null
},
{
"body1": "makemake_(136472)",
"body2": "poseidon_(4341)",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": null
},
{
"body1": "makemake_(136472)",
"body2": "zeus_(5731)",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "mars",
"body2": "admetos_(85030)",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "mars",
"body2": "apollo_(1862)",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "mars",
"body2": "eris_(136199)",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": false
},
{
"body1": "mars",
"body2": "juno_(3)",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "mars",
"body2": "jupiter",
"aspect_type": "Semisquare",
"orb": 2.5,
"exact": false,
"applying": true
},
{
"body1": "mars",
"body2": "neptune",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "mars",
"body2": "pluto",
"aspect_type": "Opposition",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "mars",
"body2": "sedna_(90377)",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": true
},
{
"body1": "mars",
"body2": "sun",
"aspect_type": "Opposition",
"orb": 10,
"exact": false,
"applying": false
},
{
"body1": "mars",
"body2": "true_node",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "mars",
"body2": "uranus",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": false
},
{
"body1": "mars",
"body2": "venus",
"aspect_type": "Sesquiquadrate",
"orb": 2.5,
"exact": false,
"applying": true
},
{
"body1": "mercury",
"body2": "asc",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": null
},
{
"body1": "mercury",
"body2": "eros_(433)",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "mercury",
"body2": "mc",
"aspect_type": "Sesquiquadrate",
"orb": 2.5,
"exact": false,
"applying": null
},
{
"body1": "mercury",
"body2": "poseidon_(4341)",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "mercury",
"body2": "poseidon_(4341)",
"aspect_type": "Parallel",
"orb": 1,
"exact": false,
"applying": false
},
{
"body1": "mercury",
"body2": "poseidon_(4341)",
"aspect_type": "Contraparallel",
"orb": 1,
"exact": false,
"applying": false
},
{
"body1": "moon",
"body2": "astraea_(5)",
"aspect_type": "Trine",
"orb": 9,
"exact": false,
"applying": true
},
{
"body1": "moon",
"body2": "ceres_(1)",
"aspect_type": "Opposition",
"orb": 10,
"exact": false,
"applying": false
},
{
"body1": "moon",
"body2": "makemake_(136472)",
"aspect_type": "Sextile",
"orb": 7,
"exact": false,
"applying": false
},
{
"body1": "moon",
"body2": "mars",
"aspect_type": "Conjunction",
"orb": 10,
"exact": false,
"applying": true
},
{
"body1": "moon",
"body2": "neptune",
"aspect_type": "Trine",
"orb": 9,
"exact": false,
"applying": true
},
{
"body1": "moon",
"body2": "pluto",
"aspect_type": "Opposition",
"orb": 10,
"exact": false,
"applying": true
},
{
"body1": "moon",
"body2": "sedna_(90377)",
"aspect_type": "Sextile",
"orb": 7,
"exact": false,
"applying": true
},
{
"body1": "moon",
"body2": "sun",
"aspect_type": "Opposition",
"orb": 10,
"exact": false,
"applying": true
},
{
"body1": "moon",
"body2": "true_node",
"aspect_type": "Trine",
"orb": 9,
"exact": false,
"applying": true
},
{
"body1": "moon",
"body2": "uranus",
"aspect_type": "Quintile",
"orb": 1.5,
"exact": false,
"applying": false
},
{
"body1": "moon",
"body2": "venus",
"aspect_type": "Biquintile",
"orb": 1.5,
"exact": false,
"applying": false
},
{
"body1": "moon",
"body2": "vesta_(4)",
"aspect_type": "Square",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "neptune",
"body2": "asc",
"aspect_type": "Sesquiquadrate",
"orb": 2.5,
"exact": false,
"applying": null
},
{
"body1": "neptune",
"body2": "mc",
"aspect_type": "Biquintile",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "neptune",
"body2": "sedna_(90377)",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": false
},
{
"body1": "neptune",
"body2": "true_node",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "pallas_(2)",
"body2": "asc",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": null
},
{
"body1": "pallas_(2)",
"body2": "cupido_(763)",
"aspect_type": "Quincunx",
"orb": 3,
"exact": false,
"applying": null
},
{
"body1": "pallas_(2)",
"body2": "mc",
"aspect_type": "Biquintile",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "pallas_(2)",
"body2": "sedna_(90377)",
"aspect_type": "Sesquiquadrate",
"orb": 2.5,
"exact": false,
"applying": null
},
{
"body1": "pallas_(2)",
"body2": "true_node",
"aspect_type": "Quintile",
"orb": 1.5,
"exact": false,
"applying": false
},
{
"body1": "pluto",
"body2": "cupido_(763)",
"aspect_type": "Sesquiquadrate",
"orb": 2.5,
"exact": false,
"applying": true
},
{
"body1": "pluto",
"body2": "neptune",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": true
},
{
"body1": "pluto",
"body2": "sedna_(90377)",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "pluto",
"body2": "true_node",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": true
},
{
"body1": "poseidon_(4341)",
"body2": "asc",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": null
},
{
"body1": "poseidon_(4341)",
"body2": "eros_(433)",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "poseidon_(4341)",
"body2": "mc",
"aspect_type": "Sesquiquadrate",
"orb": 2.5,
"exact": false,
"applying": null
},
{
"body1": "poseidon_(4341)",
"body2": "pallas_(2)",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "saturn",
"body2": "asc",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "saturn",
"body2": "ceres_(1)",
"aspect_type": "Semisextile",
"orb": 2,
"exact": false,
"applying": true
},
{
"body1": "saturn",
"body2": "cupido_(763)",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": true
},
{
"body1": "saturn",
"body2": "eros_(433)",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": true
},
{
"body1": "saturn",
"body2": "juno_(3)",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "saturn",
"body2": "jupiter",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": true
},
{
"body1": "saturn",
"body2": "lilith_(1181)",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": true
},
{
"body1": "saturn",
"body2": "pallas_(2)",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": false
},
{
"body1": "saturn",
"body2": "pluto",
"aspect_type": "Semisquare",
"orb": 2.5,
"exact": false,
"applying": false
},
{
"body1": "saturn",
"body2": "venus",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "saturn",
"body2": "zeus_(5731)",
"aspect_type": "Semisextile",
"orb": 2,
"exact": false,
"applying": false
},
{
"body1": "sedna_(90377)",
"body2": "true_node",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": false
},
{
"body1": "sun",
"body2": "asc",
"aspect_type": "Quintile",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "sun",
"body2": "admetos_(85030)",
"aspect_type": "Opposition",
"orb": 10,
"exact": false,
"applying": true
},
{
"body1": "sun",
"body2": "apollo_(1862)",
"aspect_type": "Sextile",
"orb": 7,
"exact": false,
"applying": true
},
{
"body1": "sun",
"body2": "chiron_(2060)",
"aspect_type": "Square",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "sun",
"body2": "eris_(136199)",
"aspect_type": "Square",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "sun",
"body2": "juno_(3)",
"aspect_type": "Sextile",
"orb": 7,
"exact": false,
"applying": true
},
{
"body1": "sun",
"body2": "jupiter",
"aspect_type": "Sesquiquadrate",
"orb": 2.5,
"exact": false,
"applying": false
},
{
"body1": "sun",
"body2": "mc",
"aspect_type": "Quincunx",
"orb": 3,
"exact": false,
"applying": null
},
{
"body1": "sun",
"body2": "neptune",
"aspect_type": "Sextile",
"orb": 7,
"exact": false,
"applying": false
},
{
"body1": "sun",
"body2": "pallas_(2)",
"aspect_type": "Conjunction",
"orb": 10,
"exact": false,
"applying": true
},
{
"body1": "sun",
"body2": "pluto",
"aspect_type": "Conjunction",
"orb": 10,
"exact": false,
"applying": false
},
{
"body1": "sun",
"body2": "sedna_(90377)",
"aspect_type": "Trine",
"orb": 9,
"exact": false,
"applying": false
},
{
"body1": "sun",
"body2": "true_node",
"aspect_type": "Sextile",
"orb": 7,
"exact": false,
"applying": false
},
{
"body1": "sun",
"body2": "uranus",
"aspect_type": "Trine",
"orb": 9,
"exact": false,
"applying": true
},
{
"body1": "sun",
"body2": "venus",
"aspect_type": "Semisquare",
"orb": 2.5,
"exact": false,
"applying": false
},
{
"body1": "true_node",
"body2": "asc",
"aspect_type": "Sesquiquadrate",
"orb": 2.5,
"exact": false,
"applying": null
},
{
"body1": "uranus",
"body2": "admetos_(85030)",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": false
},
{
"body1": "uranus",
"body2": "apollo_(1862)",
"aspect_type": "Opposition",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "uranus",
"body2": "eris_(136199)",
"aspect_type": "Semisextile",
"orb": 2,
"exact": false,
"applying": true
},
{
"body1": "uranus",
"body2": "juno_(3)",
"aspect_type": "Opposition",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "uranus",
"body2": "mc",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": null
},
{
"body1": "uranus",
"body2": "mercury",
"aspect_type": "Sesquiquadrate",
"orb": 2.5,
"exact": false,
"applying": true
},
{
"body1": "uranus",
"body2": "neptune",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": true
},
{
"body1": "uranus",
"body2": "pallas_(2)",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": false
},
{
"body1": "uranus",
"body2": "poseidon_(4341)",
"aspect_type": "Sesquiquadrate",
"orb": 2.5,
"exact": false,
"applying": true
},
{
"body1": "uranus",
"body2": "sedna_(90377)",
"aspect_type": "Conjunction",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "uranus",
"body2": "venus",
"aspect_type": "Quintile",
"orb": 1.5,
"exact": false,
"applying": true
},
{
"body1": "venus",
"body2": "asc",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "venus",
"body2": "cupido_(763)",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": false
},
{
"body1": "venus",
"body2": "eros_(433)",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": false
},
{
"body1": "venus",
"body2": "jupiter",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": false
},
{
"body1": "venus",
"body2": "lilith_(1181)",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": false
},
{
"body1": "venus",
"body2": "makemake_(136472)",
"aspect_type": "Quincunx",
"orb": 3,
"exact": false,
"applying": true
},
{
"body1": "venus",
"body2": "mercury",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": false
},
{
"body1": "venus",
"body2": "pallas_(2)",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": false
},
{
"body1": "venus",
"body2": "poseidon_(4341)",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": true
},
{
"body1": "vesta_(4)",
"body2": "lilith_(1181)",
"aspect_type": "Quintile",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "vesta_(4)",
"body2": "mc",
"aspect_type": "Quintile",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "vesta_(4)",
"body2": "mercury",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": true
},
{
"body1": "vesta_(4)",
"body2": "neptune",
"aspect_type": "Biquintile",
"orb": 1.5,
"exact": false,
"applying": false
},
{
"body1": "vesta_(4)",
"body2": "pallas_(2)",
"aspect_type": "Quintile",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "vesta_(4)",
"body2": "pluto",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": false
},
{
"body1": "vesta_(4)",
"body2": "poseidon_(4341)",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": null
},
{
"body1": "vesta_(4)",
"body2": "venus",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": true
},
{
"body1": "zeus_(5731)",
"body2": "asc",
"aspect_type": "Square",
"orb": 7,
"exact": false,
"applying": null
},
{
"body1": "zeus_(5731)",
"body2": "chiron_(2060)",
"aspect_type": "Sextile",
"orb": 6,
"exact": false,
"applying": null
},
{
"body1": "zeus_(5731)",
"body2": "cupido_(763)",
"aspect_type": "Trine",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "zeus_(5731)",
"body2": "mc",
"aspect_type": "Opposition",
"orb": 8,
"exact": false,
"applying": null
},
{
"body1": "zeus_(5731)",
"body2": "pallas_(2)",
"aspect_type": "Semisextile",
"orb": 2,
"exact": false,
"applying": null
},
{
"body1": "zeus_(5731)",
"body2": "true_node",
"aspect_type": "Semisquare",
"orb": 2.5,
"exact": false,
"applying": true
},
{
"body1": "juno_(3)",
"body2": "ceres_(1)",
"aspect_type": "Contra-Parallel",
"orb": 1,
"exact": false,
"applying": null
},
{
"body1": "juno_(3)",
"body2": "mercury",
"aspect_type": "Contra-Parallel",
"orb": 1,
"exact": false,
"applying": null
},
{
"body1": "mars",
"body2": "vesta_(4)",
"aspect_type": "Parallel",
"orb": 1,
"exact": true,
"applying": null
},
{
"body1": "mercury",
"body2": "ceres_(1)",
"aspect_type": "Parallel",
"orb": 1,
"exact": true,
"applying": null
},
{
"body1": "moon",
"body2": "ceres_(1)",
"aspect_type": "Contra-Parallel",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "moon",
"body2": "juno_(3)",
"aspect_type": "Parallel",
"orb": 1.5,
"exact": true,
"applying": null
},
{
"body1": "moon",
"body2": "jupiter",
"aspect_type": "Parallel",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "moon",
"body2": "mercury",
"aspect_type": "Contra-Parallel",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "moon",
"body2": "pluto",
"aspect_type": "Contra-Parallel",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "pluto",
"body2": "ceres_(1)",
"aspect_type": "Parallel",
"orb": 1,
"exact": false,
"applying": null
},
{
"body1": "pluto",
"body2": "juno_(3)",
"aspect_type": "Contra-Parallel",
"orb": 1,
"exact": false,
"applying": null
},
{
"body1": "pluto",
"body2": "mercury",
"aspect_type": "Parallel",
"orb": 1,
"exact": false,
"applying": null
},
{
"body1": "saturn",
"body2": "pallas_(2)",
"aspect_type": "Parallel",
"orb": 1,
"exact": false,
"applying": null
},
{
"body1": "saturn",
"body2": "venus",
"aspect_type": "Parallel",
"orb": 1,
"exact": false,
"applying": null
},
{
"body1": "sun",
"body2": "jupiter",
"aspect_type": "Contra-Parallel",
"orb": 1.5,
"exact": false,
"applying": null
},
{
"body1": "venus",
"body2": "pallas_(2)",
"aspect_type": "Parallel",
"orb": 1,
"exact": true,
"applying": null
}
],
"dignities": {
"moon": {
"essential_dignities": {
"rulership": null,
"exaltation": null,
"triplicity": null,
"term": null,
"face": null,
"detriment": null,
"fall": null
},
"is_peregrine": true,
"lilly_score": 0
},
"mars": {
"essential_dignities": {
"rulership": null,
"exaltation": null,
"triplicity": null,
"term": null,
"face": null,
"detriment": null,
"fall": "Mars"
},
"is_peregrine": true,
"lilly_score": -4
},
"sun": {
"essential_dignities": {
"rulership": null,
"exaltation": null,
"triplicity": null,
"term": null,
"face": "Sun",
"detriment": null,
"fall": null
},
"is_peregrine": false,
"lilly_score": 1
},
"saturn": {
"essential_dignities": {
"rulership": null,
"exaltation": null,
"triplicity": null,
"term": null,
"face": null,
"detriment": null,
"fall": null
},
"is_peregrine": true,
"lilly_score": 0
},
"venus": {
"essential_dignities": {
"rulership": null,
"exaltation": "Venus",
"triplicity": "Venus",
"term": "Venus",
"face": null,
"detriment": null,
"fall": null
},
"is_peregrine": false,
"lilly_score": 9
},
"jupiter": {
"essential_dignities": {
"rulership": null,
"exaltation": null,
"triplicity": "Jupiter",
"term": null,
"face": null,
"detriment": "Jupiter",
"fall": null
},
"is_peregrine": false,
"lilly_score": -2
},
"mercury": {
"essential_dignities": {
"rulership": null,
"exaltation": null,
"triplicity": null,
"term": null,
"face": null,
"detriment": null,
"fall": null
},
"is_peregrine": true,
"lilly_score": 0
}
}
},
"solar_return_info": {
"return_year": 2025,
"natal_date": "1990-01-15T14:30:00",
"solar_return_datetime": "2025-01-14T17:31:09.139739+00:00",
"return_location": {
"latitude": 37.5665,
"longitude": 126.978,
"timezone": "Asia/Seoul"
},
"tolerance_degrees": 0.08333333333333333,
"calculation_date": "2025-11-12T03:59:43.645128"
}
},
"message": "Solar return for 2025 calculated successfully",
"timestamp": "2025-11-12T03:59:43.645189",
"usage_info": {
"feature": "solar_returns",
"user": "internal",
"used": 0,
"limit": 999999,
"remaining": 999999
}
}응답 필드 설명
- natal_chart: 출생 차트 기본 정보
chart_info: 차트 메타데이터 (name, datetime, location, house_system, timezone)angles: 네이탈 앵글 (ascendant, midheaven)bodies: 네이탈 행성 위치 (longitude, latitude, distance, sign, house, retrograde, dms, speed)houses: 네이탈 하우스 (house_1 ~ house_12, cusp_longitude, sign, bodies)aspects: 네이탈 애스펙트dignities: 네이탈 디그니티
- solar_return_chart: 솔라 리턴 차트 정보
chart_info: 솔라 리턴 차트 메타데이터name: "Solar Return {year}"datetime: 정확한 솔라 리턴 순간 (UTC)location: 솔라 리턴 계산 위치 (return_location 또는 natal_location)house_system: 하우스 시스템timezone: 솔라 리턴 위치 타임존
angles: 솔라 리턴 앵글 (ascendant, midheaven) - 연간 테마의 핵심bodies: 솔라 리턴 행성 위치sun: 네이탈과 동일한 황경 (정의상)house: 태양이 있는 하우스 = 올해 초점 영역- 다른 행성들: 솔라 리턴 순간의 실제 위치
houses: 솔라 리턴 하우스 배치- 각 하우스에 어떤 행성이 있는지 = 올해 해당 생활 영역에 에너지 집중
aspects: 솔라 리턴 차트 내 애스펙트dignities: 솔라 리턴 디그니티 정보
- solar_return_info: 솔라 리턴 계산 메타데이터
return_year: 솔라 리턴 연도natal_date: 출생 날짜solar_return_datetime: 정확한 솔라 리턴 발생 시각 (UTC ISO 형식)return_location: 솔라 리턴 계산에 사용된 위치 (위도, 경도, 타임존)tolerance_degrees: 태양 회귀 계산 허용 오차 (도 단위, 보통 ~0.08도 = 5분)calculation_date: 계산 수행 시간
- timestamp: 응답 생성 시간 (ISO 8601 형식)
- usage_info: API 사용량 정보
솔라 리턴 해석 가이드
1단계: SR Ascendant (연간 분위기)
| SR ASC | 연간 테마 |
|---|---|
| 양자리 | 새로운 시작, 독립성, 자기 주장, 활동적인 해 |
| 황소자리 | 안정성 추구, 재정 구축, 감각적 즐거움, 인내의 해 |
| 쌍둥이자리 | 학습, 소통, 다양한 관심사, 사교적인 해 |
| 게자리 | 가정, 감정, 양육, 뿌리 내리기 |
| 사자자리 | 창조성, 자기 표현, 인정받기, 즐거움의 해 |
| 처녀자리 | 조직화, 건강, 실용성, 완벽 추구의 해 |
| 천칭자리 | 관계, 파트너십, 균형, 조화의 해 |
| 전갈자리 | 변화, 깊이, 통제, 재생의 해 |
| 사수자리 | 확장, 여행, 철학, 자유의 해 |
| 염소자리 | 경력, 성취, 책임, 구조화의 해 |
| 물병자리 | 혁신, 독창성, 우정, 인도주의의 해 |
| 물고기자리 | 영성, 상상력, 동정심, 꿈의 해 |
2단계: SR Sun in House (올해 주요 초점)
| 하우스 | 연간 초점 영역 |
|---|---|
| 1하우스 | 자아 개발, 외모/이미지 변화, 새로운 시작 - "나"의 해 |
| 2하우스 | 재정, 소유물, 자기 가치 - 돈과 자원에 집중 |
| 3하우스 | 학습, 소통, 짧은 여행, 형제자매 - 정보와 교류의 해 |
| 4하우스 | 가정, 부모, 뿌리, 사생활 - 내면과 가족에 집중 |
| 5하우스 | 창조성, 연애, 자녀, 즐거움 - 기쁨과 자기 표현의 해 |
| 6하우스 | 일상, 건강, 직무, 봉사 - 실무와 개선의 해 |
| 7하우스 | 파트너십, 결혼, 계약, 타인 - 관계가 핵심인 해 |
| 8하우스 | 변화, 공유 자원, 친밀감, 위기 - 깊은 변혁과 재생의 해 |
| 9하우스 | 고등 교육, 여행, 철학, 출판 - 확장과 탐험의 해 |
| 10하우스 | 경력, 공적 지위, 야망 - 사회적 성공과 인정의 해 (매우 중요한 해) |
| 11하우스 | 친구, 그룹, 희망, 사회 활동 - 네트워킹과 미래 계획의 해 |
| 12하우스 | 은둔, 영성, 무의식, 마무리 - 내면 작업과 휴식의 해 (새 주기 준비) |
3단계: Angular Planets (가장 강력한 영향)
1, 4, 7, 10하우스(Angular Houses)에 있는 행성은 올해 매우 강력하게 작용합니다:
- SR Jupiter in 10th: 경력 확장, 승진, 공적 성공의 해
- SR Saturn in 1st: 자기 규율, 책임 증가, 성숙의 해 (힘들지만 성장)
- SR Venus in 7th: 중요한 관계 시작 또는 심화 가능성
- SR Mars in 4th: 집/가족 관련 활동 증가, 이사 가능성
- SR Uranus in 1st: 급격한 자기 변화, 예상치 못한 새 방향
솔라 리턴 해석 실전 순서
1. SR ASC 확인 → 연간 전체 분위기 파악
2. SR Sun의 하우스 → 올해 주요 초점 영역
3. Angular planets (1/4/7/10하우스) → 가장 강력한 테마
4. SR Moon 하우스 → 감정적으로 중요한 영역
5. Stellium (3개+ 행성 집중) → 압도적 초점 영역
6. SR to Natal aspects → 네이탈 잠재력 활성화 패턴
7. 역행 행성 → 재검토 필요 영역
⚠️ 네이탈 차트가 기본 잠재력이고, 솔라 리턴은 "올해 어떤 부분이 활성화되는가"를 보여줍니다.
에러 응답
잘못된 날짜 형식 (400)
날짜 형식 오류
{
"success": false,
"error": "Invalid value for 'body -> natal_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 -> return_year': ensure this value is greater than or equal to 1900",
"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: solar_returns",
"error_code": 429,
"details": null,
"timestamp": "2024-07-17T12:00:00.123456"
}에러 코드 요약
| 코드 | 설명 | 해결 방법 |
|---|---|---|
| 400 | 잘못된 요청 데이터 | 날짜 형식, 연도 범위, 좌표 범위, 오브 범위 확인 |
| 401 | 인증 실패 | 유효한 API 키를 X-API-Key 헤더에 포함 |
| 403 | 권한 없음 | 현재 플랜에서 solar_returns 기능 사용 가능 여부 확인 |
| 429 | 사용량 제한 초과 | 플랜 업그레이드 또는 다음 주기까지 대기 |
| 500 | 서버 내부 오류 | 잠시 후 재시도, 지속 시 고객 지원 문의 |
사용 예시
연간 예측 워크플로우
생일 2-3개월 전에 다가올 연도의 솔라 리턴 차트를 계산하여 연간 계획을 세웁니다:
1. SR Sun 하우스 확인 → 올해 주력할 생활 영역 결정
2. Angular planets → 강력한 테마와 기회/도전 파악
3. SR Moon 하우스 → 감정적 에너지 투자 방향
4. Stellium → 집중 영역 최우선 관리
5. 어려운 배치 (Saturn/Pluto angular) → 사전 준비와 심리적 각오
이주 솔라 리턴 활용
만약 솔라 리턴에서 토성이 1하우스나 7하우스에 있어 부담스럽다면, 생일을 다른 도시에서 보내 토성을 다른 하우스로 이동시킬 수 있습니다. 예를 들어 서쪽으로 여행하면 ASC가 변경되어 행성의 하우스 배치가 달라집니다. 단, 이는 논란이 있는 기법이므로 신중히 참고만 하세요.
트랜짓 및 프로그레션과 통합
솔라 리턴 차트는 단독으로 보기보다 다른 기법과 함께 볼 때 더 정확합니다:
- 트랜짓: 외부 사건의 실제 타이밍 (월별 세부 시기)
- 프로그레션: 내적 발달 단계 (장기 추세)
- 솔라 리턴: 연간 주요 테마와 초점 (1년 로드맵)
관련 엔드포인트
- Natal Chart API - 출생 차트 계산
- Progressions API - 2차 진행 차트
- Transits API - 트랜짓 차트
- Primary Directions API - 프라이머리 디렉션
솔라 리턴의 실용적 가치
솔라 리턴은 점성술에서 가장 대중적이고 실용적인 예측 기법입니다. 복잡한 계산 없이 매년 생일마다 "올해의 로드맵"을 확인할 수 있어, 커리어 결정, 이사 계획, 관계 타이밍 등 구체적인 인생 결정에 도움이 됩니다. 특히 SR Sun in 10th (경력의 해), SR Venus in 7th (관계의 해), SR Saturn in 1st (성숙과 도전의 해) 같은 명확한 테마는 매년 반복 검증되어 신뢰도가 높습니다. 생일 전에 미리 확인하여 연간 계획을 세우는 것을 권장합니다.