Voter ID Verification Request
Identity and SecurityHow to call Voter ID Verification — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/voter-id/verify
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| voter_id | string | Required | 10-character EPIC (Voter ID) number (e.g. ABC1234567). |
Request Body
{
"voter_id": "ABC1234567"
}
cURL
curl -X POST https://app.way2api.com/api/v1/voter-id/verify \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"voter_id":"ABC1234567"}'
🚀 Send Request