Driver and Conductor Number

The Driver and Conductor Number API provides valuable numerological insights by analyzing key numbers derived from your birth date. It helps users understand their core motivations (driver number) and how they navigate life’s challenges (conductor number). Ideal for astrology platforms, this API offers personalized career guidance and compatibility insights based on numerology.

POST https://astroapi-7.divineapi.com/numerology/v1/driver-and-conductor-numbers

Returns Driver and Conductor Number 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

{
    "success": 1,
    "data": {
        "birth_day_number": 6,
        "life_path_number": 9,
        "result": "In this combination, the driver number is 6 while the conductor number is 9. This combination is represented by Venus and Mars. It is a  respectable combination. You will be successful in fields related to media and/or law. A business related to steel and iron would also be profitable. Name number 1 is lucky 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/driver-and-conductor-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