Copy page
Copy page as Markdown for LLMs
The Zodiac Planet Number API provides key astrological insights, including zodiac compatibility, ruling planets, and numerology details such as life path, name, and soul urge numbers. Perfect for astrology platforms and apps, this API helps users explore their strengths, challenges, and cosmic connections effortlessly.
Step by Step Zodiac Planet Number API Postman Testing Integration
POST https://astroapi-7.divineapi.com/numerology/v1/zodiac-planet-number
| 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. |
{
"success": 1,
"data": {
"zodiac_sign": "Gemini",
"friend_zodiac": "Libra, Aquarius",
"enemy_zodiac": "Virgo, Pisces",
"master_planet": "Mercury",
"master_number": 5,
"name_number": 8,
"birth_day_number": 6,
"life_path_number": 7,
"soul_urge_number": 7
}
}Below are example implementations for multiple programming environments.
curl --location 'https://astroapi-7.divineapi.com/numerology/v1/zodiac-planet-number' \
--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/zodiac-planet-number',
'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/zodiac-planet-number",
"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/zodiac-planet-number"
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:
Every request requires a valid Bearer token. Ensure your API key and token are correctly configured before making a call.
Accurate Data Input:
The accuracy of zodiac and numerology results depends on correct date of birth and full name inputs.
Language Customization:
Use the lan parameter to fetch responses in English (en) or Hindi (hi), allowing better localization of astrology results.
Integration Tip:
Integrate this API into dashboards, horoscope tools, or numerology apps to provide users with interactive insights into their zodiac compatibility and planetary influences.