GET /voter/api/v1/search-voter?epic=YOUR_EPIC_NUMBER
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));
{
"success": true/false,
"epic": "EPIC_NUMBER",
"captcha_used": "solved_captcha_text",
"data": [voter_details_array],
"timestamp": "ISO_timestamp",
"endpoint_used": "api_endpoint_name"
}