# BODACC French Official Gazette Announcements by SIREN

> BODACC French Official Gazette Announcements by SIREN is a paid API for AI agents from x402-datashop-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns legal announcements from the French BODACC official gazette for a given company identified by its 9-digit SIREN number, with optional filtering by announcement family (e.g. insolvency proceedings).

## Facts

- Endpoint: GET https://x402-datashop-production.up.railway.app/v1/fr/bodacc
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bodacc-french-official-gazette-announcements-by-siren-a6f296f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vifYs2CKRD80DeHi0-aCU

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-official-gazette-announcements-by-siren-a6f296f9
```

Example prompt: Can you pull the BODACC legal announcements for French company with SIREN 383474814 — specifically any insolvency or collective proceedings, up to 10 results?

## When to prefer this

Use this endpoint when you need structured, GDPR-safe legal announcement data from the authoritative French official gazette (BODACC) for a specific company identified by SIREN. Prefer this over general web search when you need machine-readable, sourced, daily-updated insolvency or legal event data for French due diligence workflows. Ideal when you already have the SIREN and need to check legal health or monitor for collective proceedings.

## Known failure modes

- Invalid or non-Luhn-valid SIREN returns a validation error
- SIREN does not correspond to a legal entity (natural persons rejected for GDPR)
- No announcements found for a valid SIREN returns empty list (not an error — clean record signal)
- Invalid famille enum value returns a 400 error
- limit out of range (must be 1–20) returns a validation error
- Upstream DILA data temporarily unavailable returns a 503 or timeout

## How this service works

Legal announcements from the French BODACC official gazette for one company, by SIREN (Luhn-validated). Query: ?siren=383474814 (required), famille=collective for insolvency proceedings (optional filter), limit=10 (1-20). Returns newest-first announcements with family, tribunal, judgment nature and date, and source URL; legal entities only (GDPR-safe). Zero announcements for a valid SIREN is a clean-record signal. Source: DILA open data, daily publications. Cached 1h.

## Output

A list of legal announcements from the BODACC official gazette, ordered newest-first, each including the announcement family (e.g. collective proceedings, creation, modification), the tribunal involved, the nature of the judgment, the date, and a URL to the source publication. An empty list for a valid SIREN indicates a clean legal record.

## 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": [
      "siren"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "description": "Max announcements, 1-20 (default 10)"
      },
      "siren": {
       "type": "string",
       "description": "9-digit French SIREN company id"
      },
      "famille": {
       "enum": [
        "collective",
        "conciliation",
        "creation",
        "divers",
        "dpc",
        "immatriculation",
        "modification",
        "radiation",
        "retablissement_professionnel",
        "vente"
       ],
       "type": "string",
       "description": "Announcement family filter ('collective' = insolvency proceedings)"
      }
     }
    }
   },
   "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-official-gazette-announcements-by-siren-a6f296f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-datashop-production.up.railway.app](https://www.zero.xyz/host/x402-datashop-production.up.railway.app/llms.txt)
