Consulta responsável por retornar dados da empresa através do nome ou razão social.
Autenticação:
Tipo de autenticação: Bearer Token
Type: POST
Variáveis:
{endpoint} = finder
BODY:
{link} = finder
{nomeRazaoSocial} = string
{dataNascimentoAbertura} = date (1990-08-31)
{idadeInicio} = string
{idadeFim} = string
{telefone} = string
{email} = string
{cidade} = string
{uf} = string
{logradouro} = string
{numero} = string
{cep} = string
curl -X POST https://api.apifull.com.br/api/{endpoint} \
-H "Authorization: Bearer {SEU_TOKEN}" \
-H "Accept: ." \
-H "Content-Type: application/json" \
-d '{
"link":"finder",
"nomeRazaoSocial":"",
"dataNascimentoAbertura":"",
"idadeInicio":"",
"idadeFim":"",
"telefone":"",
"email":"",
"cidade":"",
"uf":"",
"logradouro":"",
"numero":"",
"cep":""
}'
Response (200):
{
"status": "sucesso",
"API Full": "https://doc.apifull.com.br",
"dados": [
{
"TipoPessoa": "PJ",
"Documento": "1234567889900",
"NomeRazaoSocial": "NOME DA EMPRESA",
"DataNascimentoAbertura": "2024-08-15T00:00:00",
"Idade": 0,
"DDD": "",
"Telefone": "",
"Cidade": "BELO HORIZONTE",
"UF": "MG",
"Email": ""
}
]
}
Response (400):
{
"status": "error",
"message": "Token inválido!"
}