API Documentation
Premium Kundli Report
A comprehensive 150-page Kundli report with detailed birth charts, planetary analysis, Dasha, Yoga, and personalized insights into key life areas such as career, marriage, finance, health, and relationships. Designed for delivering an in-depth astrology experience to your users.
POST
https://pdf.astrologyapi.com/v1/premium_kundli_reportParameters
| Parameter | Type | Description |
|---|---|---|
| namerequired | string | Name of the user. |
| genderrequired | string | Gender of the user. |
| dayrequired | number | Birth day (1-31). |
| monthrequired | number | Birth month (1-12). |
| yearrequired | number | Birth year. |
| hourrequired | number | Birth hour (0-23). |
| minrequired | number | Birth minute (0-59). |
| latituderequired | number | Latitude of birth location. |
| longituderequired | number | Longitude of birth location. |
| languagerequired | string | PDF language. |
| timezonerequired | number | Timezone offset from UTC in hours. |
| placerequired | string | Birth place. |
| chart_stylerequired | string | Chart style. |
| footer_linkrequired | string | Footer/domain link. |
| logo_urlrequired | string | Company logo URL. |
| company_namerequired | string | Company name. |
| company_inforequired | string | Company information. Should be less than 500 characters. |
| domain_urlrequired | string | Full company domain URL. |
| company_emailrequired | string | Company email. |
| company_landlinerequired | string | Company landline number. |
| company_mobilerequired | string | Company mobile number. |
Sample PDFs
Premium Kundli PDF Samples
Following are the PDF report samples you can download. These generated PDFs are using AstrologyAPI branding and everything can be customised to suit your company branding and style.
Supported Languages
enhi
Request
{
"name": "Manishaa Pandya",
"gender": "female",
"day": 3,
"month": 12,
"year": 1977,
"hour": 0,
"min": 35,
"latitude": 22.3,
"longitude": 73.206,
"language": "en",
"timezone": 5.5,
"place": "Mumbai,Maharashtra India",
"chart_style": "NORTH_INDIAN",
"footer_link": "https://www.astrologyapi.com",
"logo_url": "LOGO_URL",
"company_name": "company name",
"company_info": "company info",
"domain_url": "https://www.astrologyapi.com",
"company_email": "[email protected]",
"company_landline": "123456789",
"company_mobile": "123456789"
}Code samples
curl --location 'https://pdf.astrologyapi.com/v1/premium_kundli_report' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Basic <YOUR_API_KEY>' \
--data 'name=Manishaa%20Pandya&gender=female&day=3&month=12&year=1977&hour=0&min=35&latitude=22.3&longitude=73.206&language=en&timezone=5.5&place=Mumbai%2CMaharashtra%20India&chart_style=NORTH_INDIAN&footer_link=https%3A%2F%2Fwww.astrologyapi.com&logo_url=LOGO_URL&company_name=company%20name&company_info=company%20info&domain_url=https%3A%2F%2Fwww.astrologyapi.com&company_email=mail%40astrologyapi.com&company_landline=123456789&company_mobile=123456789'
Response
{
"status": 200,
"success": true,
"message": "PDF created successfully",
"response": {
"pdf_url": "https://pdfapilambda.s3.ap-south-1.amazonaws.com/d7889b94-7a1c-4893-8f16-398be310954e.pdf"
}
}