Skip to main content

Interpol Background Check

API Reference​

Endpoint​

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

Use this endpoint to search Interpol-linked criminal background information for a natural or legal person using documentType and documentNumber, or fullName alone. Successful responses return identity fields and match details when a record exists; the service is intended for secure, authorized law enforcement and security use cases.

Note: Dates (date of birth or expedition date) must be in dd/mm/yyyy format.

Headers​

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parameters​

info

For the complete list of supported Document Types and their specific mandatory parameters, please visit the Document Types guide.

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

Use Cases​

  • Criminal background verification: Hiring, security clearances, or legal compliance, including international records.
  • Law enforcement: Authorized agencies screening against Interpol data.

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"
}

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.
  • Criminal background search across Interpol-linked records.
  • Structured responses for integration; supports JavaScript, Python, PHP, and Swift examples above.