Date Specific Festivals

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

Returns all festivals details for given date 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: 2025

month*

Integer

month, ex: 08

day*

Integer

day, ex: 09

place

String

place, ex: New Delhi

lat*

Float

latitude, eg: 28.6139

lon*

Float

longitude, eg: 77.2090

tzone*

Float

timezone, eg: 5.5 Timezone List

{
    "success": 1,
    "data": {
        "gayatri_jayanti": {
            "date": "2025-08-09",
            "image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Gayatri Jayanti.png"
        },
        "narali_purnima": {
            "date": "2025-08-09",
            "image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Narali Purnima.png"
        },
        "sanskrit_divas": {
            "date": "2025-08-09",
            "image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Sanskrit Divas.png"
        },
        "shraavana_maas": {
            "start_date": "2025-07-11",
            "end_date": "2025-08-09",
            "start_image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Shraavana Maas Start.png",
            "end_image": "https://astroapi-6.divineapi.com/public/assets/vedic/festivals/images/main/Shraavana Maas End.png"
        }
    }
}

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

Last updated