Copy page
Copy page as Markdown for LLMs
The Two Number Arrows API uncovers unique insights derived from specific pairings of numbers in a numerological grid. By analyzing the interaction between two numbers, the API reveals personality tendencies, life challenges, and pathways to success. This tool is perfect for exploring how number combinations influence behaviors and outcomes, offering guidance for personal and professional growth.
Step by Step Two Number Arrow API Postman Testing Integration
POST https://astroapi-7.divineapi.com/numerology/v1/two-numbers-arrows
| 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_one": 3,
"number_two": 9,
"result": "You have a habit of arguing a lot without much reason. Because of this, you will get into a lot of unnecessary fights. If the situation gets out of hand, you will land in police custody. You will be stuck in litigation and court proceedings. So, you should always stay away from such fights. If you do not, you will lose. You could also suffer financial loss. "
},
{
"number_one": 5,
"number_two": 6,
"result": "It is an important combination for success in life. The number five represents balance while the number six represents luxury. You should work tirelessly to achieve your goals. With hard work and determination, you will succeed certainly only in a matter of time. If you face any difficulties in your journey, you should check your driver and conductor number. Also, check its compatibility with your name number. If these numbers are not compatible, you will face obstacles in life. Name number 5 will be very good for you. "
}
]
}Below are example implementations in multiple programming environments.
curl --location 'https://astroapi-7.divineapi.com/numerology/v1/two-numbers-arrows' \
--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/two-numbers-arrows',
'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/two-numbers-arrows",
"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/two-numbers-arrows"
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)