POST
/v1/astrology/match_percentage
Match Percentage
Compatibility percentage score.
Response Example
{
"message": "Detailed endpoint documentation is available in progress. Validate request/response in Swagger UI for live schema."
}
Code Examples
cURL
curl -X POST 'https://api.astro-fusion.com/v1/astrology/match_percentage' \ -H 'Authorization: Bearer YOUR_API_KEY'
JavaScript
const response = await fetch('https://api.astro-fusion.com/v1/astrology/match_percentage', {
method: 'POST',
headers: { Authorization: 'Bearer YOUR_API_KEY' }
});
Python
import requests
response = requests.post('https://api.astro-fusion.com/v1/astrology/match_percentage', headers={'Authorization': 'Bearer YOUR_API_KEY'})