Match Making PDF
Generate Match Making PDF reports with Divine API. Get detailed astrological compatibility analysis for your potential matches based on birth charts.
Seal the bonds of harmony with our 'Match Making PDF' API, crafting detailed and informative astrological compatibility reports in PDF format within the context of Indian Astrology's Kundali Matching.
POST https://pdf.divineapi.com/indian-api/v1/match-making
Returns Match Making PDF in response
Headers
Authorization*
String
your API Access Token
eg: Bearer {token}
Request Body
api_key*
String
your API key
p1_full_name*
String
P1's Full Name, ex: Rahul Kumar
p1_day*
Integer
P1's date of birth, eg: 24
p1_month*
Integer
P1's month of birth, eg: 05
p1_year*
Integer
P1's year of birth, eg: 1998
p1_hour*
Integer
P1's hour, eg: 14
p1_min *
Integer
P1's minute, eg: 40
p1_sec*
Integer
P1's second, eg 43
p1_gender*
String
P1's gender, ex: male
p1_place*
String
P1's birth place, ex: New Delhi
p1_lat*
Float
P1's latitude, eg: 28.7041
p1_lon*
Float
P1's longitude, eg: 77.1025
p2_full_name*
String
P2's Full Name, ex: Simran Kumari
p2_day*
Integer
P2's date of birth, eg: 24
p2_month*
Integer
P2's month of birth, eg: 05
p2_year*
Integer
P2's year of birth, eg: 1998
p2_hour*
Integer
P2's hour, eg: 14
p2_min*
Integer
P2's minute, eg: 40
p2_sec*
Integer
P2's second, eg 43
p2_gender*
String
P2's gender, ex: female
p2_place*
String
P2's birth place, ex: New Delhi
p2_lat*
Float
P2's latitude, eg: 28.7041
p2_lon*
Float
P2's longitude, eg: 77.1025
lan
String
Pdf Language en/hi, default en
company_name*
String
Your company name, ex: Divine API
company_mobile*
String
Your company mobile number, eg: "+91 1212 1212 12"
company_bio*
String
Note Should be less then 500 character, ex: "Your Company Bio"
logo_url*
String
Your company logo url (png only), eg: "logo_url"
footer_text*
String
Note Should be less then 100 character, ex: "Your Company Bio"
{
"success": 1,
"data": {
"name": "Rahul Kumar",
"report_url": "report_url"
}
}
Take a look at how you might call this method via cURL, NodeJS or JavaScript jQuery AJAX and Python :
curl --location 'https://pdf.divineapi.com/indian-api/v1/match-making' \
--header 'Authorization: Bearer {Your Auth Token}' \
--form 'api_key="{Your API Key}"' \
--form 'p1_full_name="Rahul Kumar"' \
--form 'p1_day="24"' \
--form 'p1_month="05"' \
--form 'p1_year="1998"' \
--form 'p1_hour="14"' \
--form 'p1_min="40"' \
--form 'p1_sec="43"' \
--form 'p1_gender="male"' \
--form 'p1_place="New Delhi"' \
--form 'p1_lat="28.7041"' \
--form 'p1_lon="77.1025"' \
--form 'p1_tzone="5.5"' \
--form 'p2_full_name="Simran Kumari"' \
--form 'p2_day="24"' \
--form 'p2_month="05"' \
--form 'p2_year="1998"' \
--form 'p2_hour="14"' \
--form 'p2_min="40"' \
--form 'p2_sec="43"' \
--form 'p2_gender="female"' \
--form 'p2_place="New Delhi"' \
--form 'p2_lat="28.7041"' \
--form 'p2_lon="77.1025"' \
--form 'p2_tzone="5.5"' \
--form 'lan="en"' \
--form 'company_name="Divine API"' \
--form 'company_url="https://divineapi.com/"' \
--form 'company_email="[email protected]"' \
--form 'company_mobile="+91 9557787052"' \
--form 'company_bio="Discover the best Horoscope API and Tarot API services at Divineapi.com. They offer Daily Horoscope API for all twelve zodiac signs, along with Indian astrology services like Panchang, Kundali, and Kundali Matching. Check out their website for more information and enjoy accurate and engaging astrology insights for your audience!"' \
--form 'logo_url="https://divineapi.com/assets/logo.png"' \
--form 'footer_text="Divine API"'
Last updated