🌎Interpol Background Check

Service for querying criminal records with Interpol.

Interpol Background Check

GET - https://api.verifik.co/v2/interpol

The Interpol Search service allows you to search for an individual's information in the Interpol database. This database includes records of individuals wanted by law enforcement agencies for reasons such as criminal offenses or terrorist activities. The service returns detailed information, including the person's document type, document number, first name, last name, full name, and an array of name components.

This service is valuable for law enforcement and security agencies to identify and track individuals of interest.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

documentType

String

True

Document type. Allowed values: CC,CE,PA,RC,TI,PEP,CCVE,NIT,CURP,DNI, CCEC.

CC

documentNumber

String

True

Document number to consult, without spaces or points.

123456789

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/interpol>',
  params: {documentType: 'CC', documentNumber: '80251972'},
  headers: {
    Accept: 'application/json',
    Authorization: 'jwt <tu_token>'
  }
};

try {
 notFou const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

Response

{
  "data": {
    "totalCards": 2,
    "person": {
      "documentType": "CC",
      "documentNumber": "19304877",
      "firstName": "LUCIANO",
      "lastName": "MARIN ARANGO",
      "fullName": "LUCIANO MARIN ARANGO",
      "arrayName": [
        "LUCIANO",
        "MARIN",
        "ARANGO"
      ]
    },
    "cards": [
      {
        "arrestWarrants": [
          {
            "issuingCountryId": "CO",
            "charge": "ARTICULO 162.  - RECLUTAMIENTO ILÍCITO \\r\\nARTICULO 135-6 - HOMICIDIO EN PERSONA PROTEGIDA \\r\\nARTICULO 165 y 166 causal 3 - DESAPARICIÓN FORZADA AGRAVADA POR LA MENOR EDAD DE LA VÍCTIMA"
          },
          {
            "issuingCountryId": "CO",
            "charge": "RECLUTAMIENTO ILÍCITO (ART. 162)\\r\\nHOMICIDIO EN PERSONA PROTEGIDA (ART.135-6)\\r\\n DESAPARICIÓN FORZADA AGRAVADA POR LA MENOR EDAD DE LA VÍCTIMA (ART.165 y ART. 166 causal 3)"
          },
          {
            "issuingCountryId": "CO",
            "charge": "Reclutamiento ilícito\\r\\nHomicidio en persona protegida\\r\\nDesaparición forzada"
          },
          {
            "issuingCountryId": "CO",
            "charge": "Desaparición forzada agravada y homicidio en persona protegida"
          },
          {
            "issuingCountryId": "CO",
            "charge": "ARTICULO 162.  - RECLUTAMIENTO ILÍCITO \\r\\nARTICULO 135-6 - HOMICIDIO EN PERSONA PROTEGIDA \\r\\nARTICULO 165 y 166 causal 3 - DESAPARICIÓN FORZADA AGRAVADA POR LA MENOR EDAD DE LA VÍCTIMA"
          },
          {
            "issuingCountryId": "CO",
            "charge": "RECLUTAMIENTO ILÍCITO (ART. 162)\\r\\nHOMICIDIO EN PERSONA PROTEGIDA (ART.135-6)\\r\\n DESAPARICIÓN FORZADA AGRAVADA POR LA MENOR EDAD DE LA VÍCTIMA (ART.165 y ART. 166 causal 3)"
          },
          {
            "issuingCountryId": "CO",
            "charge": "Reclutamiento ilícito\\r\\nHomicidio en persona protegida\\r\\nDesaparición forzada"
          },
          {
            "issuingCountryId": "CO",
            "charge": "Desaparición forzada agravada y homicidio en persona protegida"
          }
        ],
        "weight": 0,
        "languagesSpokenIds": [
          "SPA"
        ],
        "height": 1.75,
        "sexId": "M",
        "countryOfBirthId": "CO",
        "distinguishingMarks": "string",
        "eyesColorsId": "string",
        "hairsId": "string",
        "placeOfBirth": "FLORENCIA - CAQUETA"
      },
      {
        "arrestWarrants": [
          {
            "issuingCountryId": "CO",
            "charge": "ARTICULO 162.  - RECLUTAMIENTO ILÍCITO \\r\\nARTICULO 135-6 - HOMICIDIO EN PERSONA PROTEGIDA \\r\\nARTICULO 165 y 166 causal 3 - DESAPARICIÓN FORZADA AGRAVADA POR LA MENOR EDAD DE LA VÍCTIMA"
          },
          {
            "issuingCountryId": "CO",
            "charge": "RECLUTAMIENTO ILÍCITO (ART. 162)\\r\\nHOMICIDIO EN PERSONA PROTEGIDA (ART.135-6)\\r\\n DESAPARICIÓN FORZADA AGRAVADA POR LA MENOR EDAD DE LA VÍCTIMA (ART.165 y ART. 166 causal 3)"
          },
          {
            "issuingCountryId": "CO",
            "charge": "Reclutamiento ilícito\\r\\nHomicidio en persona protegida\\r\\nDesaparición forzada"
          },
          {
            "issuingCountryId": "CO",
            "charge": "Desaparición forzada agravada y homicidio en persona protegida"
          },
          {
            "issuingCountryId": "CO",
            "charge": "ARTICULO 162.  - RECLUTAMIENTO ILÍCITO \\r\\nARTICULO 135-6 - HOMICIDIO EN PERSONA PROTEGIDA \\r\\nARTICULO 165 y 166 causal 3 - DESAPARICIÓN FORZADA AGRAVADA POR LA MENOR EDAD DE LA VÍCTIMA"
          },
          {
            "issuingCountryId": "CO",
            "charge": "RECLUTAMIENTO ILÍCITO (ART. 162)\\r\\nHOMICIDIO EN PERSONA PROTEGIDA (ART.135-6)\\r\\n DESAPARICIÓN FORZADA AGRAVADA POR LA MENOR EDAD DE LA VÍCTIMA (ART.165 y ART. 166 causal 3)"
          },
          {
            "issuingCountryId": "CO",
            "charge": "Reclutamiento ilícito\\r\\nHomicidio en persona protegida\\r\\nDesaparición forzada"
          },
          {
            "issuingCountryId": "CO",
            "charge": "Desaparición forzada agravada y homicidio en persona protegida"
          }
        ],
        "weight": 0,
        "languagesSpokenIds": [
          "SPA"
        ],
        "height": 1.75,
        "sexId": "M",
        "countryOfBirthId": "CO",
        "distinguishingMarks": "string",
        "eyesColorsId": "string",
        "hairsId": "string",
        "placeOfBirth": "FLORENCIA - CAQUETA"
      }
    ]
  },
  "signature": {
    "dateTime": "August 30, 2022 3:54 PM",
    "message": "Certified by Verifik.co"
  }
}

Last updated