Skip to main content
GET
/
dividas
/
cpf
/
{cpf}
Dívidas federais por CPF
curl --request GET \
  --url https://221b-api.sherlocker.com.br/api/v1/dividas/cpf/{cpf} \
  --header 'Authorization: Bearer <token>'
{
  "documento": "123.456.789-01",
  "tipo_documento": "CPF",
  "nome": "Fulano de Tal",
  "total": 2,
  "valor_total": 21230.5,
  "ajuizado": true,
  "dividas": [
    {
      "numero_inscricao": "80000000000001",
      "fonte": "ativa_uniao",
      "receita": "IRPF",
      "ajuizado": true,
      "data_inscricao": "2019-03-15",
      "valor_atual": 12500,
      "uf": "SP",
      "unidade_responsavel": "DRF CAMPINAS",
      "historico": [
        {
          "situacao": "Ativa",
          "valor": 12500,
          "data_inscricao": "2019-03-15"
        }
      ]
    },
    {
      "numero_inscricao": "80000000000002",
      "fonte": "fgts",
      "receita": "FGTS",
      "ajuizado": false,
      "data_inscricao": "2020-06-01",
      "valor_atual": 8730.5,
      "uf": "SP",
      "unidade_responsavel": "SRTE/SP",
      "entidade_responsavel": "CEF",
      "historico": [
        {
          "situacao": "Ativa",
          "valor": 8730.5,
          "data_inscricao": "2020-06-01"
        }
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.sherlocker.com.br/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

cpf
string
required
Example:

"12345678901"

Response

Dívidas encontradas

documento
string
nome
string | null
total
integer
valor_total
number
ajuizado
boolean
dividas
object[]