# LitigioBR — Brazilian Company Litigation API

> LitigioBR — Brazilian Company Litigation API is a free API for AI agents from 137-131-197-57.sslip.io, callable via x402, Free, status unknown (last checked 2026-09-13).

Returns a litigation profile for any Brazilian company (PJ), including active lawsuit counts, filing acceleration signals, execution proceedings, and detected rulings, sourced from DJEN/CNJ and DataJud.

## Facts

- Endpoint: GET https://137-131-197-57.sslip.io/v1/litigio/ALDEN%204
- Price: Free
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/litigiobr-brazilian-company-litigation-api-df980760
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z8aQ2ecOw168OSG05xH_O

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability litigiobr-brazilian-company-litigation-api-df980760
```

Example prompt: Can you pull the litigation profile for 'MRV Engenharia' in Brazil — I want to know how many active lawsuits they have, whether filings have been accelerating in the past year, and if there are any execution proceedings or notable rulings?

## When to prefer this

Use this endpoint when you need a quick, structured litigation risk profile for a Brazilian legal entity (PJ) without building a CNJ/DataJud integration yourself. It is ideal for due diligence workflows, supplier/partner risk screening, and investment evaluation where Brazilian court exposure is a concern. Prefer this over manual CNJ portal searches when you need structured, machine-readable output. Not suitable for querying natural persons or for jurisdictions outside Brazil.

## Known failure modes

- Company name not found in CNJ/DataJud — returns empty or zero results if the name has no match
- Natural persons (CPF holders) queried instead of legal entities (CNPJ) — endpoint does not serve individuals
- Ambiguous or partial company name may return multiple or incorrect matches in razoes_sociais_encontradas
- DataJud/DJEN source data may have coverage gaps for certain tribunals or very recent filings
- Network or upstream CNJ API unavailability causing timeout or error response

## How this service works

Free x402 API: litigation profile of any Brazilian company (PJ) from official public sources (DJEN/CNJ + DataJud). Lawssuit counts, filing acceleration, execution signals, detected rulings. USDC on Base, amount 0 — payment is the handshake, data is free.

## Output

Returns a JSON object with: total active lawsuit count, number of lawsuits filed in the last 12 months, count of execution/enforcement proceedings, an array of litigation signals (e.g. filing acceleration alerts), a list of matched corporate names (razões sociais), and an array of individual process records each containing the lawsuit class, tribunal name, CNJ process number, filing date, and any detected ruling/sentence.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "method",
    "pathParams"
   ],
   "properties": {
    "method": {
     "type": "string",
     "const": "GET"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "nome"
     ],
     "properties": {
      "nome": {
       "type": "string",
       "description": "Brazilian company name (razão social or distinctive part, e.g. 'MRV ENGENHARIA'). Companies (PJ) only — natural persons are not served."
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "sinais": {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    "consulta": {
     "type": "string"
    },
    "cobertura": {
     "type": "object"
    },
    "processos": {
     "type": "array",
     "items": {
      "type": "object",
      "properties": {
       "classe": {
        "type": "string"
       },
       "tribunal": {
        "type": "string"
       },
       "numero_cnj": {
        "type": "string"
       },
       "ajuizamento": {
        "type": "string"
       },
       "sentenca_detectada": {
        "type": "string"
       }
      }
     }
    },
    "ajuizados_ultimos_12m": {
     "type": "integer"
    },
    "execucoes_cumprimentos": {
     "type": "integer"
    },
    "total_processos_ativos": {
     "type": "integer"
    },
    "razoes_sociais_encontradas": {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "sinais": [
  "aceleracao_ajuizamento_12m (7 vs 1)"
 ],
 "consulta": "ALDEN 4",
 "processos": [
  {
   "classe": "Procedimento Comum Cível",
   "tribunal": "TJSP",
   "numero_cnj": "4008284-39.2025.8.26.0361",
   "sentenca_detectada": "parcialmente procedentes"
  }
 ],
 "ajuizados_ultimos_12m": 7,
 "total_processos_ativos": 8
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/litigiobr-brazilian-company-litigation-api-df980760/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 137-131-197-57.sslip.io](https://www.zero.xyz/host/137-131-197-57.sslip.io/llms.txt)
