🇲🇽Mexico

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

Mexican Company Information

GET - 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.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

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 {
 notFou 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