コンテンツにスキップ
AstroWay/api v2.102.11 · ja
すべてのシステムが正常です

シナストリー

エンドポイント POST /v1/synastry は2つの Natal チャートを比較し、双方の惑星間のクロスアスペクトを計算して、互換性スコアを返します。コスト: 50 クレジット (Tier 3)。

2つのネストされたオブジェクト chart1chart2 を含み、それぞれ /v1/chart と同じパラメータを持ちます。

パラメータタイプ必須説明
chart1objectはい1人目のデータ
chart2objectはい2人目のデータ

各オブジェクト: 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 互換性
参考になりましたか?
Запропонувати правку

最終更新日: