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.

Supported Language Codes:

Support Article URL - https://support.divineapi.com/general-api-support/translating-an-indian-vedic-apis-into-a-different-language

en For English

hi For Hindi

bn For Bengali

ma For Marathi

tm For Tamil

tl For Telugu

ml For Malayalam

kn For Kannada

Guide: These languages are supported by this API. You can use by passing "lan" in body with a value of the language.

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

Returns all festivals details from Pausha in response

Headers

Name
Type
Description

Authorization*

String

your API Access Token eg: Bearer {token}

Request Body

Name
Type
Description

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

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