Pular para o conteúdo principal
GET
/
responses
List lawsuit responses for a completed find request
curl --request GET \
  --url https://miner.production.judit.io/responses \
  --header 'api-key: <api-key>'
{
  "data": [
    {
      "lawsuit_id": 123,
      "tribunal_id": 123,
      "base": 123,
      "kind": "judgement-bond",
      "code": "<string>",
      "instance": 123,
      "name": "<string>",
      "amount": 123,
      "is_enriched": true,
      "favorites": {},
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "page": 2,
  "page_size": 2,
  "total": 1,
  "total_pages": 1
}

Documentation Index

Fetch the complete documentation index at: https://docs.judit.io/llms.txt

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

Autorizações

api-key
string
header
obrigatório

Replace with the actual API key requirement for your Miner API deployment.

Parâmetros de consulta

request_id
integer<int64>
obrigatório
Intervalo obrigatório: x >= 1
page
integer
padrão:1

Page number (default 1)

Intervalo obrigatório: x >= 1
page_size
integer
padrão:10

Page size (default 10, max 100)

Intervalo obrigatório: 1 <= x <= 100

Resposta

Paginated lawsuits linked to the request’s responses

data
object[]
obrigatório
page
integer
obrigatório
Intervalo obrigatório: x >= 1
page_size
integer
obrigatório
Intervalo obrigatório: x >= 1
total
integer
obrigatório
Intervalo obrigatório: x >= 0
total_pages
integer
obrigatório
Intervalo obrigatório: x >= 0