AsyncCreate Voter ID

Voter ID Verification API

Verify a voter ID (EPIC) number and retrieve holder details including name, age, constituency, and polling station.

curl -X POST "https://production.deepvue.tech/v1/verification/post-voter-id?epic_number=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY"
{
  "request_id": "fbbbd62c-7244-460f-92f4-f9702693200e"
}
POST
/v1/verification/post-voter-id
POST
Bearer Token (JWT)
Bearer Tokenstring
Required

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
API Key (header: x-api-key)
x-api-keystring
Required

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (JWT). ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

header
x-api-keystring
Required

API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

Query Parameters

Responses

Overview

The Voter ID Verification API enables instant verification of voter identification details by cross-referencing government databases. This service makes your onboarding process safer, faster, and smarter by confirming that individuals possess valid voter IDs and have provided legitimate identity documentation.

This is an asynchronous KYC API. You submit an EPIC number (voter ID identifier) as a query parameter to initiate the verification task. The API returns a request ID upon submission and uses a webhook mechanism to deliver results back to your servers. You can also retrieve the response using the corresponding result endpoint.

Upon successful submission, you receive a request_id that you can use with the Get Voter ID Result endpoint to retrieve the verification outcome.