# Sirenic BODACC Legal Announcement Search

> Sirenic BODACC Legal Announcement Search is a paid API for AI agents from api.sirenic.eu, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Search French BODACC official legal announcements by category, date range, and department — covering insolvency, deregistrations, incorporations, sales, and more

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/bodacc/recherche
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sirenic-bodacc-legal-announcement-search-e64ddc0e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C8QRyjcSHtOL0ol2RA0pz

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 sirenic-bodacc-legal-announcement-search-e64ddc0e
```

Example prompt: Can you pull all insolvency proceedings (collective) announced in BODACC for department 59 from 2026-07-28 to 2026-08-04 — I need each company's SIREN, court, and town?

## When to prefer this

Use this endpoint when you need to monitor or search French official legal announcements by category across a time window, rather than looking up a specific company. It is ideal for bulk monitoring of insolvency filings, company creations, deregistrations, or accounts filings across a region or nationally. Prefer it over company-specific lookups when you don't know the target company in advance and want to discover events by type and geography.

## Known failure modes

- Missing required 'famille' parameter returns a validation error
- Missing required 'depuis' parameter returns a validation error
- Date window exceeding 366 days returns an error
- Invalid department code returns a validation error or empty results
- Unknown family code returns a validation error
- No matching announcements for the given criteria returns an empty list
- Network or upstream BODACC unavailability may cause timeouts

## How this service works

Search French BODACC legal announcements by CRITERIA, not by company: pick a family (insolvency proceedings, deregistrations, sales, incorporations, accounts filings, conciliation...), a date window and optionally a department. Answers questions like: which companies entered insolvency proceedings in department 59 this week? Up to 100 announcements, newest first, each with its SIREN, court, town and structured judgment. Sole traders are excluded (their name is personal data) and counted.

## Output

Returns up to 100 BODACC announcements newest-first, each containing the company SIREN, the court handling the matter, the town, structured judgment data, and publication date. Sole traders are excluded for data privacy reasons, but their count is included. Results are filtered by the requested announcement family, date window, and optionally by French department.

## 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",
     "required": [
      "famille",
      "depuis"
     ],
     "properties": {
      "depuis": {
       "type": "string",
       "description": "Start of the publication window, YYYY-MM-DD. Required — there is no unbounded search. Example: 2026-08-04."
      },
      "famille": {
       "type": "string",
       "description": "Announcement family code (closed list, these are the UPSTREAM BODACC codes): dpc (accounts filings, the largest family), modification, creation, radiation, collective (insolvency proceedings), vente, immatriculation, divers, conciliation, retablissement_professionnel. Example: collective."
      },
      "jusqu_a": {
       "type": "string",
       "description": "Optional end of the publication window, YYYY-MM-DD. The window may not exceed 366 days, so a long-lived example should set BOTH bounds. Example: 2026-08-11."
      },
      "departement": {
       "type": "string",
       "description": "Optional French department code: 01-95, 2A, 2B, 971-978. Example: 59 (Nord)."
      }
     }
    }
   },
   "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/sirenic-bodacc-legal-announcement-search-e64ddc0e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.sirenic.eu](https://www.zero.xyz/host/api.sirenic.eu/llms.txt)
