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.