🇵🇾Paraguay

Service to consult companies in Paraguay using the RUC (Single Taxpayer Registry).

Paraguayan Company Information

GET - https://api.verifik.co/v2/py/company

The Paraguayan Business Query service provides detailed information about Paraguayan companies. When making a query, the response provides key data such as the business name, document number and type (RUC - Unique Taxpayer Registry), full RUC, the group it belongs to, whether it is an invoicer, and the mandatory date from which certain requirements apply.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Body

NameTypeRequired?DescriptionExample

documentNumber

String

True

Company document number to consult.

80033331

documentType

String

True

Document type. Allowed parameter: RUC.

RUC

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/py/company>',
  params: {documentNumber: '1234567', documentType:'RUC'},
    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": {
        "businessName": "CONDOMINIO MANUEL ADOLFO FERREIRA BRUSQUETTI Y OTRO",
        "documentNumber": "80033331",
        "documentType": "RUC",
        "fullRuc": "80033331-4",
        "group": null,
        "invoicer": "N",
        "mandatoryDate": null
    },
    "signature": {
        "dateTime": "April 5, 2024 2:46 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "ESKV4"
}

Last updated