Skip to main content

Bolivia - Voting Location

Verifik queries Yo Participo (OEP) using CI and date of birth. Use this endpoint for electoral verification, voter onboarding, and compliance workflows where OEP data is permitted.

Returns electoral location details when the source provides them:

  • documentType — allowed value: CI
  • documentNumber — Bolivian identity document number (5–13 characters)
  • dateOfBirth — date of birth in DD/MM/YYYY format (must match OEP records)
  • fullName — citizen full name from the electoral registry
  • votingStatus — whether the citizen is enabled to vote
  • department, locality, pollingPlace, pollingTable — electoral location fields
  • election — election label or registry update note when provided
  • Optional fieldsisJury, jurySortDate, politicalMembership, latitude, longitude when included by the source
  • force — optional; set to true to bypass cache
  • Signed Verifik response

Endpoint

GET v2/bo/votacion

Headers

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

Parameters

FieldTypeRequiredDescription
documentTypeStringYesDocument type. Allowed value: CI.
documentNumberStringYesBolivian CI number without expedition code (5–13 characters).
dateOfBirthStringYesDate of birth in DD/MM/YYYY format.
forceStringNoSet to true to bypass cache and fetch fresh data.

Request

const { data } = await axios.get("https://api.verifik.co/v2/bo/votacion", {
params: {
documentType: "CI",
documentNumber: "4511200",
dateOfBirth: "27/03/1978",
},
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

Response

{
"data": {
"documentType": "CI",
"documentNumber": "4511200",
"fullName": "LIDIA IRIARTE TORREZ",
"votingStatus": "USTED ESTA HABILITADO/A PARA VOTAR",
"country": "BOLIVIA",
"department": "Cochabamba",
"locality": "Cercado, Cochabamba",
"election": "Elecciones Generales 2026",
"pollingPlace": "Unidad Educativa Santa Maria Micaela",
"pollingTable": "18"
},
"signature": {
"dateTime": "July 2, 2026 3:00 PM",
"message": "Certified by Verifik.co"
}
}

Notes

  • documentType must be CI; dateOfBirth is required and must match OEP records.
  • Optional jury, militancy, and coordinate fields appear only when the source HTML/JSON includes them.
  • Use force=true when you need to bypass cached MongoDB records.
  • Treat responses as sensitive personal data; comply with applicable privacy laws.