Copy page
Copy page as Markdown for LLMs
Introducing the Numerology Horoscope API (Numeroscope), your gateway to unlocking numerological insights and predictions. This API provides daily numerology-based guidance derived from an individual’s number, helping you deliver personalized experiences on your website, mobile app, or digital service.
Step by Step Numerology Horoscope API Postman Testing Integration
Use the lan field in the request body to specify the output language.
| Code | Language |
|---|---|
| en | English |
| hi | Hindi |
| pt | Portuguese |
| fr | French |
| es | Spanish |
| ru | Russian |
| de | German |
| nl | Dutch |
| it | Italian |
| pl | Polish |
| ar | Arabic |
| ja | Japanese |
| zh | Chinese |
| tm | Tamil |
| tl | Telugu |
| tr | Turkish |
| ta | Filipino/Tagalog |
| bn | Bengali |
| ma | Marathi |
| ml | Malayalam |
| kn | Kannada |
Guide:
For translations, ensure the translator is active via DivineAPI Translator.
POST https://astroapi-5.divineapi.com/api/v2/numerology-horoscope
| Name | Type | Description |
|---|---|---|
| Authorization* | String | Your API Access Token. Example: Bearer {token} |
| Name | Type | Description |
|---|---|---|
| api_key* | String | Your DivineAPI key from the dashboard. |
| number* | Number | A number between 1–9 representing the numerological root. |
| day* | Integer | Day (e.g., 10). Use today, tomorrow, or yesterday if dynamic. |
| month* | Integer | Month (e.g., 10). Use today, tomorrow, or yesterday if dynamic. |
| year* | Integer | Year (e.g., 2024). Use today, tomorrow, or yesterday if dynamic. |
| timezone* | Float | Timezone offset (e.g., 5.5). Refer to the Timezone Guide. |
| lan | String | Language code as per the table above (default: en). |
{
"success": 1,
"data": {
"number": 1,
"prediction": {
"result": "Oct 10, 2024 - The hours coming up will be decisive, notably in your work life where you should benefit from an opportunity for your career. Before getting your professional activity up and rolling, you will have to be a better listener and be more open. So, make some concessions and get rid of the little habits and preconceived ideas that you take with you systematically along your path. With a little more innovative spirit and imagination you should be successful more easily."
}
}
}Below are example implementations in various programming environments.
curl --location 'https://astroapi-5.divineapi.com/api/v2/numerology-horoscope' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'number="01"' \
--form 'day="10"' \
--form 'month="10"' \
--form 'year="2024"' \
--form 'tzone="5.5"' \
--form 'lan="en"'
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://astroapi-5.divineapi.com/api/v2/numerology-horoscope',
'headers': {
'Authorization': 'Bearer {Your Auth Token}'
},
formData: {
'api_key': '{Your API Key}',
'number': '01',
'day': '10',
'month': '10',
'year': '2024',
'tzone': '5.5',
'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("number", "01");
form.append("day", "10");
form.append("month", "10");
form.append("year", "2024");
form.append("tzone", "5.5");
form.append("lan", "en");
var settings = {
"url": "https://astroapi-5.divineapi.com/api/v2/numerology-horoscope",
"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-5.divineapi.com/api/v2/numerology-horoscope"
payload = {'api_key': '{Your API Key}',
'number': '01',
'day': '10',
'month': '10',
'year': '2024',
'tzone': '5.5',
'lan': 'en'}
headers = {
'Authorization': 'Bearer {Your Auth Token}'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)