Skip to content

Kundli Report

http
POST /v1/report/kundli

Generates a comprehensive PDF Kundli (birth chart) report including planets, houses, nakshatra, dasha, and basic predictions.

Request body

FieldTypeRequired
profileIdstringYes

Example

bash
curl -X POST https://api.askvedicguru.com/api/v1/report/kundli \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{ "profileId": "683abc123def456" }' \
  -o kundli-report.pdf

Response: Content-Type: application/pdf binary download.


Predictions Report

http
POST /v1/report/predictions

Generates a detailed annual predictions PDF report based on the current Vimshottari dasha.

Request body

FieldTypeRequired
profileIdstringYes

Example

bash
curl -X POST https://api.askvedicguru.com/api/v1/report/predictions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{ "profileId": "683abc123def456" }' \
  -o predictions-report.pdf

Response: Content-Type: application/pdf binary download.


Compatibility Report

http
POST /v1/report/compatibility

Generates a match-making compatibility report between two profiles. Used for horoscope matching (kundali milan) for marriage purposes.

Request body

FieldTypeRequiredDescription
brideProfileIdstringYesBride's profile ID
groomProfileIdstringYesGroom's profile ID

Example

bash
curl -X POST https://api.askvedicguru.com/api/v1/report/compatibility \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{
    "brideProfileId": "683abc123def456",
    "groomProfileId": "683abc789abc012"
  }' \
  -o compatibility-report.pdf

Response: Content-Type: application/pdf binary download.