# Sirenic – French Company BODACC Legal Alerts

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

Returns grouped, most-recent-first legal alerts for a French company from the official BODACC gazette, including insolvency proceedings, deregistrations, and business sales.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/entreprise/:siren/alertes
- 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/sirenic-french-company-bodacc-legal-alerts-2ccf3180
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y0uJUM2SsaDVRXsfk3ryZ

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-french-company-bodacc-legal-alerts-2ccf3180
```

Example prompt: Can you pull all the BODACC legal alerts for French company with SIREN 542107651 — I want to know if there are any insolvency proceedings, deregistrations, or business sales on record?

## When to prefer this

Use this endpoint when you need official, gazette-sourced legal event history for a specific French company identified by SIREN — particularly for KYB due diligence, credit risk assessment, or M&A screening. Prefer this over general company search endpoints when the SIREN is already known and the specific need is legal/insolvency alert data rather than full company identity or financial data.

## Known failure modes

- Invalid or malformed SIREN (not 9 digits) returns a 400 or validation error
- SIREN not found in BODACC records returns empty results or 404
- No legal alerts exist for the company returns an empty alerts list
- Payment not completed (x402 protocol failure) blocks the response
- BODACC upstream data source temporarily unavailable may cause 503 or delayed response

## How this service works

Legal alerts for a French company from BODACC, the official French gazette of legal notices: insolvency proceedings (procedures collectives) and related court filings, deregistrations and business sales, grouped and most recent first. Check whether a French company is subject to collective proceedings before you contract — a due diligence, KYB and compliance signal for supplier onboarding and risk monitoring, drawn from official registry data.

## Output

A grouped, chronologically ordered list (most recent first) of official BODACC gazette alerts for the specified company, covering insolvency and collective proceedings (procédures collectives), deregistration notices, and business sale/transfer announcements.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "siren"
     ],
     "properties": {
      "siren": {
       "type": "string",
       "description": "9-digit SIREN (Luhn-checked; 400 otherwise), e.g. 552032534"
      }
     }
    },
    "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/sirenic-french-company-bodacc-legal-alerts-2ccf3180/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)
