🌍 Astrocartography API, πŸ”· Human Design API and βœ‹ Palmistry API are now live. Ship them in your app today.

Varshaphal Harsha Bala

The API varshaphal_harsha_bala calculates the different types of strengths or "bala" of a person's natal chart for a particular year. The response includes the stana bala, ucchaswachetri bala, gender bala, dinratri bala, and total bala for each of the seven planets considered in Vedic astrology.
POSThttps://json.astrologyapi.com/v1/varshaphal_harsha_bala

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

varshaphal_yearintrequired

Varshphal year, eg: 1990

curl --location 'https://json.astrologyapi.com/v1/varshaphal_harsha_bala' \
  --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,
    "varshaphal_year": 1990
}'
Try it

Runs with sample data β€” no API key needed

{
  "stana_bala": [
    0,
    0,
    0,
    0,
    0,
    0,
    0
  ],
  "ucchaswachetri_bala": [
    0,
    0,
    0,
    0,
    0,
    5,
    0
  ],
  "gender_bala": [
    5,
    5,
    5,
    5,
    5,
    0,
    5
  ],
  "dinratri_bala": [
    5,
    0,
    5,
    0,
    5,
    0,
    0
  ],
  "total_bala": [
    10,
    5,
    10,
    5,
    10,
    5,
    5
  ]
}