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

Panchang Dinman Hora

The API hora_muhurta_dinman provides information about the Hindu astrological system's Hora Muhurta, which divides a day into 24 hours and assigns a planetary ruler to each hour. The API response includes the time ranges and corresponding planetary rulers for the hours of the day and night.
POSThttps://json.astrologyapi.com/v1/hora_muhurta_dinman

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_dinman' \
  --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": "6:2 : 7:2",
        "hora": "Venus"
      },
      {
        "time": "7:2 : 8:2",
        "hora": "Mercury"
      },
      {
        "time": "8:2 : 9:2",
        "hora": "Moon"
      },
      {
        "time": "9:2 : 10:2",
        "hora": "Saturn"
      },
      {
        "time": "10:2 : 11:2",
        "hora": "Jupiter"
      },
      {
        "time": "11:2 : 12:2",
        "hora": "Mars"
      },
      {
        "time": "12:2 : 13:2",
        "hora": "Sun"
      },
      {
        "time": "13:2 : 14:2",
        "hora": "Venus"
      },
      {
        "time": "14:2 : 15:2",
        "hora": "Mercury"
      },
      {
        "time": "15:2 : 16:2",
        "hora": "Moon"
      },
      {
        "time": "16:2 : 17:2",
        "hora": "Saturn"
      },
      {
        "time": "17:2 : 18:2",
        "hora": "Jupiter"
      }
    ],
    "night": [
      {
        "time": "18:2 : 19:2",
        "hora": "Mars"
      },
      {
        "time": "19:2 : 20:2",
        "hora": "Sun"
      },
      {
        "time": "20:2 : 21:2",
        "hora": "Venus"
      },
      {
        "time": "21:2 : 22:2",
        "hora": "Mercury"
      },
      {
        "time": "22:2 : 23:2",
        "hora": "Moon"
      },
      {
        "time": "23:2 : 0:2",
        "hora": "Saturn"
      },
      {
        "time": "0:2 : 1:2",
        "hora": "Jupiter"
      },
      {
        "time": "1:2 : 2:2",
        "hora": "Mars"
      },
      {
        "time": "2:2 : 3:2",
        "hora": "Sun"
      },
      {
        "time": "3:2 : 4:2",
        "hora": "Venus"
      },
      {
        "time": "4:2 : 5:2",
        "hora": "Mercury"
      },
      {
        "time": "5:2 : 6:2",
        "hora": "Moon"
      }
    ]
  }
}