> ## Documentation Index
> Fetch the complete documentation index at: https://juridiqsoftware.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Listar fila de monitoramento

> Lista processos na fila de validação do monitoramento.



## OpenAPI

````yaml https://api.juridiq.com.br/api-docs/client/openapi.json get /lawSuit/v2/monitoring/queue
openapi: 3.1.0
info:
  title: Juridiq API — Documentação para Integradores
  description: >-
    API REST para integradores autenticados com chave (`x-juridiq-api-key`).


    ## Rate limit


    A API aberta limita **120 requisições a cada 60s por chave**.

    Ao exceder, a resposta é `429 Too Many Requests` com os headers
    `x-ratelimit-limit`, `x-ratelimit-remaining`, `x-ratelimit-reset` e
    `retry-after`.

    Respeite o `retry-after` antes de tentar de novo. Sincronizações em lote
    devem paginar e tratar 429 com backoff.
  version: 1.0.0
servers:
  - url: https://api.juridiq.com.br
    description: Production server
security:
  - apiKeyAuth: []
tags: []
paths:
  /lawSuit/v2/monitoring/queue:
    get:
      tags:
        - Law Suits
      summary: Listar fila de monitoramento
      description: Lista processos na fila de validação do monitoramento.
      parameters:
        - schema:
            type: string
          in: query
          name: processNumber
          required: false
        - schema:
            type: string
          in: query
          name: status
          required: false
      responses:
        '200':
          description: Default Response
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-juridiq-api-key
      description: >-
        Chave de API do escritório (criada no painel). Envie o valor no header
        x-juridiq-api-key. A API aberta aplica rate limit por chave (veja a
        documentação de integradores).

````