콘텐츠로 이동
AstroWay/api v2.102.11 · ko
모든 시스템 정상 작동 중

시나스트리

엔드포인트 POST /v1/synastry는 두 사람의 natal chart를 비교하여 행성 간의 크로스-아スペクト를 계산하고 호환성 점수를 반환합니다. 비용: 50 크레딧 (Tier 3).

chart1chart2라는 두 개의 중첩된 객체가 있으며, 각 객체는 /v1/chart와 동일한 매개변수를 가집니다:

매개변수타입필수설명
chart1object첫 번째 사람의 데이터
chart2object두 번째 사람의 데이터

각 객체: date, time, timezoneOffset, latitude, longitude, houseSystem, name, city.

Terminal window
curl -X POST https://api.astroway.info/v1/synastry \
-H "X-Api-Key: aw_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"chart1": {
"date": "1990-07-14",
"time": "14:30:00",
"timezoneOffset": 3,
"latitude": 50.4501,
"longitude": 30.5234,
"name": "Person A"
},
"chart2": {
"date": "1992-03-22",
"time": "09:15:00",
"timezoneOffset": 2,
"latitude": 48.8566,
"longitude": 2.3522,
"name": "Person B"
}
}'
{
"chart1": {
"input": { "date": "1990-07-14", "name": "Person A" },
"planets": [ ... ],
"houses": { ... },
"aspects": [ ... ]
},
"chart2": {
"input": { "date": "1992-03-22", "name": "Person B" },
"planets": [ ... ],
"houses": { ... },
"aspects": [ ... ]
},
"crossAspects": [
{
"planet1": "Sun",
"planet2": "Venus",
"chart1Planet": "Sun",
"chart2Planet": "Venus",
"type": "trine",
"orb": 2.14,
"applying": false
},
{
"planet1": "Moon",
"planet2": "Mars",
"chart1Planet": "Moon",
"chart2Planet": "Mars",
"type": "square",
"orb": 0.87,
"applying": true
}
],
"compatibility": {
"score": 72,
"label": "harmonious",
"harmony": 18.5,
"tension": 7.2
}
}
필드타입설명
scorenumber전체 점수(0–100)
labelstringharmonious, balanced, mixed, challenging
harmonynumber조화로운 아スペクト(trine, sextile)의 가중치 합
tensionnumber긴장 아スペクト(square, opposition)의 가중치 합
엔드포인트크레딧기능
/v1/composite50컴포짓 차트(중간점)
/v1/davison50데이비슨 차트(중간 날짜)
/v1/coalescent50코얼레슨트 차트
/v1/group-synastry1002–10명의 호환성 매트릭스
/v1/human-design/compatibility100HD 호환성
도움이 되었나요?
Запропонувати правку

마지막 업데이트: