search

Copy page

Copy page as Markdown for LLMs

View as Markdown

View this page as plain text


Open in ChatGPT

Ask ChatGPT about this page

Open in Claude

Ask Claude about this page

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

Find Paush Festivals API Postman Testing Guide

POST https://astroapi-3.divineapi.com/indian-api/v2/pausha-festivals

Returns all festival details from Pausha in the response.


Headers

NameTypeDescription
Authorization *StringYour API Access Token e.g., Bearer {token}

Request Body

NameTypeDescription
api_key *StringYour API key
year *IntegerYear, e.g., 2023
placeStringPlace, e.g., New Delhi
lat *FloatLatitude, e.g., 28.6139
lon *FloatLongitude, e.g., 77.2090
tzone *FloatTimezone, e.g., 5.5 — see: Timezone List

Example Response — 200 OK

{
    "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 Example

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 Example

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) Example

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 Example

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)