Copy page
Copy page as Markdown for LLMs
Immerse yourself in the spirit of Ashadha with the “Ashadha Festivals” API, unveiling the astrological and cultural charm of festivals that grace the Indian calendar within the Panchang context.
Find Ashadha Festivals API Postman Testing Guide
POST https://astroapi-3.divineapi.com/indian-api/v2/ashada-festivals
Returns all festival details from Ashadha in the response.
| Name | Type | Description |
|---|---|---|
| Authorization * | String | Your API Access Token e.g., Bearer {token} |
| Name | Type | Description |
|---|---|---|
| api_key * | String | Your API key |
| year * | Integer | Year, e.g., 2023 |
| place | String | Place, e.g., New Delhi |
| lat * | Float | Latitude, e.g., 28.6139 |
| lon * | Float | Longitude, e.g., 77.2090 |
| tzone * | Float | Timezone, e.g., 5.5 — see: Timezone List |
{
"success": 1,
"data": {
"year": "2023",
"yogini_ekadashi": {
"smartas": {
"date": "2023-06-14",
"parana": {
"start_time": "2023-06-15 05:23:19",
"end_time": "2023-06-15 08:11:19"
},
"image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Yogini%20Ekadashi.png"
},
"vaishnavas": {
"date": "2023-06-14",
"parana": {
"start_time": "2023-06-15 05:23:19",
"end_time": "2023-06-15 08:11:19"
},
"image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Yogini%20Ekadashi.png"
}
},
"jagannath_rathyatra": {
"date": "2023-06-20",
"image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Jagannath%20Rathyatra.png"
},
"devshayani_ekadashi": {
"smartas": {
"date": "2023-06-29",
"parana": {
"start_time": "2023-06-30 13:49:32",
"end_time": "2023-06-30 16:37:32"
},
"image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Devshayani%20Ekadashi.png"
},
"vaishnavas": {
"date": "2023-06-29",
"parana": {
"start_time": "2023-06-30 13:49:32",
"end_time": "2023-06-30 16:37:32"
},
"image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Devshayani%20Ekadashi.png"
}
},
"guru_purnima": {
"date": "2023-07-03",
"image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Guru%20Purnima.png"
},
"gauri_vrat": {
"start_time": "2023-06-29",
"end_time": "2023-07-03",
"start_image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Gauri Vrat Start.png",
"end_image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Gauri Vrat End.png"
},
"jaya_parvati_vrat": {
"date": "2023-07-01",
"puja_muhurat": {
"start_time": "2023-07-01 19:23:40",
"end_time": "2023-07-01 21:23:40"
},
"image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Jaya%20Parvati%20Vrat.png"
},
"kokila_vrat": {
"date": "2023-07-02",
"parana": {
"start_time": "2023-07-02 19:23:39",
"end_time": "2023-07-02 21:23:39"
},
"image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Kokila%20Vrat.png"
}
}
}Below are sample implementations for cURL, NodeJS, JavaScript (jQuery AJAX), and Python.
curl --location 'https://astroapi-3.divineapi.com/indian-api/v2/ashada-festivals' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'year="2023"' \
--form 'Place="New Delhi"' \
--form 'lat="28.6139"' \
--form 'lon="77.2090"' \
--form 'tzone="5.5"'
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://astroapi-3.divineapi.com/indian-api/v2/ashada-festivals',
'headers': {
'Authorization': 'Bearer {Your Auth Token}'
},
formData: {
'api_key': '{Your API Key}',
'year': '2023',
'Place': 'New Delhi',
'lat': '28.6139',
'lon': '77.2090',
'tzone': '5.5'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
var form = new FormData();
form.append("api_key", "{Your API Key}");
form.append("year", "2023");
form.append("Place", "New Delhi");
form.append("lat", "28.6139");
form.append("lon", "77.2090");
form.append("tzone", "5.5");
var settings = {
"url": "https://astroapi-3.divineapi.com/indian-api/v2/ashada-festivals",
"method": "POST",
"timeout": 0,
"headers": {
"Authorization": "Bearer {Your Auth Token}"
},
"processData": false,
"mimeType": "multipart/form-data",
"contentType": false,
"data": form
};
$.ajax(settings).done(function (response) {
console.log(response);
});import requests
url = "https://astroapi-3.divineapi.com/indian-api/v2/ashada-festivals"
payload = {'api_key': '{Your API Key}',
'year': '2023',
'Place': 'New Delhi',
'lat': '28.6139',
'lon': '77.2090',
'tzone': '5.5'}
headers = {
'Authorization': 'Bearer {Your Auth Token}'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)