Rudraksh Suggestion
Discover your personalized spiritual beads with the Rudraksh Suggestion API, designed to recommend the most suitable Rudraksha (mukhi) beads for an individual based on their planetary chart, according to Indian Vedic Astrology. This API helps users identify the Rudraksha to wear for spiritual growth, balancing planetary energies, and overall well-being.
Supported Language Codes
Support Article URL: Translating Indian Vedic APIs into Different Languages
| Code | Language |
|---|---|
| en | English |
| hi | Hindi |
| bn | Bengali |
| ma | Marathi |
| tm | Tamil |
| tl | Telugu |
| ml | Malayalam |
| kn | Kannada |
Guide:
These languages are supported by this API. You can select a language by passing the "lan" parameter in the request body with the appropriate code. The default language is English (en).
API Endpoint
POST https://astroapi-3.divineapi.com/indian-api/v1/rudraksha-suggestion
This endpoint returns rudraksha recommendations based on planetary analysis and personal birth details.
Headers
| Name | Type | Description |
|---|---|---|
| Authorization | String | Your API Access Token. Example: 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 of birth, e.g., 14 |
| min | Integer | Minute of birth, e.g., 40 |
| sec | Integer | Second of birth, 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 (Timezone Reference Guide) |
| lan | String | Language code from the supported list. Default is ‘en’. |
200: OK Rudraksh Suggestion details fetched successfully
{
"success": 1,
"data": {
"life_rudraksha": {
"ruling_planet": "Mercury",
"rudraksha": {
"Primary": "Four Mukhi",
"Secondary": null
},
"mukhi_number": [
4
],
"deity": "Brahma",
"day_to_wear": "Wednesday",
"mantra": "ॐ ह्रीं नमः ॥",
"recommend": "You are recommended to wear the Four Mukhi Rudraksha.",
"detail": "The Four Mukhi Rudraksha represents Mercury. It sharpens intellect, communication, learning and creativity."
},
"lucky_rudraksha": {
"ruling_planet": "Venus",
"rudraksha": {
"Primary": "Six Mukhi",
"Secondary": "Thirteen Mukhi"
},
"mukhi_number": [
6,
13
],
"deity": "Kartikeya",
"day_to_wear": "Friday",
"mantra": "ॐ ह्रीं हुं नमः ॥",
"recommend": "You are recommended to wear the Six Mukhi Rudraksha.",
"detail": "The Six Mukhi (and Thirteen Mukhi) Rudraksha represents Venus. It enhances charm, relationships, luxury and artistic expression."
},
"dasha_rudraksha": {
"ruling_planet": "Saturn",
"rudraksha": {
"Primary": "Seven Mukhi",
"Secondary": "Fourteen Mukhi"
},
"mukhi_number": [
7,
14
],
"deity": "Ananta",
"day_to_wear": "Saturday",
"mantra": "ॐ हुं नमः ॥",
"recommend": "You are recommended to wear the Seven Mukhi Rudraksha.",
"detail": "The Seven Mukhi (and Fourteen Mukhi) Rudraksha represents Saturn. It relieves obstacles, hardship and Saturn-related afflictions and attracts prosperity."
}
}
}Example Code Implementations
Below are example implementations in various programming environments.
cURL
curl --location 'https://astroapi-3.divineapi.com/indian-api/v1/rudraksha-suggestionon' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'full_name="Rahul kumar"' \
--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 'lan="en"'NodeJS
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://astroapi-3.divineapi.com/indian-api/v1/rudraksha-suggestion',
'headers': {
'Authorization': 'Bearer {Your Auth Token}'
},
formData: {
'api_key': '{Your API Key}',
'full_name': 'Rahul kumar',
'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',
'lan': 'en'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
JavaScript jQuery AJAX
var form = new FormData();
form.append("api_key", "{Your API Key}");
form.append("full_name", "Rahul kumar");
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("lan", "en");
var settings = {
"url": "https://astroapi-3.divineapi.com/indian-api/v1/rudraksha-suggestion",
"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
import requests
url = "https://astroapi-3.divineapi.com/indian-api/v1/rudraksha-suggestion"
payload = {'api_key': '{Your API Key}',
'full_name': 'Rahul kumar',
'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',
'lan': 'en'}
headers = {
'Authorization': 'Bearer {Your Auth Token}'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
Summary
The Rudraksh Suggestion API delivers astrologically recommended Rudraksha beads tailored to an individual planetary chart. The response includes three categories of Rudraksha:
Life Rudraksha: Linked to the ruling planet of the ascendant, worn to strengthen the core self and overall life path.
Lucky Rudraksha: Aligned with the planet that brings luck and harmony, worn to attract good fortune.
Dasha Rudraksha: Based on the ruling planet of the running Mahadasha, worn to support the current planetary period.
Each category returns the ruling_planet, the recommended rudraksha (a primary bead and an optional secondary bead), the mukhi_number, the presiding deity, the day_to_wear, the mantra, a recommend line, and a short detail description.