Gemstone Suggestion

The Gemstone Suggestion API provides personalized gemstone recommendations based on astrological or numerological insights. It suggests suitable gemstones, the best finger and day for wearing, and the ideal metal setting, helping users enhance their well-being and align with positive energies. Perfect for astrology platforms and gemstone retailers.

POST https://astroapi-7.divineapi.com/numerology/v1/gemstones

Returns Gemstone Suggestion in response

Headers

Name
Type
Description

Authorization*

String

your API Access Token

eg: Bearer {token}

Request Body

Name
Type
Description

api_key*

String

your API key

day*

Integer

date of birth, eg: 24

month*

Integer

month of birth, eg: 05

year*

Integer

year of birth, eg: 2023

fname*

String

first name, ex: Rahul

lname

String

last name, ex: kumar

lan

String

Language en/hi, default en

{
    "status": "success",
    "code": 200,
    "message": "Request was successful",
    "data": {
        "gem_recommendation_one": {
            "name": "Emerald (Panna)",
            "icon": "https://astroapi-7.divineapi.com/public/gemstone/Emerald.png"
        },
        "gem_recommendation_one_finger": {
            "name": "Little",
            "icon": "https://astroapi-7.divineapi.com/public/gemstone/Little.png"
        },
        "gem_recommendation_one_best_day_wearing": {
            "name": "Wednesday",
            "icon": "https://astroapi-7.divineapi.com/public/gemstone/Wednesday.png"
        },
        "gem_recommendation_one_metal_suggesion": {
            "name": "Gold",
            "icon": "https://astroapi-7.divineapi.com/public/gemstone/Gold.png"
        },
        "gem_recommendation_two": {
            "name": "Emerald (Panna)",
            "icon": "https://astroapi-7.divineapi.com/public/gemstone/emerald.png"
        },
        "gem_recommendation_two_finger": {
            "name": "Little",
            "icon": "https://astroapi-7.divineapi.com/public/gemstone/Little.png"
        },
        "gem_recommendation_two_best_day_wearing": {
            "name": "Wednesday",
            "icon": "https://astroapi-7.divineapi.com/public/gemstone/Wednesday.png"
        },
        "gem_recommendation_two_metal_suggesion": {
            "name": "Gold",
            "icon": "https://astroapi-7.divineapi.com/public/gemstone/Gold.png"
        }
    }
}

Take a look at how you might call this method via cURL, NodeJS or JavaScript jQuery AJAX and Python :

curl --location 'https://astroapi-7.divineapi.com/numerology/v1/gemstones' \
--header 'Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'day="24"' \
--form 'month="05"' \
--form 'year="2023"' \
--form 'fname="Rahul"' \
--form 'lname="Kumar"' \
--form 'lan="en"'

Last updated