Vehicle RC Verification Request
VerificationHow to call Vehicle RC Verification — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/rc/verify
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, MH12AB1234). |
| chassis_number | string | Optional | Chassis number for additional verification (optional). |
| engine_number | string | Optional | Engine number for additional verification (optional). |
Request Body
{
"rc_number": "DL3CAB1234"
}
cURL
curl -X POST https://app.way2api.com/api/v1/rc/verify \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"rc_number":"DL3CAB1234"}'
🚀 Send Request