Validating Suframa Registration

In the Commercial API, it is possible to query a Suframa registration using the POST method.

Remember to send the CNPJ without special characters.

Method: POST

Endpoint: https://comercial.cnpj.ws/suframa

Request Examples

We have a package that can help you integrate with JavaScript:

yarn add consultar-cnpj
const consultarCNPJ = require("consultar-cnpj");

async function getCNPJ() {
  const token = "INFORME O SEU TOKEN DE ACESSO";
  const cnpj = "61940292006682";
  const incricao = "210140267";

  const empresa = await consultarCNPJ.suframa(cnpj, incricao, token);
  console.log(empresa);
}

More information about the packagearrow-up-right

Return Example

Below is an example of the JSON returned when searching for the CNPJ 61940292006682 and registration 210140267:

Last updated

Was this helpful?