# BODACC French Insolvency Check by SIREN

> BODACC French Insolvency Check by SIREN is a paid API for AI agents from agentdata-api.sander-van-aard.workers.dev, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Checks a French company's SIREN number against the BODACC official bulletin for collective insolvency proceedings (sauvegarde, redressement, liquidation judiciaire), conciliation, and professional recovery announcements since 2008.

## Facts

- Endpoint: POST https://agentdata-api.sander-van-aard.workers.dev/fr/insolvency
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bodacc-french-insolvency-check-by-siren-141f683c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HeCvYkHsvNooDr4zo-asO

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 bodacc-french-insolvency-check-by-siren-141f683c -d '<json body>'
```

Example prompt: Can you check whether French company with SIREN 542107651 has any insolvency proceedings listed on BODACC — I need to know if there's a liquidation, redressement, or sauvegarde on record before we sign a contract with them.

## When to prefer this

Use this endpoint when you need to verify the insolvency status of a French company using its official SIREN identifier against the authoritative government source (BODACC/DILA). Prefer this over generic business data providers when legal precision and official government data sourcing matter — e.g. for KYB due diligence, supplier risk screening, or contract counterparty checks. Note it only covers collective proceedings published since 2008 and applies to companies only, not individual traders.

## Known failure modes

- SIREN not found in BODACC (no_match) — not an error but means no record in post-2008 dataset
- Invalid SIREN format — validation error returned
- Upstream DILA/BODACC API unavailable — 5xx error
- Payment not settled — 402 Payment Required before data is returned
- Non-company entity (individual/sole trader) passed — endpoint covers companies only

## How this service works

French insolvency check against BODACC, the official bulletin of civil and commercial announcements (DILA open data). Searches collective procedures (sauvegarde, redressement, liquidation judiciaire), conciliation and professional recovery announcements by SIREN. Returns judgment nature and date, court, publication date and a direct BODACC link per announcement. A no_match means no publication in the searchable set (since 2008) — no historical clearance. Companies only.

## Output

Returns a list of BODACC insolvency announcements for the given SIREN, each including the type of collective procedure (e.g. sauvegarde, redressement judiciaire, liquidation judiciaire, conciliation), the judgment nature and date, the competent court, the BODACC publication date, and a direct link to the announcement. A no_match result means no insolvency publication was found in the searchable dataset (covering announcements since 2008), which does not constitute a historical clearance.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "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/bodacc-french-insolvency-check-by-siren-141f683c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdata-api.sander-van-aard.workers.dev](https://www.zero.xyz/host/agentdata-api.sander-van-aard.workers.dev/llms.txt)
