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

Hora Muhurta

The hora_muhurta API provides information on the planetary hours for a given day. It returns a list of the hours of the day and night, along with the ruling planet for each hour.
POSThttps://json.astrologyapi.com/v1/hora_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/hora_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

{
  "hora": {
    "day": [
      {
        "time": "17:41 - 18:41",
        "hora": "Mercury"
      },
      {
        "time": "18:41 - 19:41",
        "hora": "Moon"
      },
      {
        "time": "19:41 - 20:41",
        "hora": "Saturn"
      },
      {
        "time": "20:41 - 21:41",
        "hora": "Jupiter"
      },
      {
        "time": "21:41 - 22:41",
        "hora": "Mars"
      },
      {
        "time": "22:41 - 23:41",
        "hora": "Sun"
      },
      {
        "time": "23:41 - 0:41",
        "hora": "Venus"
      },
      {
        "time": "0:41 - 1:41",
        "hora": "Mercury"
      },
      {
        "time": "1:41 - 2:41",
        "hora": "Moon"
      },
      {
        "time": "2:41 - 3:41",
        "hora": "Saturn"
      },
      {
        "time": "3:41 - 4:41",
        "hora": "Jupiter"
      },
      {
        "time": "4:41 - 5:41",
        "hora": "Mars"
      }
    ],
    "night": [
      {
        "time": "5:41 - 6:41",
        "hora": "Sun"
      },
      {
        "time": "6:41 - 7:41",
        "hora": "Venus"
      },
      {
        "time": "7:41 - 8:41",
        "hora": "Mercury"
      },
      {
        "time": "8:41 - 9:41",
        "hora": "Moon"
      },
      {
        "time": "9:41 - 10:41",
        "hora": "Saturn"
      },
      {
        "time": "10:41 - 11:41",
        "hora": "Jupiter"
      },
      {
        "time": "11:41 - 12:41",
        "hora": "Mars"
      },
      {
        "time": "12:41 - 13:41",
        "hora": "Sun"
      },
      {
        "time": "13:41 - 14:41",
        "hora": "Venus"
      },
      {
        "time": "14:41 - 15:41",
        "hora": "Mercury"
      },
      {
        "time": "15:41 - 16:41",
        "hora": "Moon"
      },
      {
        "time": "16:41 - 17:41",
        "hora": "Saturn"
      }
    ]
  }
}