Gemstone Suggestions
Discover your personalized cosmic adornments with the Gemstone Suggestions API, designed to provide astrologically aligned gemstone recommendations that harmonize planetary energies according to Indian Vedic Astrology. This API helps users identify suitable gemstones for enhancing luck, balancing energies, and promoting well-being.
Step-by-Step Gemstone Suggestions API Postman Testing Integration
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/v2/gemstone-suggestion
This endpoint returns gemstone 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 Gemstone Suggestions details fetched successfully
{
"success": 1,
"data": {
"lucky_stone": {
"gemstones": {
"Primary": "Diamond, Blue Sapphire",
"Secondary": "White Sapphire, Phenakite, White Topaz"
},
"day_to_wear": "शुक्रवार",
"finger_to_wear": "Ring Finger",
"time_to_wear": "Sunrise",
"mantra": "ॐ द्रां द्रीं द्रौं सः शुक्राय नमः ॥"
},
"life_stone": {
"gemstones": {
"Primary": "Emerald",
"Secondary": "Green Tourmaline, Peridot"
},
"day_to_wear": "बुधवार",
"finger_to_wear": "Little Finger",
"time_to_wear": "Sunrise",
"mantra": "ॐ ब्रां ब्रीं ब्रौं सः बुधाय नमः ॥"
},
"dasha_stone": []
}
}
Example Code Implementations
Below are example implementations in various programming environments.
cURL
curl --location 'https://astroapi-3.divineapi.com/indian-api/v2/gemstone-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/v2/gemstone-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/v2/gemstone-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/v2/gemstone-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 Gemstone Suggestions API delivers astrologically recommended gemstones tailored to an individual’s planetary chart. The response includes details for three categories of gemstones:
Lucky Stone: Represents gemstones for luck and overall harmony.
Life Stone: Linked to the ruling planet or ascendant, strengthening one’s core energy.
Dasha Stone: Recommended gemstones based on the current planetary period (if applicable).
Each recommendation includes information such as the day to wear, appropriate finger, ideal time for wearing, and associated mantra for activation.