πŸ‡²πŸ‡½Mexico

Service to query Mexican companies using the FME (Electronic Commercial Folio).

Endpoint

https://api.verifik.co/v2/mx/company

The Mexican Company Information service allows you to retrieve essential details about registered companies in Mexico. This service provides access to information such as the business name and city. It is a valuable resource for obtaining crucial data on Mexican companies for various purposes, including verification and research.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

Name
Type
Required?
Description
Example

documentType

String

True

Document type. Valid parameter: FME.

FME

documentNumber

String

True

Document of the Company to consult, without spaces or periods.

N-2021007300

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/mx/company>',
  params: {documentNumber: 'N-2021007300', documentType: 'FME'},
    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": {
    "business": "INNOVACION, DISEΓ‘O Y CONSTRUCCION APLICADA FER'S, SOCIEDAD ANΓ“NIMA DE CAPITAL VARIABLE",
    "city": "OTUMBA",
    "documentNumber": "N-2021007300",
    "documentType": "FME"
  },
  "signature": {
    "dateTime": "October 12, 2023 4:23 PM",
    "message": "Certified by Verifik.co"
  },
  "id": "zge41"
}

Last updated