Varshphal Planetary Strengths API
The Varshphal Planetary Strengths API is part of the Varshphal (annual horoscope) suite and returns the planetary strengths of the annual chart, such as Harsha Bala, Pancha Vargeeya Bala and Dwadasha Vargeeya Bala, for the chosen year. Provide the birth details along with the varshphal_year.
API Endpoint
POST https://astroapi-3.divineapi.com/indian-api/v1/varshphal/planetary-strengths
Returns the planetary strengths of the annual chart in the response.
Supported Language Codes
You can localize the API response by passing the lan parameter in the request body.
| Code | Language |
|---|---|
| en | English |
| hi | Hindi |
| bn | Bengali |
| ma | Marathi |
| tm | Tamil |
| tl | Telugu |
| ml | Malayalam |
| kn | Kannada |
Support Article: Translating Vedic APIs into Different Languages
Headers
| Name | Type | Description |
|---|---|---|
| Authorization * | String | Your API Access Token, e.g. Bearer {token} |
Request Body
| Name | Type | Description |
|---|---|---|
| api_key * | String | Your API key |
| full_name * | String | Full name, e.g. Rahul Kumar |
| day * | Integer | Date of birth, e.g. 24 |
| month * | Integer | Month of birth, e.g. 05 |
| year * | Integer | Year of birth, e.g. 2023 |
| hour * | Integer | Hour (24-hour format), e.g. 14 |
| min * | Integer | Minute, e.g. 40 |
| sec * | Integer | Second, e.g. 43 |
| gender * | String | Gender, e.g. male |
| place * | String | Place of birth, e.g. New Delhi |
| lat * | Float | Latitude, e.g. 28.7041 |
| lon * | Float | Longitude, e.g. 77.1025 |
| tzone * | Float | Timezone, e.g. 5.5 — See Timezone List |
| varshphal_year * | Integer | The year for which the annual (Varshphal) horoscope is calculated, e.g. 2024 |
| lan | String | Language code as per the table above; default is en |
200: OK Planetary Strengths Fetched Successfully
{
"success": 1,
"data": {
"harsha_bala": {
"sthana_bala": {
"Sun": 0,
"Moon": 0,
"Mars": 0,
"Mercury": 0,
"Jupiter": 0,
"Venus": 0,
"Saturn": 0
},
"uchcha_swakshetri_bala": {
"Sun": 0,
"Moon": 0,
"Mars": 0,
"Mercury": 0,
"Jupiter": 0,
"Venus": 5,
"Saturn": 5
},
"stri_purusha_bala": {
"Sun": 5,
"Moon": 0,
"Mars": 5,
"Mercury": 0,
"Jupiter": 5,
"Venus": 0,
"Saturn": 5
},
"dina_ratri_bala": {
"Sun": 0,
"Moon": 5,
"Mars": 0,
"Mercury": 5,
"Jupiter": 0,
"Venus": 5,
"Saturn": 5
},
"total": {
"Sun": 5,
"Moon": 5,
"Mars": 5,
"Mercury": 5,
"Jupiter": 5,
"Venus": 10,
"Saturn": 15
},
"bala": {
"Sun": "Alpabali",
"Moon": "Alpabali",
"Mars": "Alpabali",
"Mercury": "Alpabali",
"Jupiter": "Alpabali",
"Venus": "Madhya Bali",
"Saturn": "Poorna Bali"
}
},
"pancha_vargiya_bala": {
"griha_bala": {
"Sun": 7.5,
"Moon": 22.5,
"Mars": 22.5,
"Mercury": 15,
"Jupiter": 7.5,
"Venus": 30,
"Saturn": 30
},
"uchcha_bala": {
"Sun": 16.8,
"Moon": 0.73,
"Mars": 13.85,
"Mercury": 3.55,
"Jupiter": 13.36,
"Venus": 15.72,
"Saturn": 6.21
},
"hudda_bala": {
"Sun": 7.5,
"Moon": 3.75,
"Mars": 15,
"Mercury": 15,
"Jupiter": 3.75,
"Venus": 15,
"Saturn": 7.5
},
"drekkana_bala": {
"Sun": 5,
"Moon": 7.5,
"Mars": 10,
"Mercury": 5,
"Jupiter": 5,
"Venus": 5,
"Saturn": 2.5
},
"navamsha_bala": {
"Sun": 1.25,
"Moon": 2.5,
"Mars": 2.5,
"Mercury": 5,
"Jupiter": 1.25,
"Venus": 1.25,
"Saturn": 1.25
},
"total": {
"Sun": 38.05,
"Moon": 36.98,
"Mars": 63.85,
"Mercury": 43.55,
"Jupiter": 30.86,
"Venus": 66.97,
"Saturn": 47.46
},
"vishwa_bala": {
"Sun": 9.51,
"Moon": 9.25,
"Mars": 15.96,
"Mercury": 10.89,
"Jupiter": 7.72,
"Venus": 16.74,
"Saturn": 11.87
},
"bala": {
"Sun": "Madhya Bali",
"Moon": "Madhya Bali",
"Mars": "Parakrami",
"Mercury": "Poorna Bali",
"Jupiter": "Madhya Bali",
"Venus": "Parakrami",
"Saturn": "Poorna Bali"
}
}
}
}Code Integration Examples
Below are examples for using this API in different programming environments.
cURL Example
curl --location 'https://astroapi-3.divineapi.com/indian-api/v1/varshphal/planetary-strengths' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'full_name="Test"' \
--form 'day="24"' \
--form 'month="05"' \
--form 'year="2023"' \
--form 'hour="14"' \
--form 'min="40"' \
--form 'sec="43"' \
--form 'gender="male"' \
--form 'place="New Delhi"' \
--form 'lat="28.7041"' \
--form 'lon="77.1025"' \
--form 'tzone="5.5"' \
--form 'varshphal_year="2024"' \
--form 'lan="en"' \
NodeJS Example
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://astroapi-3.divineapi.com/indian-api/v1/varshphal/planetary-strengths',
'headers': {
'Authorization': 'Bearer {Your Auth Token}'
},
formData: {
'api_key': '{Your API Key}',
'full_name': 'Test',
'day': '24',
'month': '05',
'year': '2023',
'hour': '14',
'min': '40',
'sec': '43',
'gender': 'male',
'place': 'New Delhi',
'lat': '28.7041',
'lon': '77.1025',
'tzone': '5.5',
'varshphal_year': '2024',
'lan': 'en'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
JavaScript (jQuery AJAX) Example
var form = new FormData();
form.append("api_key", "{Your API Key}");
form.append("full_name", "Test");
form.append("day", "24");
form.append("month", "05");
form.append("year", "2023");
form.append("hour", "14");
form.append("min", "40");
form.append("sec", "43");
form.append("gender", "male");
form.append("place", "New Delhi");
form.append("lat", "28.7041");
form.append("lon", "77.1025");
form.append("tzone", "5.5");
form.append("varshphal_year", "2024");
form.append("lan", "en");
var settings = {
"url": "https://astroapi-3.divineapi.com/indian-api/v1/varshphal/planetary-strengths",
"method": "POST",
"timeout": 0,
"headers": {
"Authorization": "Bearer {Your Auth Token}"
},
"processData": false,
"mimeType": "multipart/form-data",
"contentType": false,
"data": form
};
$.ajax(settings).done(function (response) {
console.log(response);
});Python Example
import requests
url = "https://astroapi-3.divineapi.com/indian-api/v1/varshphal/planetary-strengths"
payload = {'api_key': '{Your API Key}',
'full_name': 'Test',
'day': '24',
'month': '05',
'year': '2023',
'hour': '14',
'min': '40',
'sec': '43',
'gender': 'male',
'place': 'New Delhi',
'lat': '28.7041',
'lon': '77.1025',
'tzone': '5.5',
'varshphal_year': '2024',
'lan': 'en'}
headers = {
'Authorization': 'Bearer {Your Auth Token}'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
This API serves as a foundation for further astrological computations, including Kundli generation, planetary charts, yogas, and personalized reports. It provides all key birth-time astrological parameters such as tithi, nakshatra, rashi, yoga, karana, varna, gana, and planetary influences, essential for deeper Vedic analysis.