Vehicle RC PDF Request
VerificationHow to call Vehicle RC PDF — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/rc/pdf
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| rc_number | string | Required | Vehicle registration number, e.g. DL3CAB1234 or MH12AB1234. Case-insensitive, no spaces or hyphens. |
| chassis_number | string | Optional | Optional chassis number for additional verification. 5 to 25 characters. |
| engine_number | string | Optional | Optional engine number for additional verification. 3 to 25 characters. |
Request Body
{
"rc_number": "DL3CAB1234"
}
cURL
curl -X POST https://app.way2api.com/api/v1/rc/pdf \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"rc_number":"DL3CAB1234"}'
🚀 Send Request