GET
/v1/panchanga/todayToday's Panchanga
Today's Panchanga
Response Example
{
"message": "This endpoint is documented for static navigation. Validate exact live schema in Swagger/OpenAPI."
}Code Examples
cURL
curl -X GET 'https://api.astro-fusion.com/v1/panchanga/today' \ -H 'Authorization: Bearer YOUR_API_KEY'
JavaScript
const response = await fetch('https://api.astro-fusion.com/v1/panchanga/today', { method: 'GET', headers: { Authorization: 'Bearer YOUR_API_KEY' } });
Python
import requests response = requests.get('https://api.astro-fusion.com/v1/panchanga/today', headers={'Authorization': 'Bearer YOUR_API_KEY'})