Kundli Report
http
POST /v1/report/kundliGenerates a comprehensive PDF Kundli (birth chart) report including planets, houses, nakshatra, dasha, and basic predictions.
Request body
| Field | Type | Required |
|---|---|---|
profileId | string | Yes |
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.pdfResponse: Content-Type: application/pdf binary download.
Predictions Report
http
POST /v1/report/predictionsGenerates a detailed annual predictions PDF report based on the current Vimshottari dasha.
Request body
| Field | Type | Required |
|---|---|---|
profileId | string | Yes |
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.pdfResponse: Content-Type: application/pdf binary download.
Compatibility Report
http
POST /v1/report/compatibilityGenerates a match-making compatibility report between two profiles. Used for horoscope matching (kundali milan) for marriage purposes.
Request body
| Field | Type | Required | Description |
|---|---|---|---|
brideProfileId | string | Yes | Bride's profile ID |
groomProfileId | string | Yes | Groom'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.pdfResponse: Content-Type: application/pdf binary download.