Two Number Arrow

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.

POST https://astroapi-7.divineapi.com/numerology/v1/two-numbers-arrows

Returns Two Number Arrow in response

Headers

Name
Type
Description

Authorization*

String

your API Access Token

eg: Bearer {token}

Request Body

Name
Type
Description

api_key*

String

your API key

day*

Integer

date of birth, eg: 24

month*

Integer

month of birth, eg: 05

year*

Integer

year of birth, eg: 2023

fname*

String

first name, ex: Rahul

lname

String

last name, ex: kumar

lan

String

Language en/hi, default en

{
    "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. "
        }
    ]
}

Take a look at how you might call this method via cURL, NodeJS or JavaScript jQuery AJAX and Python :

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"'

Last updated