ECI Voter Search Web API

Note: This API automatically retries up to 3 times if the first attempt fails. If you see an error, wait a moment and try again.

API Endpoint:

GET /voter/api/v1/search-voter?epic=YOUR_EPIC_NUMBER

Direct Search Links:

Test EPIC: ZNO1150077 Test EPIC: TEST1234567

Try it yourself:

Searching... Please wait (Automatic retry enabled)

Example Usage:

cURL:

curl "https://13-205-15-166.nip.io/voter/api/v1/search-voter?epic=ZNO1150077"

Python:

import requests
response = requests.get("https://13-205-15-166.nip.io/voter/api/v1/search-voter?epic=ZNO1150077")
data = response.json()

JavaScript:

fetch("https://13-205-15-166.nip.io/voter/api/v1/search-voter?epic=ZNO1150077")
.then(response => response.json())
.then(data => console.log(data));

Response:


        

Features:

Response Format:

{
    "success": true/false,
    "epic": "EPIC_NUMBER",
    "captcha_used": "solved_captcha_text",
    "data": [voter_details_array],
    "timestamp": "ISO_timestamp",
    "endpoint_used": "api_endpoint_name"
}