# 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-15).

Returns the litigation profile of any Brazilian company (PJ) including active lawsuit counts, filing trends, execution signals, and detected rulings from official DJEN/CNJ and DataJud sources.

## Facts

- Endpoint: GET https://137-131-197-57.sslip.io/v1/cnpj/32027015000130
- Price: Free
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/litigiobr-brazilian-company-litigation-api-7368439d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cYEuC1FjtgNybRC1bAjkv

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-7368439d
```

Example prompt: Can you pull the litigation profile for MRV Engenharia from the Brazilian court records — I want to see how many active lawsuits they have, how many were filed in the last 12 months, and whether there are any enforcement or execution signals?

## When to prefer this

Choose this endpoint when you need a quick, free litigation profile for a Brazilian legal entity (PJ) sourced from official public court records (DJEN/CNJ and DataJud). It is ideal for due diligence, supplier screening, investment risk assessment, or compliance workflows involving Brazilian companies. Prefer this over generic web search when you need structured, quantitative lawsuit data (counts, acceleration, execution signals) rather than news articles. Not suitable for individual persons (CPF) or non-Brazilian companies.

## Known failure modes

- Company name not found in DataJud/DJEN — returns empty results or zero counts
- Ambiguous company name matching multiple entities — returns multiple razões sociais
- Natural persons (CPF holders) are not served — endpoint only covers legal entities (PJ)
- Rate limiting or source unavailability may return incomplete data
- Sslip.io dynamic IP hostname may have intermittent SSL or routing issues

## 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 lawsuits, lawsuits filed in the last 12 months, execution/enforcement case counts, an array of detected litigation signals (e.g. 'volume_execucoes_relevante'), an array of individual case objects with class, tribunal, CNJ number, filing date, and detected ruling text, found company razão social variants, and a coverage object describing data scope.

## 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": [
  "volume_execucoes_relevante (120/813)"
 ],
 "consulta": "32027015000130",
 "processos": [
  {
   "classe": "Procedimento Comum Cível",
   "tribunal": "TJSP",
   "numero_cnj": "0000000-00.0000.0.00.0000",
   "sentenca_detectada": "procedentes"
  }
 ],
 "ajuizados_ultimos_12m": 245,
 "total_processos_ativos": 813
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/litigiobr-brazilian-company-litigation-api-7368439d/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)
