🌎FBI Background Check

Service for querying criminal records with the FBI.

Create a new user

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

This service allows you to verify if a document with a specified type and number is found in the FBI database. By providing the document type and number, the service returns information about the document owner, including their full name, first name, and last name. This is useful for verifying the authenticity and status of documents in relation to FBI records.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Body

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/fbi>',
  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": "80251972",
    "fullName": "WILVER VILLEGAS PALOMINO",
    "firstName": "WILVER",
    "lastName": "VILLEGAS PALOMINO",
    "arrayName": [
      "WILVER",
      "VILLEGAS",
      "PALOMINO"
    ],
    "foundInFBI": true,
    "urlFBI": "<https://www.fbi.gov/wanted/cei/wilver-villegas-palomino->"
  },
  "signature": {
    "dateTime": "June 28, 2022 12:36 PM",
    "message": "Certified by Verifik.co"
  }
}

Last updated