🇲🇽México
Servicio para consultar empresas mexicanas utilizando el FME (Folio Mercantil Electrónico).
Endpoint
https://api.verifik.co/v2/mx/company
El servicio de Información de Empresas Mexicanas te permite obtener detalles esenciales sobre las empresas registradas en México. Este servicio proporciona acceso a información como el nombre comercial y la ciudad. Es un recurso valioso para obtener datos clave sobre empresas mexicanas con diversos fines, como verificación e investigación.
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