🌍 Astrocartography API and ✋ Palmistry API are now live. Ship them in your app today.Get Started

Panchang Festival

The panchang_festival API provides information related to festivals according to the panchang, a Hindu calendar system. The response includes the status of the API call and a list of festivals for the specified time period, which may be a day, month, or year. For example, the response may list festivals such as Narada Jayanti, Jyeshtha Begins *North, and Ishti for a particular time period.
POSThttps://json.astrologyapi.com/v1/panchang_festival

Authentication

x-astrologyapi-keystringrequired

API access token used to authenticate requests. Send your access token in this custom header.

Accept-Languagestring

Preferred language for the response content. Supported: English - en, Hindi - hi.

Body parameters

dayintrequired

Date, eg: 10

monthintrequired

Month, eg: 5

yearintrequired

Year, eg: 1990

hourintrequired

Hour, eg: 19

minintrequired

Minute, eg: 55

latfloatrequired

Latitude, eg: 19.2056

lonfloatrequired

Longitude, eg: 25.2056

tzonefloatrequired

Timezone, eg: 5.5

curl --location 'https://json.astrologyapi.com/v1/panchang_festival' \
  --header 'Content-Type: application/json' \
  --header 'x-astrologyapi-key: <YOUR_ACCESS_TOKEN>' \
  --data '{
    "day": 10,
    "month": 5,
    "year": 1990,
    "hour": 19,
    "min": 55,
    "lat": 19.2056,
    "lon": 25.2056,
    "tzone": 5.5
}'
Try it

Runs with sample data — no API key needed

{
  "status": true,
  "festivals": [
    "Narada Jayanti,Jyeshtha Begins *North,Ishti"
  ]
}