Copy page
Copy page as Markdown for LLMs
The Luck Numerology API provides personalized insights into an individual's luck based on their numerological chart. It identifies lucky dates, days, months, years, colors, and even super-lucky moments to help users align their decisions with favorable timings. The API also highlights unlucky numbers, months, and colors to avoid potential challenges. Ideal for enhancing decision-making in personal and professional life, this API offers a comprehensive guide to leveraging numerology for success and well-being.
Step by Step Luck Numerology API Postman Testing Integration
POST https://astroapi-7.divineapi.com/numerology/v1/luck-numerology
| Name | Type | Description |
|---|---|---|
| Authorization* | String | Your API Access Token. Example: Bearer {token} |
| Name | Type | Description |
|---|---|---|
| api_key* | String | Your DivineAPI Key (available in your dashboard). |
| day* | Integer | Date of birth. Example: 24. |
| month* | Integer | Month of birth. Example: 05. |
| year* | Integer | Year of birth. Example: 2023. |
| fname* | String | First name. Example: Rahul. |
| lname | String | Last name. Example: Kumar. |
| lan | String | Response language. Default: en. Supported: en or hi. |
{
"status": "success",
"code": 200,
"message": "Request was successful",
"data": {
"date_sum": 6,
"lucky_dates": "6,15,24",
"lucky_day": "Friday",
"lucky_months": "April, May, September, October",
"bad_health_months": "February, March, August, September",
"imp_years": "15, 24, 33, 42, 51, 60, 69, 78, 96",
"lucky_year_list": [
{
"from_date": "24 May 2037",
"to_date": "23 May 2038",
"year": "15"
},
{
"from_date": "24 May 2046",
"to_date": "23 May 2047",
"year": " 24"
},
{
"from_date": "24 May 2055",
"to_date": "23 May 2056",
"year": " 33"
},
{
"from_date": "24 May 2064",
"to_date": "23 May 2065",
"year": " 42"
},
{
"from_date": "24 May 2073",
"to_date": "23 May 2074",
"year": " 51"
},
{
"from_date": "24 May 2082",
"to_date": "23 May 2083",
"year": " 60"
},
{
"from_date": "24 May 2091",
"to_date": "23 May 2092",
"year": " 69"
},
{
"from_date": "24 May 2100",
"to_date": "23 May 2101",
"year": " 78"
},
{
"from_date": "24 May 2118",
"to_date": "23 May 2119",
"year": " 96"
}
],
"super_lucky_dates": [
"24 Sep 2055",
"15 Oct 2055",
"24 Apr 2064",
"15 May 2064",
"24 Oct 2064",
"06 Apr 2073",
"15 Sep 2073",
"06 Oct 2073",
"15 Apr 2100",
"06 May 2100",
"24 Sep 2100",
"15 Oct 2100"
],
"lucky_color": [
{
"lucky_color": "Blue",
"color_code": "#0000ff"
},
{
"lucky_color": "Pink",
"color_code": "#ffc0cb"
},
{
"lucky_color": "Green",
"color_code": "#00ff00"
}
],
"lucky_color_result": "Lucky Colors: Blue, Green, and Pink. Must avoid Purple.\n\nYou are friendly in nature. You are idealistic and determined. You do not prefer experimentation and are committed to your goals. You have an assertive approach towards matters. You are compassionate toward your fellow beings. Refrain from wearing purple, as it might force you to a precipice. You do not want that; rather you want to be of help to society and the community.",
"lucky_unlucky": {
"lucky": "3,6,9,2",
"unlucky": "1"
}
}
}Below are example implementations in multiple programming environments.
curl --location 'https://astroapi-7.divineapi.com/numerology/v1/luck-numerology' \
--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"'var request = require('request');
var options = {
'method': 'POST',
'url': 'https://astroapi-7.divineapi.com/numerology/v1/luck-numerology',
'headers': {
'Authorization': 'Bearer {Your Auth Token}'
},
formData: {
'api_key': '{Your API Key}',
'day': '24',
'month': '05',
'year': '2023',
'fname': 'Rahul',
'lname': 'Kumar',
'lan': 'en'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
var form = new FormData();
form.append("api_key", "{Your API Key}");
form.append("day", "24");
form.append("month", "05");
form.append("year", "2023");
form.append("fname", "Rahul");
form.append("lname", "Kumar");
form.append("lan", "en");
var settings = {
"url": "https://astroapi-7.divineapi.com/numerology/v1/luck-numerology",
"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);
});import requests
url = "https://astroapi-7.divineapi.com/numerology/v1/luck-numerology"
payload = {'api_key': '{Your API Key}',
'day': '24',
'month': '05',
'year': '2023',
'fname': 'Rahul',
'lname': 'Kumar',
'lan': 'en'}
headers = {
'Authorization': 'Bearer {Your Auth Token}'
}
response = requests.request("POST", url, headers=headers, data=payload,)
print(response.text)
Authentication:
Ensure that each request includes a valid Bearer token for successful authorization.
Comprehensive Luck Analysis:
This API delivers both positive and negative numerological aspects — including lucky/unlucky dates, colors, and years — helping users make balanced decisions.
Data Personalization:
Modify the lan parameter to fetch results in preferred languages like English (en) or Hindi (hi) for localized insights.
Integration Tip:
Perfect for numerology apps, horoscope portals, and astrology dashboards where personalized prediction or timing suggestions enhance user engagement.