🌎DEA Background Check

Service for querying criminal records with the DEA.

Endpoint

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

This API allows businesses and organizations to verify if an individual or entity appears on the U.S. Drug Enforcement Administration (DEA) watchlist. By providing a document type, document number, or full name, users can quickly determine whether the person or organization is flagged by the DEA. The service returns a boolean flag indicating the presence of a match, and, if applicable, includes a URL linking to the official DEA record. This tool is essential for regulatory compliance and risk mitigation in industries where individuals or entities may be involved in controlled substances.

Implementation

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

Name
Type
Required
Description

documentType

String

False

Document type. Allowed values: CC,CE,PA,RC,TI,PEP,CCVE,NIT,CURP,DNI, CCEC.

documentNumber

String

False

Document number to consult, without spaces or points.

fullName

String

False

Instead 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/dea',
  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": "123456789",
        "fullName": "MATEO VERIFIK",
        "firstName": "MATEO",
        "lastName": "VERIFIK",
        "arrayName": [
        "MATEO",
        "VERIFIK"
        ],
        "foundInDEA": true,
        "urlDEA": "https://www.dea.gov/fugitives/ismael-zambada-garcia"
    },
    "signature": {
        "dateTime": "June 28, 2022 11:41 AM",
        "message": "Certified by [Verifik.co](<http://verifik.co/>)"
    }
}

Use Cases

  • Regulatory Compliance: Ensure that your business operations comply with U.S. federal regulations by screening individuals or entities for DEA-related flags.

  • Fraud Prevention: Identify potential risks associated with individuals or organizations involved in controlled substances.

  • KYC & AML Compliance: Essential for industries such as healthcare, pharmaceuticals, logistics, and finance to comply with Know Your Customer (KYC) and Anti-Money Laundering (AML) regulations.

Last updated