🌎Europol Background Check

Service for querying criminal records with Europol.

Europol Background Check

POST /users

This service allows users to verify if a given document number and name are found in Europol's database. By providing the document number and the individual's name, the service returns information on whether the document and name match any records in Europol's system. This is useful for businesses and organizations looking to confirm identities and enhance security measures.

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/europol>',
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": {
    "documentType": "CC",
    "documentNumber": "123456789",
    "fullName": "MATEO VERIFIK",
    "firstName": "MATEO",
    "lastName": "VERIFIK",
    "arrayName": [
      "MATEO",
      "VERIFIK"
    ],
    "foundInEuropol": false,
    "urlEuropol": "<https://eumostwanted.eu/es#/es/node/162>"
  },
  "signature": {
    "dateTime": "June 28, 2022 12:40 PM",
    "message": "Certified by Verifik.co"
  }
}

Last updated