Driver and Conductor Number
The Driver and Conductor Number API provide 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.
Step by Step Driver and Conductor Number API Postman Testing Integration
Step by Step Driver and Conductor Number API Postman Testing Integration
API Endpoint
POST https://astroapi-7.divineapi.com/numerology/v1/driver-and-conductor-numbers
Headers
| Name | Type | Description |
|---|---|---|
| Authorization* | String | Your API Access Token. Example: Bearer {token} |
Request Body
| 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. |
200: OK Numbers Fetched Successfully
{
"success": 1,
"data": {
"driver_number": 6,
"conductor_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."
}
}
Example Code Implementations
Below are example implementations in multiple programming environments.
cURL
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"'NodeJS
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://astroapi-7.divineapi.com/numerology/v1/driver-and-conductor-numbers',
'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);
});
JavaScript jQuery AJAX
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/driver-and-conductor-numbers",
"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);
});Python
import requests
url = "https://astroapi-7.divineapi.com/numerology/v1/driver-and-conductor-numbers"
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)