POST
/v1/astrology/astro_detailsAstro Details
Extended astrological details including yoga, karana, and other Panchanga elements.
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/astro_details' \ -H 'Authorization: Bearer YOUR_API_KEY'
JavaScript
const response = await fetch('https://api.astro-fusion.com/v1/astrology/astro_details', { method: 'POST', headers: { Authorization: 'Bearer YOUR_API_KEY' } });
Python
import requests response = requests.post('https://api.astro-fusion.com/v1/astrology/astro_details', headers={'Authorization': 'Bearer YOUR_API_KEY'})