Skip to main content

Interpol Background Check

Endpoint​

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

This API endpoint allows you to search the criminal background of an individual or a company. To receive a successful response, it is necessary to provide the document type and document number. The response returns details such as document type, document number, first name, last name, full name, and name components for both natural and legal persons. It is designed for secure and authorized use by law enforcement and security agencies.

Essential for organizations requiring criminal background verification, such as for hiring, security clearances, or legal compliance, particularly when dealing with international records.

Headers​

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescription
documentTypestringNoDocument type that you want to request
documentNumberstringNoDocument number to consult, without spaces or points
fullNamestringNoInstead of documentType and documentNumber, you can pass the name directly of the person/business

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 {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}

Response​

{
"data": {
"documentType": "CC",
"documentNumber": "19304877",
"firstName": "IVAN LUCIANO MARQUEZ",
"lastName": "MARIN ARANGO",
"fullName": "IVAN LUCIANO MARQUEZ MARIN ARANGO",
"arrayName": [
"IVAN",
"LUCIANO",
"MARQUEZ",
"MARIN",
"ARANGO"
],
"foundInInterpol": true,
"details": {
"totalCards": "2",
"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"
}
],
"weight": "0",
"languagesSpokenIds": [
"SPA"
],
"height": "1.75",
"sexId": "M",
"countryOfBirthId": "CO",
"distinguishingMarks": null,
"eyesColorsId": null,
"hairsId": null,
"placeOfBirth": "FLORENCIA - CAQUETA"
}
]
}
},
"signature": {
"dateTime": "June 16, 2025 4:31 PM",
"message": "Certified by Verifik.co"
},
"id": "PHVXK"
}

Features​

  • Criminal Background Search: Search criminal background of individuals or companies
  • Interpol Database Access: Access to Interpol's criminal database
  • Law Enforcement Use: Designed for authorized law enforcement and security agencies
  • International Records: Access to international criminal records
  • Detailed Information: Returns comprehensive criminal background details
  • Structured Response: Organized data format for easy integration
  • Multiple Programming Languages: Support for JavaScript, Python, PHP, and Swift
  • Error Handling: Comprehensive error responses for various scenarios

Important Notes​

  • This service accesses Interpol's database and is intended exclusively for authorized law enforcement and security agencies. Unauthorized use is strictly prohibited.
  • The data retrieved is highly sensitive and subject to international privacy and data protection laws. Handle with care and ensure compliance with all relevant regulations.
  • Always verify the information with official Interpol channels or local authorities for critical decisions.

Use Cases​

  • Criminal Background Verification: Essential for organizations requiring criminal background verification for hiring, security clearances, or legal compliance
  • International Records: Particularly useful when dealing with international criminal records
  • Law Enforcement: Designed for secure and authorized use by law enforcement and security agencies