Find Paush Festivals

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.

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

Returns all festivals details from Pausha in response

Headers

NameTypeDescription

Authorization*

String

your API Access Token eg: Bearer {token}

Request Body

NameTypeDescription

api_key*

String

your API key

year*

Integer

year, eg: 2023

Place

String

place, ex: New Delhi

lat*

Float

latitude, eg: 28.6139

lon*

Float

longitude, eg: 77.2090

tzone*

Float

timezone, eg: 5.5

{
    "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"
        ]
    }
}

Take a look at how you might call this method via cURL, NodeJS or JavaScript jQuery AJAX and Python :

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"'

Last updated