POST
/v1/astrology/match_making_reportMatch Report
Complete compatibility report with recommendations.
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_making_report' \ -H 'Authorization: Bearer YOUR_API_KEY'
JavaScript
const response = await fetch('https://api.astro-fusion.com/v1/astrology/match_making_report', { method: 'POST', headers: { Authorization: 'Bearer YOUR_API_KEY' } });
Python
import requests response = requests.post('https://api.astro-fusion.com/v1/astrology/match_making_report', headers={'Authorization': 'Bearer YOUR_API_KEY'})