Copy page
Copy page as Markdown for LLMs
Illuminate your journey with numerological clarity using our Numerology Report API, generating insightful PDF reports that decode your core numbers, name vibrations, life path, destiny, and personality traits based on numerological principles.
Testing PDF API – Numerology Report Using Postman
POST https://pdf.divineapi.com/numerology/v2/report
Returns Numerology Report PDF in response.
| Name | Type | Description |
|---|---|---|
| Authorization* | String | Your API Access Token. Example: Bearer {token} |
| Name | Type | Description |
|---|---|---|
| api_key* | String | Your API key |
| full_name* | String | Full name of the user, e.g., Rahul Kumar |
| day* | Integer | Birth date of the user, e.g., 24 |
| month* | Integer | Birth month of the user, e.g., 05 |
| year* | Integer | Birth year of the user, e.g., 2023 |
| gender* | String | Gender of the user, e.g., male |
| company_name* | String | Your company name, e.g., Divine API |
| company_url* | String | Your domain full URL, e.g., https://divineapi.com/ |
| company_email* | String | Your company email, e.g., admin@divineapi.com |
| company_mobile* | String | Your company mobile number, e.g., +91 1212 1212 12 |
| company_bio* | String | Company bio (should be under 500 characters) |
| logo_url* | String | Company logo URL (PNG only) |
| footer_text* | String | Footer text (should be under 100 characters) |
| lan | String | Report language (currently supports English only) |
| report_code* | String | Report code, see PDF Report Codes |
{
"success": 1,
"data": {
"name": "Rahul Kumar",
"report_url": "report_url",
"download_url": "download_url"
}
}
Below are examples of how to use this API via different languages.
import requests
url = "https://pdf.divineapi.com/numerology/v2/report"
payload = {'api_key': 'your API Key',
'full_name': 'Rahul Kumar',
'day': '01',
'month': '12',
'year': '1998',
'hour': '21',
'min': '55',
'sec': '30',
'gender': 'male',
'place': 'New Delhi, India',
'lat': '28.7041',
'lon': '77.1025',
'tzone': '5.5',
'lan': 'en',
'company_name': 'Divine API',
'company_url': 'https://divineapi.com/',
'company_email': 'admin@divineapi.com',
'company_mobile': '+91 9557787052',
'company_landline': '+91- 211212 12',
'company_bio': 'Note Should be less then 500 character, ex: "Your Company Bio"',
'logo_url': 'https://divineapi.com/assets/logo.png',
'footer_text': 'Note Should be less then 100 character, ex: "Short note"',
'report_code': 'https://reports.divineapi.com/pdf-codes'}
files=[
]
headers = {
'Authorization': 'Bearer your API Access Token'
}
response = requests.request("POST", url, headers=headers, data=payload, files=files)
print(response.text)
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://pdf.divineapi.com/numerology/v2/report',
'headers': {
'Authorization': 'Bearer your API Access Token'
},
formData: {
'api_key': 'your API Key',
'full_name': 'Rahul Kumar',
'day': '01',
'month': '12',
'year': '1998',
'hour': '21',
'min': '55',
'sec': '30',
'gender': 'male',
'place': 'New Delhi, India',
'lat': '28.7041',
'lon': '77.1025',
'tzone': '5.5',
'lan': 'en',
'company_name': 'Divine API',
'company_url': 'https://divineapi.com/',
'company_email': 'admin@divineapi.com',
'company_mobile': '+91 9557787052',
'company_landline': '+91- 211212 12',
'company_bio': 'Note Should be less then 500 character, ex: "Your Company Bio"',
'logo_url': 'https://divineapi.com/assets/logo.png',
'footer_text': 'Note Should be less then 100 character, ex: "Short note"',
'report_code': 'https://reports.divineapi.com/pdf-codes'
}
};
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("full_name", "Rahul Kumar");
form.append("day", "01");
form.append("month", "12");
form.append("year", "1998");
form.append("hour", "21");
form.append("min", "55");
form.append("sec", "30");
form.append("gender", "male");
form.append("place", "New Delhi, India");
form.append("lat", "28.7041");
form.append("lon", "77.1025");
form.append("tzone", "5.5");
form.append("lan", "en");
form.append("company_name", "Divine API");
form.append("company_url", "https://divineapi.com/");
form.append("company_email", "admin@divineapi.com");
form.append("company_mobile", "+91 9557787052");
form.append("company_landline", "+91- 211212 12");
form.append("company_bio", "Note Should be less then 500 character, ex: \"Your Company Bio\"");
form.append("logo_url", "https://divineapi.com/assets/logo.png");
form.append("footer_text", "Note Should be less then 100 character, ex: \"Short note\"");
form.append("report_code", "https://reports.divineapi.com/pdf-codes");
var settings = {
"url": "https://pdf.divineapi.com/numerology/v2/report",
"method": "POST",
"timeout": 0,
"headers": {
"Authorization": "Bearer your API Access Token"
},
"processData": false,
"mimeType": "multipart/form-data",
"contentType": false,
"data": form
};
$.ajax(settings).done(function (response) {
console.log(response);
});import requests
url = "https://pdf.divineapi.com/numerology/v2/report"
payload = {'api_key': 'your API Key',
'full_name': 'Rahul Kumar',
'day': '01',
'month': '12',
'year': '1998',
'hour': '21',
'min': '55',
'sec': '30',
'gender': 'male',
'place': 'New Delhi, India',
'lat': '28.7041',
'lon': '77.1025',
'tzone': '5.5',
'lan': 'en',
'company_name': 'Divine API',
'company_url': 'https://divineapi.com/',
'company_email': 'admin@divineapi.com',
'company_mobile': '+91 9557787052',
'company_landline': '+91- 211212 12',
'company_bio': 'Note Should be less then 500 character, ex: "Your Company Bio"',
'logo_url': 'https://divineapi.com/assets/logo.png',
'footer_text': 'Note Should be less then 100 character, ex: "Short note"',
'report_code': 'https://reports.divineapi.com/pdf-codes'}
files=[
]
headers = {
'Authorization': 'Bearer your API Access Token'
}
response = requests.request("POST", url, headers=headers, data=payload, files=files)
print(response.text)
The Numerology Report API currently supports English only.
report_code determines the type of report; for example, “CAREER-REPORT”.
Ensure that the logo_url points to a publicly accessible PNG.
Response includes:
report_url – View the generated report online.
download_url – Download the PDF directly.