Find Paush Festivals
Immerse in the spirit of Paush with the “Paush Festivals” API, illuminating the astrological and cultural significance of celebrations that embellish the Indian calendar within the Panchang framework.
Step-by-Step Postman Integration
Supported Language Codes
Support Article URL: Translating Indian Vedic APIs into a Different Language
| Code | Language |
|---|---|
| en | English |
| hi | Hindi |
| bn | Bengali |
| ma | Marathi |
| tm | Tamil |
| tl | Telugu |
| ml | Malayalam |
| kn | Kannada |
Guide:
These language codes are supported by this API. You can specify your preferred language by passing the parameter lan in the request body. Default language is en (English).
API Endpoint
POST https://astroapi-3.divineapi.com/indian-api/v2/pausha-festivals
Returns all festival details from Pausha in the response.
Headers
| Name | Type | Description |
|---|---|---|
| Authorization * | String | Your API Access Token e.g., Bearer {token} |
Request Body
| 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 |
| include_name | String | YES/NO, default is NO. |
| lan | String | Default is en |
200: OK Paush Festivals Details Fetched Successfully
{
"success": 1,
"data": {
"year": "2023",
"saphala_ekadashi": [],
"pausha_putrida_ekadashi": [
{
"smartas": {
"date": "2023-01-02",
"parana": {
"start_time": "2023-01-03 07:14:56",
"end_time": "2023-01-03 09:17:56"
},
"image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Saphala%20Ekadashi.png"
},
"vaishnavas": {
"date": "2023-01-02",
"parana": {
"start_time": "2023-01-03 07:14:56",
"end_time": "2023-01-03 09:17:56"
},
"image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Saphala%20Ekadashi.png"
}
}
],
"banada_ashtami": [],
"shakambari_purnima": {
"dates": [
"2023-01-06"
],
"image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Shakambari%20Purnima.png"
},
"pausha_purnima": {
"dates": [
"2023-01-06"
],
"image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Pausha%20Purnima.png"
}
}
}Code Integration Examples
Below are example calls using cURL, NodeJS, JavaScript (jQuery AJAX), and Python.
cURL
curl --location 'https://astroapi-3.divineapi.com/indian-api/v2/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"'NodeJS
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://astroapi-3.divineapi.com/indian-api/v2/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);
});
JavaScript (jQuery AJAX)
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/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);
});
Python
import requests
url = "https://astroapi-3.divineapi.com/indian-api/v2/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)