Credit Report Equifax PDF Request
BusinessHow to call Credit Report Equifax PDF — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/credit-report/pdf
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| name | string | Required | Full name of the individual. |
| number | string | Required | 12-digit Aadhaar number or 10-character PAN (based on fetch_by). |
| fetch_by | string | Required | Type of ID document: "aadhaar" or "pan". |
| mobile | string | Required | 10-digit mobile number of the individual. |
Request Body
{
"name": "Ananya Sharma",
"mobile": "9876543210",
"number": "123456789012",
"fetch_by": "aadhaar"
}
cURL
curl -X POST https://app.way2api.com/api/v1/credit-report/pdf \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"Ananya Sharma","mobile":"9876543210","number":"123456789012","fetch_by":"aadhaar"}'
🚀 Send Request