Skip to main content

Colombia โ€” SISBEN score

Endpointโ€‹

GET https://api.verifik.co/v2/co/sisben

Returns SISBEN group / score information from the official consultation portal using the personโ€™s documentType and documentNumber. Data may include group label, survey validity, municipality, department, and related metadata. This endpoint uses browser automation against the public SISBEN report site; responses can be slower than typical REST calls.

Headersโ€‹

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parametersโ€‹

nametyperequireddescription
documentTypestringyesOne of CC, CE, PEP, PPT, PA.
documentNumberstringyesID number without spaces or punctuation.

Requestโ€‹

import axios from "axios";

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

Responseโ€‹

{
"data": {
"arrayName": ["APELLIDO", "NOMBRE", "SEGUNDO"],
"city": "BOGOTร D.C.",
"currentSurvey": "โ€ฆ",
"department": "CUNDINAMARCA",
"detaliGroup": "โ€ฆ",
"documentNumber": "1121329661",
"documentType": "CC",
"file": "โ€ฆ",
"firstName": "NOMBRE SEGUNDO",
"fullName": "NOMBRE SEGUNDO APELLIDO",
"lastCitizenUpdate": "โ€ฆ",
"lastName": "APELLIDO",
"sisbenGroup": "A",
"validity": "โ€ฆ"
},
"signature": {
"dateTime": "April 8, 2026 11:00 PM",
"message": "Certified by Verifik.co"
},
"id": "IDNT1"
}

Featuresโ€‹

  • Group / score: SISBEN group and related labels returned when the portal shows a result.
  • Location fields: Municipality and department when parsed from the report.
  • Survey metadata: Current survey and last update lines when available.

Use casesโ€‹

  • Social programs: Eligibility checks tied to SISBEN classification.
  • KYCC / onboarding: Validate beneficiary status where regulations allow use of official consultation data.

Notesโ€‹

  • Requests may take several seconds because the integration drives the public web consultation.
  • PPT is accepted by API validation; if the upstream form mapping changes, you may see 500 errors until the integration is updated.