Skip to main content

Honduras - Voting Location

Verifik queries the Donde Me Toca Votar electoral consultation registry using DNIHN (13-digit identity number). Use this endpoint for electoral verification, voter onboarding, and compliance workflows where Honduran electoral data is permitted.

Returns electoral location details when the source provides them:

  • documentType โ€” allowed value: DNIHN
  • documentNumber โ€” Honduran identity document number (13 digits)
  • fullName โ€” citizen full name from the electoral registry
  • gender โ€” gender when provided by the source
  • department, municipality, electoralSector โ€” residence and electoral sector
  • pollingPlace, pollingTable (JRV), lineNumber โ€” polling location details
  • enabled โ€” whether the citizen is enabled to vote
  • fullAddress โ€” formatted polling address
  • Optional fields โ€” latitude, longitude when included by the source
  • Signed Verifik response

Endpointโ€‹

GET v2/hn/votacion

Query the national electoral consultation registry with documentType DNIHN and a 13-digit documentNumber. Typical successful responses include polling place, JRV (table), department, municipality, and voting eligibility for KYC, electoral verification, and compliance workflows.

Headersโ€‹

HeaderValueDescription
Acceptapplication/jsonResponse format
AuthorizationBearer <token>Your Verifik JWT

Parametersโ€‹

FieldTypeRequiredDescriptionExample
documentTypeStringYesDocument type. Allowed value: DNIHN.DNIHN
documentNumberStringYesHonduran identity document number (13 digits).0501199705651

Requestโ€‹

const { data } = await axios.get("https://api.verifik.co/v2/hn/votacion", {
params: {
documentType: "DNIHN",
documentNumber: "0501199705651",
},
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

Responseโ€‹

{
"data": {
"documentType": "DNIHN",
"documentNumber": "0501199705651",
"fullName": "CHRISTOPHER ALEXANDER RUBIO ROMERO",
"gender": "MASCULINO",
"department": "ESPAร‘A",
"municipality": "MADRID",
"electoralSector": "MADRID",
"pollingPlace": "CONSULADO DE MADRID EN ESPAร‘A",
"pollingTable": "12",
"lineNumber": "42",
"enabled": true,
"fullAddress": "CONSULADO DE MADRID EN ESPAร‘A, MADRID, ESPAร‘A, Honduras"
},
"signature": {
"dateTime": "July 9, 2026 5:00 PM",
"message": "Certified by Verifik.co"
}
}

Notesโ€‹

  • documentType must be DNIHN; documentNumber must be exactly 13 numeric digits.
  • Live example IDs (production registry): 0501199705651, 0828200300064, 0801198000420, 0801198000427, 0801198000428, 0801197302222, 0801198000421.
  • Sandbox mode: use padded test IDs 0000010000001 through 0000010000010 for stable success profiles; 0000090040401 returns 404.
  • Source rate limits: if the electoral registry throttles requests, Verifik may return 409 with Endpoint_out_of_service (temporary; retry later).
  • Treat responses as sensitive personal data; comply with applicable privacy laws.
  • See also: Honduran Citizen identity lookup.