Find Auspicious Timings

The Find Auspicious Timings API is an integral component of the Panchang API suite, designed to identify and provide details on various auspicious timings, including Brahma Muhurta, Abhijit Muhurta, Godhuli Muhurta, and others. This API is invaluable for those seeking to align their activities with favorable times according to Vedic astrology.

POST https://astroapi-3.divineapi.com/indian-api/v1/auspicious-timings

Returns Auspicious Timings start and end time in response

Headers

NameTypeDescription

Authorization*

String

your API Access Token

eg: Bearer {token}

Request Body

NameTypeDescription

api_key*

String

your API key

day*

Integer

day of panchang, eg: 24

month*

Integer

month of panchang, eg: 05

year*

Integer

year of panchang, 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

lan

String

Language en/hi, default en

{
    "success": 1,
    "data": {
        "date": "2023-05-24",
        "sunrise": "2023-05-24 05:25:56",
        "sunset": "2023-05-24 19:10:28",
        "brahma_muhurta": {
            "start_time": "2023-05-24 04:03:56",
            "end_time": "2023-05-24 04:44:56"
        },
        "abhijit_muhurta": [],
        "godhuli_muhurta": {
            "start_time": "2023-05-24 19:10:28",
            "end_time": "2023-05-24 19:30:58"
        },
        "pratah_sandhya": {
            "start_time": "2023-05-24 04:24:26",
            "end_time": "2023-05-24 05:25:56"
        },
        "sayahana_sandhya": {
            "start_time": "2023-05-24 19:10:28",
            "end_time": "2023-05-24 20:11:58"
        },
        "nishita_muhurta": {
            "start_time": "2023-05-24 23:57:28",
            "end_time": "2023-05-25 00:38:28"
        },
        "vijay_muhurta": {
            "start_time": "2023-05-24 14:35:56",
            "end_time": "2023-05-24 15:30:56"
        },
        "sarvartha_siddhi_yoga": [],
        "amrit_siddhi_yoga": [],
        "siddha_yoga": [],
        "tri_pushkara_yoga": [],
        "ravi_yoga": [
            {
                "start_time": "2023-05-24 15:06:44",
                "end_time": "2023-05-25 05:25:35"
            }
        ],
        "amrit_kalam": {
            "start_time": "2023-05-24 12:27:02",
            "end_time": "2023-05-24 14:12:50"
        }
    }
}

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/auspicious-timings' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'day="24"' \
--form 'month="05"' \
--form 'year="2023"' \
--form 'Place="New Delhi"' \
--form 'lat="28.6139"' \
--form 'lon="77.2090"' \
--form 'tzone="5.5"' \
--form 'lan="en"'

Last updated