🌍 Astrocartography API, 🔷 Human Design API and ✋ Palmistry API are now live. Ship them in your app today.

Sub Char Dasha

The sub_chardasha/:md API provides information about sub-periods within a major period of Vedic astrology. The API response includes details about the major period, such as the name, duration, start and end dates, and a list of sub-periods with their respective start and end dates.
POSThttps://json.astrologyapi.com/v1/sub_chardasha/:md

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.

Path parameters

mdstringrequired

Major Dasha, eg: aries,taurus

  • aries
  • taurus
  • gemini
  • cancer
  • leo
  • virgo
  • libra
  • scorpio
  • sagittarius
  • capricorn
  • aquarius
  • pisces

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/sub_chardasha/aries' \
  --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

{
  "major_dasha": {
    "sign_id": 0,
    "sign_name": "Aries",
    "duration": "3 Years",
    "start_date": "16-8-2027",
    "end_date": "16-8-2030"
  },
  "sub_dasha": [
    {
      "sign_id": 1,
      "sign_name": "Taurus",
      "start_date": "16-8-2027",
      "end_date": "16-11-2027",
      "start_ms": 1818388800000,
      "end_ms": 1826341200000
    },
    {
      "sign_id": 2,
      "sign_name": "Gemini",
      "start_date": "16-11-2027",
      "end_date": "16-2-2028",
      "start_ms": 1826341200000,
      "end_ms": 1834290000000
    },
    {
      "sign_id": 3,
      "sign_name": "Cancer",
      "start_date": "16-2-2028",
      "end_date": "16-5-2028",
      "start_ms": 1834290000000,
      "end_ms": 1842062400000
    },
    {
      "sign_id": 4,
      "sign_name": "Leo",
      "start_date": "16-5-2028",
      "end_date": "16-8-2028",
      "start_ms": 1842062400000,
      "end_ms": 1850011200000
    },
    {
      "sign_id": 5,
      "sign_name": "Virgo",
      "start_date": "16-8-2028",
      "end_date": "16-11-2028",
      "start_ms": 1850011200000,
      "end_ms": 1857963600000
    },
    {
      "sign_id": 6,
      "sign_name": "Libra",
      "start_date": "16-11-2028",
      "end_date": "16-2-2029",
      "start_ms": 1857963600000,
      "end_ms": 1865912400000
    },
    {
      "sign_id": 7,
      "sign_name": "Scorpio",
      "start_date": "16-2-2029",
      "end_date": "16-5-2029",
      "start_ms": 1865912400000,
      "end_ms": 1873598400000
    },
    {
      "sign_id": 8,
      "sign_name": "Sagittarius",
      "start_date": "16-5-2029",
      "end_date": "16-8-2029",
      "start_ms": 1873598400000,
      "end_ms": 1881547200000
    },
    {
      "sign_id": 9,
      "sign_name": "Capricorn",
      "start_date": "16-8-2029",
      "end_date": "16-11-2029",
      "start_ms": 1881547200000,
      "end_ms": 1889499600000
    },
    {
      "sign_id": 10,
      "sign_name": "Aquarius",
      "start_date": "16-11-2029",
      "end_date": "16-2-2030",
      "start_ms": 1889499600000,
      "end_ms": 1897448400000
    },
    {
      "sign_id": 11,
      "sign_name": "Pisces",
      "start_date": "16-2-2030",
      "end_date": "16-5-2030",
      "start_ms": 1897448400000,
      "end_ms": 1905134400000
    },
    {
      "sign_id": 0,
      "sign_name": "Aries",
      "start_date": "16-5-2030",
      "end_date": "16-8-2030",
      "start_ms": 1905134400000,
      "end_ms": 1913083200000
    }
  ]
}