🌍 Astrocartography API and ✋ Palmistry API are now live. Ship them in your app today.Get Started

Chaughadiya Muhurta

The chaughadiya_muhurta API provides a list of muhurta (auspicious time) categories and their corresponding time intervals for both day and night, based on the Vedic astrology system. The response includes the start and end time for each muhurta category, and the name of the category, such as Labh, Amrit, Kaal, Shubh, Rog, Udveg, and Char.
POSThttps://json.astrologyapi.com/v1/chaughadiya_muhurta

Authentication

x-astrologyapi-keystringrequired

API access token used to authenticate requests. Send your access token in this custom header.

Accept-Languagestring

Preferred language for the response content. Supported: English - en, Hindi - hi, Marathi - ma, Bengali - bn, Tamil - ta, Telugu - te, Malayalam - ml, Kannada - kn.

Body parameters

dayintrequired

Date of birth, eg: 10

monthintrequired

Month of birth, eg: 5

yearintrequired

Year of birth, eg: 1990

hourintrequired

Hour of birth, eg: 19

minintrequired

Minute of birth, eg: 55

latfloatrequired

Latitude, eg: 19.2056

lonfloatrequired

Longitude, eg: 25.2056

tzonefloatrequired

Timezone, eg: 5.5

curl --location 'https://json.astrologyapi.com/v1/chaughadiya_muhurta' \
  --header 'Content-Type: application/json' \
  --header 'x-astrologyapi-key: <YOUR_ACCESS_TOKEN>' \
  --data '{
    "day": 10,
    "month": 5,
    "year": 1990,
    "hour": 19,
    "min": 55,
    "lat": 19.2056,
    "lon": 25.2056,
    "tzone": 5.5
}'
Try it

Runs with sample data — no API key needed

{
  "chaughadiya": {
    "day": [
      {
        "time": "5 : 41 : 01 - 4 : 06 : 50",
        "muhurta": "Labh"
      },
      {
        "time": "4 : 06 : 50 - 2 : 32 : 39",
        "muhurta": "Amrit"
      },
      {
        "time": "2 : 32 : 39 - 12 : 58 : 27",
        "muhurta": "Kaal"
      },
      {
        "time": "12 : 58 : 27 - 11 : 24 : 16",
        "muhurta": "Shubh"
      },
      {
        "time": "11 : 24 : 16 - 09 : 50 : 05",
        "muhurta": "Rog"
      },
      {
        "time": "09 : 50 : 05 - 08 : 15 : 53",
        "muhurta": "Udveg"
      },
      {
        "time": "08 : 15 : 53 - 06 : 41 : 42",
        "muhurta": "Char"
      },
      {
        "time": "06 : 41 : 42 - 05 : 07 : 30",
        "muhurta": "Labh"
      }
    ],
    "night": [
      {
        "time": "05 : 07 : 30 - 06 : 41 : 38",
        "muhurta": "Udveg"
      },
      {
        "time": "06 : 41 : 38 - 08 : 15 : 46",
        "muhurta": "Shubh"
      },
      {
        "time": "08 : 15 : 46 - 09 : 49 : 55",
        "muhurta": "Amrit"
      },
      {
        "time": "09 : 49 : 55 - 11 : 24 : 03",
        "muhurta": "Char"
      },
      {
        "time": "11 : 24 : 03 - 12 : 58 : 11",
        "muhurta": "Rog"
      },
      {
        "time": "12 : 58 : 11 - 2 : 32 : 19",
        "muhurta": "Kaal"
      },
      {
        "time": "2 : 32 : 19 - 4 : 06 : 27",
        "muhurta": "Labh"
      },
      {
        "time": "4 : 06 : 27 - 5 : 40 : 35",
        "muhurta": "Udveg"
      }
    ]
  }
}