Missing Numbers

The Missing Numbers API analyzes absent numbers in a numerology chart, uncovering personality traits and challenges. It provides personalized insights to help users understand their unique behaviors and areas for growth, enhancing self-awareness and engagement.

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

Returns Missing Numbers 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": 1,
            "result": "You will always need support and guidance in life. You find it difficult to explain your view, opinions, and yourself to others. You go out of your way to help others. You care about them more than what should be considered necessary. You believe everyone's problem is your own. As such, you are always stressed. \n\nYou are quite down to earth. Pride and ego have no place in your life. You should explore your creativity and pursue a career reflecting this. The problem is you can't freely express yourself and your individuality to others. Therefore, your creativity could be an outlet for your feelings and emotions. Express yourself through your creativity. You will be one of those people known for your work. "
        },
        {
            "number": 7,
            "result": "Your life will be full of challenges. You are very irregular in life. You are self-centered and absorbed in your own thoughts. You believe you are a victim, oppressed by powerful people. You blame others for every mishap in your life. You think you are innocent and everything that goes wrong is the fault of others. You feel that others do not care about you. You make reckless decisions, without thinking twice. You are always stressed. \n\nWhen it comes to family, your stars hint you might be blessed with daughters. Interestingly, this also depends on your partner’s astrological details, especially if their chart is missing the number 7. It’s a reminder of how connected we are, even through the stars. You do not care about the emotions of others. You are not religious or spiritual. The only way you could improve your life is to take responsibility for your actions. Remove the “victim” image of yourself from your mind and accept your mistakes. "
        }
    ]
}

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/missing-numbers' \
--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