Immerse in the spirit of Paush with our 'Paush Festivals' API, illuminating the astrological and cultural significance of celebrations that embellish the Indian calendar within the Panchang framework.
Supported Language Codes:200: OK Fetched Pausha festivals successfully!
Copy {
"success": 1,
"data": {
"year": "2023",
"saphala_ekadashi": [],
"pausha_putrida_ekadashi": [
{
"smartas": {
"date": "2023-01-02",
"parana": {
"start_time": "2023-01-03 07:14:18",
"end_time": "2023-01-03 09:17:18"
}
},
"vaishnavas": {
"date": "2023-01-02",
"parana": {
"start_time": "2023-01-03 07:14:18",
"end_time": "2023-01-03 09:17:18"
}
}
}
],
"banada_ashtami": [],
"shakambari_purnima": [
"2023-01-06"
],
"pausha_purnima": [
"2023-01-06"
]
}
}
cURL NodeJS JavaScript jQuery AJAX Python
Copy curl --location 'https://astroapi-3.divineapi.com/indian-api/v1/pausha-festivals' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'day="05"' \
--form 'month="05"' \
--form 'year="2005"' \
--form 'Place="New Delhi"' \
--form 'lat="28.6139"' \
--form 'lon="77.2090"' \
--form 'tzone="5.5"' \
--form 'lan="en"'
Copy var request = require('request');
var options = {
'method': 'POST',
'url': 'https://astroapi-3.divineapi.com/indian-api/v1/pausha-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);
});
Copy 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/v1/pausha-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);
});
Copy import requests
url = "https://astroapi-3.divineapi.com/indian-api/v1/pausha-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)