Find Jyeshtha Festivals

Embrace the essence of Jyeshtha with our 'Jyeshtha Festivals' API, revealing the astrological and cultural tapestry of celebrations that adorn the Indian calendar within the Panchang realm.

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

Returns all festivals details from Jyeshtha 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",
        "narada_jayanti": "2023-05-06",
        "apara_ekadashi": {
            "smartas": {
                "date": "2023-05-15",
                "parana": {
                    "start_time": "2023-05-16 06:42:00",
                    "end_time": "2023-05-16 08:12:12"
                }
            },
            "vaishnavas": {
                "date": "2023-05-15",
                "parana": {
                    "start_time": "2023-05-16 06:42:00",
                    "end_time": "2023-05-16 08:12:12"
                }
            }
        },
        "vat_savitri_vrat": {
            "date": "2023-05-19",
            "parana": {
                "start_time": "2023-05-19 19:07:34",
                "end_time": "2023-05-19 21:10:34"
            }
        },
        "shani_amavasya": "2023-05-19",
        "ganga_dussehra": "2023-05-30",
        "nirjala_ekadashi": {
            "smartas": {
                "date": "2023-05-31",
                "parana": {
                    "start_time": "2023-06-01 05:23:39",
                    "end_time": "2023-06-01 08:08:39"
                }
            },
            "vaishnavas": {
                "date": "2023-05-31",
                "parana": {
                    "start_time": "2023-06-01 05:23:39",
                    "end_time": "2023-06-01 08:08:39"
                }
            }
        },
        "vat_purnima_vrat": {
            "date": "2023-06-03",
            "parana": {
                "start_time": "2023-06-03 19:15:44",
                "end_time": "2023-06-03 21:15:44"
            }
        },
        "mahesh_navami": "2023-05-29"
    }
}

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/jyeshtha-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