GET
/external/v1/calculations/panchanga

Panchanga

Complete Panchanga: Tithi, Nakshatra, Yoga, Karana, Sunrise/Sunset.

Response Example

{
  "message": "Detailed endpoint documentation is available in progress. Validate request/response in Swagger UI for live schema."
}

Code Examples

cURL
curl -X GET 'https://api.astro-fusion.com/external/v1/calculations/panchanga' \
  -H 'Authorization: Bearer YOUR_API_KEY'
JavaScript
const response = await fetch('https://api.astro-fusion.com/external/v1/calculations/panchanga', {
  method: 'GET',
  headers: { Authorization: 'Bearer YOUR_API_KEY' }
});
Python
import requests

response = requests.get('https://api.astro-fusion.com/external/v1/calculations/panchanga', headers={'Authorization': 'Bearer YOUR_API_KEY'})