Find Ashadha Festivals

"Immerse yourself in the spirit of Ashadha with our 'Ashadha Festivals' API, unveiling the astrological and cultural charm of festivals that grace the Indian calendar within the Panchang context.

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

Returns all festivals details from Ashada 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",
        "yogini_ekadashi": {
            "smartas": {
                "date": "2023-06-14",
                "parana": {
                    "start_time": "2023-06-15 05:23:06",
                    "end_time": "2023-06-15 08:11:06"
                }
            },
            "vaishnavas": {
                "date": "2023-06-14",
                "parana": {
                    "start_time": "2023-06-15 05:23:06",
                    "end_time": "2023-06-15 08:11:06"
                }
            }
        },
        "jagannath_rathyatra": "2023-06-20",
        "devshayani_ekadashi": {
            "smartas": {
                "date": "2023-06-29",
                "parana": {
                    "start_time": "2023-06-30 13:48:49",
                    "end_time": "2023-06-30 16:36:49"
                }
            },
            "vaishnavas": {
                "date": "2023-06-29",
                "parana": {
                    "start_time": "2023-06-30 13:48:49",
                    "end_time": "2023-06-30 16:36:49"
                }
            }
        },
        "guru_purnima": "2023-07-03",
        "gauri_vrat": {
            "start_time": "2023-06-27",
            "end_time": "2023-07-02"
        },
        "jaya_parvati_vrat": {
            "date": "2023-07-01",
            "puja_muhurat": {
                "start_time": "2023-07-01 19:23:02",
                "end_time": "2023-07-01 21:23:02"
            }
        },
        "kokila_vrat": {
            "date": "2023-07-02",
            "parana": {
                "start_time": "2023-07-02 19:23:00",
                "end_time": "2023-07-02 21:23:00"
            }
        }
    }
}

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/ashada-festivals' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'year="2023"' \
--form 'Place="New Delhi"' \
--form 'lat="28.6139"' \
--form 'lon="77.2090"' \
--form 'tzone="5.5"'

Last updated