Copy page
Copy page as Markdown for LLMs
The Missing Numbers API analyzes absent numbers in a numerology chart, uncovering personality traits and challenges. It provides personalized insights to help users understand their unique behaviors and areas for growth, enhancing self-awareness and engagement.
Step by Step Missing Number API Postman Testing Integration
POST https://astroapi-7.divineapi.com/numerology/v1/missing-numbers
| 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": [
{
"number": 1,
"result": "You will always need support and guidance in life. You find it difficult to explain your view, opinions, and yourself to others. You go out of your way to help others. You care about them more than what should be considered necessary. You believe everyone's problem is your own. As such, you are always stressed. \n\nYou are quite down to earth. Pride and ego have no place in your life. You should explore your creativity and pursue a career reflecting this. The problem is you can't freely express yourself and your individuality to others. Therefore, your creativity could be an outlet for your feelings and emotions. Express yourself through your creativity. You will be one of those people known for your work. "
},
{
"number": 7,
"result": "Your life will be full of challenges. You are very irregular in life. You are self-centered and absorbed in your own thoughts. You believe you are a victim, oppressed by powerful people. You blame others for every mishap in your life. You think you are innocent and everything that goes wrong is the fault of others. You feel that others do not care about you. You make reckless decisions, without thinking twice. You are always stressed. \n\nWhen it comes to family, your stars hint you might be blessed with daughters. Interestingly, this also depends on your partner’s astrological details, especially if their chart is missing the number 7. It’s a reminder of how connected we are, even through the stars. You do not care about the emotions of others. You are not religious or spiritual. The only way you could improve your life is to take responsibility for your actions. Remove the “victim” image of yourself from your mind and accept your mistakes. "
}
]
}
Below are example implementations in multiple programming environments.
curl --location 'https://astroapi-7.divineapi.com/numerology/v1/missing-numbers' \
--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/missing-numbers',
'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/missing-numbers",
"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/missing-numbers"
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:
Include your valid Bearer token in every request header to authorize API access successfully.
Accurate Input:
Ensure the date of birth and full name are correctly entered for precise missing number analysis.
Insight Depth:
The API identifies missing numbers and provides individual interpretations, helping users understand psychological and behavioral tendencies.