Find Phalguna Festivals

The Festivals in Phalguna Month API is a part of the Panchang API suite, dedicated to detailing the festivals and significant dates occurring in the Hindu month of Phalguna. This API provides information on key events like Vijaya Ekadashi, Phulera Dooj, Amalaki Ekadashi, and Maha Shivratri, complete with specific muhurats (auspicious timings) for observances and rituals. It's essential for individuals seeking to align their spiritual and cultural practices with traditional timings.

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

Returns all festivals details from Phalguna 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 Timezone List

{
    "success": 1,
    "data": {
        "year": "2023",
        "vijaya_ekadashi": {
            "smartas": {
                "date": "2023-02-16",
                "parana": {
                    "start_time": "2023-02-17 08:01:30",
                    "end_time": "2023-02-17 09:13:13"
                }
            },
            "vaishnavas": {
                "date": "2023-02-17",
                "parana": {
                    "start_time": "2023-02-18 06:57:21",
                    "end_time": "2023-02-18 09:12:21"
                }
            }
        },
        "phulera_dooj": "2023-02-21",
        "amalaki_ekadashi": {
            "smartas": {
                "date": "2023-03-02",
                "parana": {
                    "start_time": "2023-03-03 13:42:14",
                    "end_time": "2023-03-03 16:00:14"
                }
            },
            "vaishnavas": {
                "date": "2023-03-03",
                "parana": {
                    "start_time": "2023-03-04 06:43:41",
                    "end_time": "2023-03-04 09:04:41"
                }
            }
        },
        "maha_shivratri": {
            "date": "2023-02-18",
            "nishita_muhurat": {
                "start_time": "2023-02-19 00:10:09",
                "end_time": "2023-02-19 01:01:09"
            },
            "prahar": {
                "first_prahar": {
                    "start_time": "2023-02-18 18:13:09",
                    "end_time": "2023-02-18 21:24:09"
                },
                "second_prahar": {
                    "start_time": "2023-02-18 21:24:09",
                    "end_time": "2023-02-19 00:35:09"
                },
                "third_prahar": {
                    "start_time": "2023-02-19 00:35:09",
                    "end_time": "2023-02-19 03:46:09"
                },
                "fourth_prahar": {
                    "start_time": "2023-02-19 03:46:09",
                    "end_time": "2023-02-19 06:57:09"
                }
            },
            "parana_time": {
                "start_time": "2023-02-19 06:56:27",
                "end_time": "2023-02-19 09:11:27"
            }
        }
    }
}

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