Compatibility Analysis
POST
/api/calc/compatibility
Calculate sun sign compatibility between two people with interpretation text.
Authorizations
ApiKeyAuth
API key for authentication. Get your API key from the dashboard.
TypeAPI Key (header: X-Api-Key)
Request Body
application/json
JSON
{
"dateTime1": "string",
"location1": {
"longitude": 0,
"latitude": 0,
"timezone": "string"
},
"dateTime2": "string",
"location2": {
"longitude": 0,
"latitude": 0,
"timezone": "string"
},
"language": "en",
"includeText": true,
"includeReadableEntities": false
}
Responses
Calculate compatibility between two birth charts
application/vnd.api+json
JSON
{
"data": {
"sign1": "string",
"sign2": "string",
"scoreBasedOnElement": 0,
"scoreBasedOnSunAspect": 0,
"text": "string"
}
}