Luck Numerology
Discover the Luck Numerology API, offering insights into how numbers influence luck and fortune in your life based on Chaldean numerology.
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.
POST https://astroapi-7.divineapi.com/numerology/v1/luck-numerology
Returns Luck Numerology in response
Headers
Authorization*
String
your API Access Token
eg: Bearer {token}
Request Body
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": {
"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"
}
}
}
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/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"'
Last updated