Credit Report Experian Request
BusinessHow to call Credit Report Experian — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/credit-report-experian/fetch-report
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 as it appears on their PAN. 2 to 100 characters. |
| mobile | string | Required | 10-digit Indian mobile number of the individual, starting 6-9. |
| pan | string | Required | 10-character PAN of the individual, e.g. ABCDE1234F. Case-insensitive. |
| consent | string | Required | Must be "Y". A credit bureau enquiry is only lawful with the individual explicit consent, and you must have obtained and retained it. |
Request Body
{
"name": "Ananya Sharma",
"mobile": "9876543210",
"pan": "ABCDE1234F",
"consent": "Y"
}
cURL
curl -X POST https://app.way2api.com/api/v1/credit-report-experian/fetch-report \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"Ananya Sharma","mobile":"9876543210","pan":"ABCDE1234F","consent":"Y"}'
🚀 Send Request