# French Company Insolvency Procedures Check (BODACC)

> French Company Insolvency Procedures Check (BODACC) is a paid API for AI agents from api.x-402.online, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns the insolvency status of a French company (sauvegarde, redressement, liquidation judiciaire) based on official BODACC court announcements, including judgment history and RCS deregistration flag.

## Facts

- Endpoint: GET https://api.x-402.online/v1/fr/procedures-collectives
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/french-company-insolvency-procedures-check-bodacc-7e63e0c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O15vHsl4jmE6etuQd4fXE

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 french-company-insolvency-procedures-check-bodacc-7e63e0c7
```

Example prompt: Before we sign the contract with our French supplier, can you check if SIREN 552 032 534 is currently in any insolvency proceedings — sauvegarde, redressement, or liquidation judiciaire — and whether they've been deregistered from the RCS?

## When to prefer this

Use this endpoint when you need official, court-sourced insolvency data for a French company before a B2B contract, supplier onboarding, credit decision, or KYB workflow. Prefer this over the LITE score-entreprise endpoint when you need the full judgment history and RCS deregistration flag rather than just an insolvency count. Choose this over generic company data APIs when the specific legal insolvency status under French law (sauvegarde, redressement, liquidation judiciaire) is the key risk signal needed.

## Known failure modes

- Invalid or non-existent SIREN returns a 404 or empty result
- SIREN for a non-French company returns no data
- BODACC data lag may mean very recent rulings (last 24-48h) are not yet reflected
- Missing siren query parameter results in a 400 bad request
- Foreign company identifiers (VAT, SIRET suffix) not accepted — only 9-digit SIREN

## How this service works

Is this French company in insolvency proceedings (sauvegarde, redressement, liquidation judiciaire)? Official BODACC court announcements: synthetic status, full judgment history, RCS deregistration flag. The #1 B2B check before signing. Query: ?siren=

## Output

Returns a synthetic insolvency status (active/under procedure/deregistered), the type of collective procedure if any (sauvegarde, redressement judiciaire, liquidation judiciaire), a full chronological history of BODACC court judgments, and a boolean flag indicating RCS deregistration. Provides a clear go/no-go signal for B2B contract signing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/french-company-insolvency-procedures-check-bodacc-7e63e0c7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x-402.online](https://www.zero.xyz/host/api.x-402.online/llms.txt)
