Skip to main content

EPIC (India - ECI)

Retrieve EPIC (Voter ID) Person Data

Endpoint

https://electoralsearch.eci.gov.in/v2/in/epic

This endpoint returns name and relative-name information associated with an EPIC (Voter ID) number.

Headers

NameValue
Acceptapplication/json
Content-Typeapplication/json

Query Parameters

NameTypeRequiredDescriptionExample
documentNumberstringYesEPIC / Voter IDIHM2796746

Request

import axios from 'axios';

const options = {
method: 'GET',
url: 'https://electoralsearch.eci.gov.in/v2/in/epic',
params: { documentNumber: 'IHM2796746' },
headers: { Accept: 'application/json' },
};

try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}

Response

{
"data": {
"arrayName": ["SHREEYA", "JAISWAL"],
"arrayNameLocal": ["শ্রিয়া", "জয়সোয়াল"],
"documentNumber": "IHM2796746",
"documentType": "EPIC",
"firstName": "SHREEYA",
"firstNameLocal": "শ্রিয়া",
"fullName": "SHREEYA JAISWAL",
"fullNameLocal": "শ্রিয়া জয়সোয়াল",
"lastName": "JAISWAL",
"lastNameLocal": "জয়সোয়াল",
"relativeFullName": "AJAY JAISWAL",
"relativeFullNameLocal": "অজয় জয়সোয়াল"
},
"signature": {
"dateTime": "March 25, 2026 11:38 AM",
"message": "Certified by Verifik.co"
},
"id": "D4QMS"
}

Source