Skip to main content

FBI Background Check

API Reference​

Endpoint​

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

Search FBI-published records using documentType and documentNumber, or fullName. When a match exists, the response can include identity fields and a public FBI URL for the subject.

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
documentTypestringNoThe document 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​

  • Identity verification: Validate documents against FBI-published information.
  • Compliance: Support screening for sensitive roles or transactions.
  • Fraud prevention: Confirm identities before establishing relationships.

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

Notes​

  • Returns foundInFBI and optional urlFBI when a public FBI page applies.