Copy page
Copy page as Markdown for LLMs
The Analyze Mobile Number API evaluates a given mobile number using numerology principles, along with basic identity inputs, to provide structured number-based insights.
POST https://astroapi-7.divineapi.com/numerology/v1/analyze-mobile-numberReturns Analyze Mobile Number details in the response.
| Name | Type | Description |
|---|---|---|
| Authorization* | String | Your API Access Token (Bearer {token}) |
| Key | Type | Example Value | Description |
|---|---|---|---|
| api_key* | Text | {{api_key}} | Your Divine API key |
| fname* | Text | Abhishek | First name |
| lname* | Text | Pandey | Last name |
| day* | Text | 24 | Day value |
| month* | Text | 05 | Month value (MM) |
| year* | Text | 2023 | Year value (YYYY) |
| mobile_number* | Text | 6290346241 | Mobile number to analyze |
{
"success": 1,
"data": {
"profile": {
"name": "ABHISHEK PANDEY",
"dob": "2023-05-24",
"core_numbers": {
"birth_number": 6,
"life_path": 9,
"name_number": 3
},
"goals": [
"general"
]
},
"lo_shu_grid_analysis": {
"title": "Lo Shu Grid Impact as per your name, DOB and Mobile Number",
"before_mobile": {
"title": "Before Adding Mobile Digits (Your DOB Grid)",
"digit_distribution": [
{
"digit": 1,
"count": 0,
"status": "Missing"
},
{
"digit": 2,
"count": 3,
"status": "Balanced"
},
{
"digit": 3,
"count": 2,
"status": "Balanced"
},
{
"digit": 4,
"count": 1,
"status": "Weak"
},
{
"digit": 5,
"count": 1,
"status": "Weak"
},
{
"digit": 6,
"count": 1,
"status": "Weak"
},
{
"digit": 7,
"count": 0,
"status": "Missing"
},
{
"digit": 8,
"count": 0,
"status": "Missing"
},
{
"digit": 9,
"count": 1,
"status": "Weak"
}
],
"issues_identified": {
"missing_digits": [
1,
7,
8
],
"over_strong_digits": [],
"weak_digits": [
4,
5,
6,
9
],
"summary": "Grid analysis shows 3 missing, 4 weak, and 0 over-strong energies."
}
},
"after_mobile": {
"title": "After Adding Your Mobile Digits",
"mobile_number_used": "6290346241",
"final_digit_distribution": [
{
"digit": 1,
"final_count": 1,
"result": "Weak"
},
{
"digit": 2,
"final_count": 5,
"result": "Over"
},
{
"digit": 3,
"final_count": 3,
"result": "Balanced"
},
{
"digit": 4,
"final_count": 3,
"result": "Over"
},
{
"digit": 5,
"final_count": 1,
"result": "Weak"
},
{
"digit": 6,
"final_count": 3,
"result": "Balanced"
},
{
"digit": 7,
"final_count": 0,
"result": "Missing"
},
{
"digit": 8,
"final_count": 0,
"result": "Missing"
},
{
"digit": 9,
"final_count": 2,
"result": "Balanced"
}
],
"issues_identified": {
"missing_digits": [
7,
8
],
"over_strong_digits": [
2
],
"weak_digits": [
1,
5
],
"summary": "Grid analysis shows 2 missing, 2 weak, and 1 over-strong energies."
}
},
"verdict": {
"status": "Neutral",
"summary": "This number shares a 'Neutral' relationship with your profile, offering stable and balanced support without major conflict. However, caution is advised as restricted digit(s) 4 have exceeded safety limits, which may attract karmic pressure."
},
"strengths_weaknesses": {
"strengths": [
"Even though the energy of Number 1 is weak and still finding its full power, its presence provides a vital spark of independence and ambition to start your journey.",
"With Number 3 balanced, your creative and intellectual energies are in a state of flow, providing the wisdom to grow and the social recognition to make your ideas impactful.",
"While the energy of Number 5 is weak, your business intellect is awake, providing the essential communication tools needed to navigate basic networking and sales.",
"As Number 6 is balanced, you are naturally attuned to the vibrations of love and luxury, leading to relationships characterized by comfort, beauty, and emotional fulfillment.",
"With Number 9 balanced, your physical energy and protective instincts are at their peak, giving you the courage to take action without being impulsive."
],
"weaknesses": [
"Since the energy of Number 2 is heavy, you may suffer from extreme mental unrest or over-dependence in partnerships, turning intuition into a source of instability.",
"Due to the heaviness of Number 4, your life may feel prone to sudden, disruptive changes and mounting stress, creating a struggle-based success that feels overwhelming.",
"As Number 7 is missing, you may struggle with inner clarity or detachment. Activating this helps you master hidden knowledge and intuitive healing.",
"Since Number 8 is missing, you may face hurdles in wealth retention and karmic balance. Activating this digit is crucial to overcoming long-term delays and legal burdens."
]
},
"final_evaluation": {
"rating": {
"lo_shu_grid_score": "92/100",
"mobile_number_compatibility": "57/100"
},
"final_description": "This is a supportive and balanced choice for your profile, offering a steady flow of energy that aligns well with your ambitions and daily life."
}
}
}
}Below are example implementations in various programming environments.
curl --location ''\''https://astroapi-7.divineapi.com/numerology/v1/analyze-mobile-number'\''' \
--header 'Authorization: Bearer divine auth token' \
--form 'api_key="Enter your divine api key"' \
--form 'fname="Abhishek"' \
--form 'lname="Pandey"' \
--form 'day="24"' \
--form 'month="05"' \
--form 'year="2023"' \
--form 'mobile_number="6290346241"'var request = require('request');
var options = {
'method': 'POST',
'url': '\'https://astroapi-7.divineapi.com/numerology/v1/analyze-mobile-number\'',
'headers': {
'Authorization': 'Bearer divine auth token'
},
formData: {
'api_key': 'Enter your divine api key',
'fname': 'Abhishek',
'lname': 'Pandey',
'day': '24',
'month': '05',
'year': '2023',
'mobile_number': '6290346241'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
var form = new FormData();
form.append("api_key", "Enter your divine api key");
form.append("fname", "Abhishek");
form.append("lname", "Pandey");
form.append("day", "24");
form.append("month", "05");
form.append("year", "2023");
form.append("mobile_number", "6290346241");
var settings = {
"url": "'https://astroapi-7.divineapi.com/numerology/v1/analyze-mobile-number'",
"method": "POST",
"timeout": 0,
"headers": {
"Authorization": "Bearer divine 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/analyze-mobile-number'"
payload = {'api_key': 'Enter your divine api key',
'fname': 'Abhishek',
'lname': 'Pandey',
'day': '24',
'month': '05',
'year': '2023',
'mobile_number': '6290346241'}
files=[
]
headers = {
'Authorization': 'Bearer divine auth token'
}
response = requests.request("POST", url, headers=headers, data=payload, files=files)
print(response.text)
Use Authorization: Bearer {Your Auth Token} and {Your API Key} securely; never expose them in client-side code.
Check HTTP status codes, log responses, and handle 4xx/5xx errors gracefully.