# BODACC French Legal Announcements Search

> BODACC French Legal Announcements Search is a paid API for AI agents from x402-endpoints.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Searches the official French BODACC registry (DILA) for company legal announcements including incorporations, modifications, radiations, and insolvencies by company name, SIREN, or RCS number.

## Facts

- Endpoint: GET https://x402-endpoints.onrender.com/bodacc/annonces
- Price: $0.01/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-legal-announcements-search-540f53aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9DQ9WaaNE7zPTlww1iy0n

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-legal-announcements-search-540f53aa
```

Example prompt: Can you search the BODACC French legal registry for any announcements about OVH — I want to see up to 20 results, including any modifications or insolvency notices.

## When to prefer this

Use this endpoint when you need official, government-sourced French company legal announcement data from the BODACC registry, particularly for due diligence, compliance checks, insolvency verification, or corporate research on French entities. Prefer this over generic business lookup APIs when you specifically need official French gazette announcements (creation, modification, radiation, collective proceedings).

## Known failure modes

- No results found for the given company name or SIREN — returns empty list
- Invalid or malformed SIREN number — may return no results or error
- DILA/BODACC upstream API unavailable — service error
- Query too broad returns too many results — use limit parameter to constrain
- Invalid famille filter value — rejected with validation error

## How this service works

Search the official French BODACC registry (DILA) for company legal announcements: incorporations, modifications, radiations and insolvencies — coverage France, by name, SIREN or RCS.

## Output

A list of official BODACC legal announcements for the matched company, including announcement type (creation, modification, radiation, depot, collective proceedings), dates, and relevant company identifiers such as SIREN and RCS numbers.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Company name, SIREN or RCS, e.g. 'OVH' or '424761419'"
      },
      "limit": {
       "type": "integer",
       "description": "Max announcements [1-100], e.g. 10"
      },
      "famille": {
       "type": "string",
       "description": "Optional: creation | modification | radiation | depot | collective"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "query": "OVH",
  "cached": false,
  "source": "BODACC — DILA via OpenDataSoft (bodacc-datadila.opendatasoft.com)",
  "famille": "creation",
  "annonces": [
   {
    "id": "A202300012345",
    "url": "https://www.bodacc.fr/annonce/detail/A202300012345",
    "type": "Annonce",
    "ville": "ROUBAIX",
    "famille": "Avis de création d'établissement",
    "jugement": null,
    "registre": [
     "424 761 419 RCS Lille Métropole"
    ],
    "tribunal": "Lille Métropole",
    "commercant": "OVH SAS",
    "departement": "Nord",
    "date_parution": "2023-05-12"
   }
  ],
  "timestamp": "2026-06-24T15:00:00Z",
  "disclaimer": "Indicative data from BODACC (DILA), not legal advice.",
  "total_count": 12
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bodacc-french-legal-announcements-search-540f53aa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-endpoints.onrender.com](https://www.zero.xyz/host/x402-endpoints.onrender.com/llms.txt)
