Skip to content
AstroWay/api v2.201.6 · docs
all systems operational

Synastry

The POST /v1/synastry endpoint compares two natal charts: it calculates cross-aspects between planets of both people and returns a compatibility score. Cost: 50 credits (Tier 3).

Two nested objects chart1 and chart2, each with the same parameters as /v1/chart:

ParameterTypeRequiredDescription
chart1objectYesFirst person’s data
chart2objectYesSecond person’s data

Each object: 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": 51,
"label": "mixed",
"harmony": 15.8,
"tension": 16.8,
"top": [
{ "aspect": { "planet1": "Venus", "planet2": "Moon", "type": { "name": "Square", "angle": 90 } }, "strength": 2.09, "sign": -1 }
]
}
}
FieldTypeDescription
scorenumberOverall 0–100 score
labelstringharmonious, balanced, mixed, challenging
harmonynumberWeighted sum of the aspects that scored as harmony
tensionnumberWeighted sum of the aspects that scored as tension
toparrayThe five heaviest aspects behind the score, each with its strength and its sign (1 harmony, -1 tension)
EndpointCreditsWhat it adds
/v1/composite50Composite chart (midpoints)
/v1/davison50Davison chart (mean date)
/v1/coalescent50Coalescent chart
/v1/group-synastry100Compatibility matrix for 2–10 people
/v1/human-design/compatibility100HD compatibility
Was this helpful?
Suggest an edit

Last updated: