Skip to main content

Costa Rica - Voting Location

Verifik queries the TSE Donde Votar electoral registry using CCCR (Costa Rican cΓ©dula, 9 to 13 digits). Use this endpoint for electoral verification, voter onboarding, and compliance workflows where Costa Rican electoral data is permitted.

Returns electoral location details when the source provides them:

  • documentType β€” allowed value: CCCR
  • documentNumber β€” Costa Rican cΓ©dula (9 to 13 digits)
  • fullName, firstName, firstLastName, secondLastName β€” citizen name from the electoral registry
  • gender β€” gender code when provided by the source
  • province, canton, district β€” residence and electoral geography
  • pollingPlace, pollingTable β€” polling location details
  • electoralCode, electorNumber, schoolAddress β€” TSE junta metadata
  • Optional fields β€” latitude, longitude when included by the source
  • Signed Verifik response

Endpoint​

GET v2/cr/votacion

Query the TSE Donde Votar registry with documentType CCCR and a documentNumber of 9 to 13 digits. Typical successful responses include polling place, junta (table), province, canton, and district for KYC, electoral verification, and compliance workflows.

Headers​

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

Parameters​

FieldTypeRequiredDescriptionExample
documentTypeStringYesDocument type. Allowed value: CCCR.CCCR
documentNumberStringYesCosta Rican cΓ©dula (9 to 13 digits).401310036

Request​

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

Response​

{
"data": {
"documentType": "CCCR",
"documentNumber": "401310036",
"fullName": "MARIA ELENA LOPEZ GARCIA",
"firstName": "MARIA",
"firstLastName": "LOPEZ",
"secondLastName": "GARCIA",
"gender": "1",
"province": "San JosΓ©",
"canton": "Central",
"district": "Carmen",
"pollingPlace": "Escuela RepΓΊblica de Chile",
"pollingTable": "12",
"electoralCode": "210011",
"electorNumber": "325",
"schoolAddress": "COSTADO NORTE DE LA PLAZA DE DEPORTES",
"latitude": 9.9281,
"longitude": -84.0907
},
"signature": {
"dateTime": "July 13, 2026 5:00 PM",
"message": "Certified by Verifik.co"
}
}

Notes​

  • documentType must be CCCR; documentNumber must be 9 to 13 numeric digits.
  • Live example IDs (production registry): 401310036, 401310030, 401310039, 402330708, 114070037.
  • Sandbox mode: use padded test IDs 010000001 through 010000010 for stable success profiles; 090040401 returns 404.
  • Treat responses as sensitive personal data; comply with applicable privacy laws.
  • See also: Costa Rican Citizen identity lookup.