cURL
curl --request POST \
--url https://api.bmpdigital.moneyp.dev.br/Bureau/ConsultarReceitaEmpresaCNPJ \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--header 'IdempotencyKey: <idempotencykey>' \
--data '
{
"consulta": {
"documento": "<string>"
}
}
'import requests
url = "https://api.bmpdigital.moneyp.dev.br/Bureau/ConsultarReceitaEmpresaCNPJ"
payload = { "consulta": { "documento": "<string>" } }
headers = {
"IdempotencyKey": "<idempotencykey>",
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
IdempotencyKey: '<idempotencykey>',
Authorization: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({consulta: {documento: '<string>'}})
};
fetch('https://api.bmpdigital.moneyp.dev.br/Bureau/ConsultarReceitaEmpresaCNPJ', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bmpdigital.moneyp.dev.br/Bureau/ConsultarReceitaEmpresaCNPJ",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'consulta' => [
'documento' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json",
"IdempotencyKey: <idempotencykey>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.bmpdigital.moneyp.dev.br/Bureau/ConsultarReceitaEmpresaCNPJ"
payload := strings.NewReader("{\n \"consulta\": {\n \"documento\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("IdempotencyKey", "<idempotencykey>")
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.bmpdigital.moneyp.dev.br/Bureau/ConsultarReceitaEmpresaCNPJ")
.header("IdempotencyKey", "<idempotencykey>")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"consulta\": {\n \"documento\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bmpdigital.moneyp.dev.br/Bureau/ConsultarReceitaEmpresaCNPJ")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["IdempotencyKey"] = '<idempotencykey>'
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"consulta\": {\n \"documento\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"msg": "<string>",
"messages": [
{
"code": "<string>",
"context": "<string>",
"description": "<string>",
"field": "<string>"
}
],
"hasError": true,
"falha": true,
"json": "<string>"
}{
"msg": "<string>",
"messages": [
{
"code": "<string>",
"context": "<string>",
"description": "<string>",
"field": "<string>"
}
],
"hasError": true,
"falha": true,
"json": "<string>"
}Receita
10 - Consulta Empresa por CNPJ
cURL
curl --request POST \
--url https://api.bmpdigital.moneyp.dev.br/Bureau/ConsultarReceitaEmpresaCNPJ \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--header 'IdempotencyKey: <idempotencykey>' \
--data '
{
"consulta": {
"documento": "<string>"
}
}
'import requests
url = "https://api.bmpdigital.moneyp.dev.br/Bureau/ConsultarReceitaEmpresaCNPJ"
payload = { "consulta": { "documento": "<string>" } }
headers = {
"IdempotencyKey": "<idempotencykey>",
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
IdempotencyKey: '<idempotencykey>',
Authorization: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({consulta: {documento: '<string>'}})
};
fetch('https://api.bmpdigital.moneyp.dev.br/Bureau/ConsultarReceitaEmpresaCNPJ', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bmpdigital.moneyp.dev.br/Bureau/ConsultarReceitaEmpresaCNPJ",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'consulta' => [
'documento' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json",
"IdempotencyKey: <idempotencykey>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.bmpdigital.moneyp.dev.br/Bureau/ConsultarReceitaEmpresaCNPJ"
payload := strings.NewReader("{\n \"consulta\": {\n \"documento\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("IdempotencyKey", "<idempotencykey>")
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.bmpdigital.moneyp.dev.br/Bureau/ConsultarReceitaEmpresaCNPJ")
.header("IdempotencyKey", "<idempotencykey>")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"consulta\": {\n \"documento\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bmpdigital.moneyp.dev.br/Bureau/ConsultarReceitaEmpresaCNPJ")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["IdempotencyKey"] = '<idempotencykey>'
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"consulta\": {\n \"documento\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"msg": "<string>",
"messages": [
{
"code": "<string>",
"context": "<string>",
"description": "<string>",
"field": "<string>"
}
],
"hasError": true,
"falha": true,
"json": "<string>"
}{
"msg": "<string>",
"messages": [
{
"code": "<string>",
"context": "<string>",
"description": "<string>",
"field": "<string>"
}
],
"hasError": true,
"falha": true,
"json": "<string>"
}Utilize este endpoint para verificar quem são os sócios e administradores de uma empresa, suas qualificações e informações relevantes sobre sua participação na empresa.
Mostrar Exemplo de retorno completo
Mostrar Exemplo de retorno completo
O exemplo de retorno, mostrado no lado direito desta tela, está resumido. Na linha
"json": "<string>" o retorno do Bureau vem de forma serializada, sendo necessário deserializar para melhor visualização. Aqui está um exemplo do retorno deserializado que vem no campo "json":.{
\"Erro": false,
\"MensagemOperador": "OK",
\"ResultadoConsulta": {
\"Socios": [
{
\"Cpf": "00011122233",
\"DataInclusao": "2019-07-26",
\"RepresentanteLegal": {
\"Cpf": "00000000000",
\"Nome": "",
\"Qualificacao": "00",
\"DescricaoQualificacao": "Desconhecido"
},
\"TipoSocio": "2",
\"DescricaoTipoSocio": "Pessoa Física",
\"Nome": "nome sobrenome",
\"Qualificacao": "16",
\"DescricaoQualificacao": "Presidente",
\"Pais": {
\"Codigo": "105",
\"Descricao": "BRASIL"
}
},
{
\"Cpf": "22233344455",
\"DataInclusao": "2019-07-26",
\"RepresentanteLegal": {
\"Cpf": "00000000000",
\"Nome": "",
\"Qualificacao": "00",
\"DescricaoQualificacao": "Desconhecido"
},
\"TipoSocio": "2",
\"DescricaoTipoSocio": "Pessoa Física",
\"Nome": "nome sobrenome",
\"Qualificacao": "10",
\"DescricaoQualificacao": "Diretor",
\"Pais": {
\"Codigo": "105",
\"Descricao": "BRASIL"
}
}
],
\"InformacoesAdicionais": {
\"OptanteSimples": "NÃO",
\"OptanteMei": "NÃO",
\"ListaPeriodosSimples": []
},
\"Ni": "11222333000155",
\"TipoEstabelecimento": "1",
\"DescricaoTipoEstabelecimento": "Matriz",
\"NomeEmpresarial": "Empresa S.A",
\"NomeFantasia": "Empresa",
\"SituacaoCadastral": {
\"Codigo": "2",
\"Data": "2019-07-26",
\"Motivo": "",
\"Descricao": "Ativa"
},
\"NaturezaJuridica": {
\"Codigo": "2054",
\"Descricao": "Sociedade Fechada"
},
\"DataAbertura": "2019-07-26",
\"CnaePrincipal": {
\"Codigo": "6499999",
\"Descricao": "Outras atividades de serviços especificadas anteriormente"
},
\"CnaeSecundarias": [
{
\"Codigo": "6204000",
\"Descricao": "Consultoria em tecnologia da informação"
},
{
\"Codigo": "6209100",
\"Descricao": "Suporte técnico"
},
{
\"Codigo": "6619399",
\"Descricao": "Outras atividades auxiliares"
},
{
\"Codigo": "6629100",
\"Descricao": "Atividades auxiliares dos seguros"
},
{
\"Codigo": "8291100",
\"Descricao": "Atividades de cobranças e informações cadastrais"
}
],
\"Endereco": {
\"TipoLogradouro": "AVENIDA",
\"Logradouro": "PAULISTA",
\"Numero": "1765",
\"Complemento": "ANDAR 1O. ANDAR CONJ CONJUNTO 11",
\"Cep": "01311930",
\"Bairro": "BELA VISTA",
\"Municipio": {
\"Codigo": "7107",
\"Descricao": "SAO PAULO"
},
\"Uf": "SP",
\"Pais": {
\"Codigo": "105",
\"Descricao": "BRASIL"
}
},
\"MunicipioJurisdicao": {
\"Codigo": "0818000",
\"Descricao": "SÃO PAULO"
},
\"Telefones": [
{
\"DDD": "11",
\"Numero": "38109333"
}
],
\"CorreioEletronico": "FISCAL@MONEYP.COM.BR",
\"CapitalSocial": 700000000,
\"Porte": "05",
\"DescricaoPorte": "Demais empresas",
\"SituacaoEspecial": "",
\"DataSituacaoEspecial": ""
}
}
Mostrar Tabela de dados fictícios para testes
Mostrar Tabela de dados fictícios para testes
| CNPJ | SITUAÇÃO |
|---|---|
| 34238864000168 | ATIVO |
| 54447820000155 | SUSPENSO |
| 46768703000165 | INAPTO |
| 31151791000184 | BAIXADO |
| 34428654000132 | NULO |
Autorizações
Informe o token
Cabeçalhos
Corpo
application/jsontext/jsonapplication/*+json
Show child attributes
Show child attributes
Esta página foi útil?
⌘I

