🇵🇪Peru

Service for querying Peruvian companies through the RUC (Unique Taxpayer Registry).

Peruvian Company Information

GET - https://api.verifik.co/v2/pe/empresa

This service allows users to retrieve detailed information about companies in Peru by providing a RUC (Unique Taxpayer Registry) number. The response includes key data such as the company name, address, tax status, and other relevant details.

This service is useful for businesses, researchers, or individuals needing to verify company information and status in Peru.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

documentType

String

True

Document type. Allowed value: RUC.

RUC

documentType

String

True

Unique Taxpayer Registry (RUC) to be queried, without spaces, periods, and must be 11 digits.

201340512231248910

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/pe/empresa>',
  params: {documentType: 'RUC', documentNumber: '201340512231248910'},
  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": {
    "documentType": "RUC",
    "documentNumber": "201340512231248910",
    "ubigeo": "150107",
    "numero": "450",
    "interior": "-",
    "lote": "-",
    "dpto": "-",
    "manzana": "-",
    "kilometro": "-",
    "distrito": "CHACLACAYO",
    "provincia": "LIMA",
    "departamento": "LIMA",
    "direccion": "CAL. LAS PALMERAS NRO. 450 - LIMA LIMA CHACLACAYO",
    "nombre": "ADMINISTRADORA DE PANADERIAS E.I.R.L.",
    "estadoContribuyente": "BAJA DE OFICIO",
    "condicionDomicilio": "NO HABIDO",
    "tipoVia": "CAL.",
    "nombreVia": "LAS PALMERAS",
    "codigoZona": "-",
    "tipoZona": "-",
    "direccionSimple": "CAL. LAS PALMERAS NRO. 450",
    "actualizado": "2023-05-03 06:30:02"
  },
  "signature": {
    "dateTime": "May 3, 2023 8:51 PM",
    "message": "Certified by Verifik.co"
  }
}

Last updated