# greeneris-data BODACC French Insolvency & Business Gazette Lookup

> greeneris-data BODACC French Insolvency & Business Gazette Lookup is a paid API for AI agents from data.greeneris.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves official French BODACC gazette announcements (insolvency, creation, modification, radiation, etc.) for a company by SIREN number

## Facts

- Endpoint: GET https://data.greeneris.io/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/greeneris-data-bodacc-french-insolvency-business-gazette-lookup-5a77d1fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_afkBgAi9QcHE59VNvf4PH

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 greeneris-data-bodacc-french-insolvency-business-gazette-lookup-5a77d1fb
```

Example prompt: Can you pull the BODACC insolvency announcements for Airbus, SIREN 383474814? Just show me the collective proceedings entries, up to 5 results.

## When to prefer this

Use this endpoint when you need official, government-sourced French legal gazette records for a specific company identified by SIREN — particularly for insolvency screening (famille=collective), account deposit verification, or tracking corporate lifecycle events (creation, modification, radiation). Prefer over generic web search when you need structured, machine-readable data directly from DILA's authoritative BODACC open data. Ideal for automated supplier due diligence, credit risk workflows, or KYB pipelines involving French entities.

## Known failure modes

- Invalid or non-9-digit SIREN returns 400 Bad Request
- Unknown or unregistered SIREN returns empty announcements array with count 0
- HTTP 402 returned before payment — must pay $0.01 USDC on Base via x402 protocol and retry
- Invalid famille enum value returns 400 validation error
- BODACC upstream data unavailable returns 503 or degraded response
- Buyer is never charged for empty or failed answers per service policy

## 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 JSON object with total_count, count, siren, famille filter applied, data source attribution, and an array of up to 20 announcements each containing id, date, type, family, family_code, company name, city, departement, tribunal, legal_form, capital, deposit details, judgment details, and a direct URL to the official BODACC announcement page.

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 2,
  "siren": "383474814",
  "source": "BODACC official gazette via DILA open data (bodacc-datadila.opendatasoft.com, Licence Ouverte); legal-entity announcements only",
  "famille": null,
  "total_count": 47,
  "announcements": [
   {
    "id": "C202600982530",
    "url": "https://www.bodacc.fr/pages/annonces-commerciales-detail/?q.id=id:C202600982530",
    "city": "Blagnac",
    "date": "2026-05-26",
    "type": "Avis initial",
    "siren": "383474814",
    "family": "Dépôts des comptes",
    "capital": null,
    "company": "AIRBUS",
    "deposit": {
     "type": "Comptes annuels et rapports",
     "closing_date": "2025-12-31"
    },
    "judgment": null,
    "tribunal": "Greffe du Tribunal de Commerce de toulouse",
    "legal_form": "Société par actions simplifiée",
    "departement": "31",
    "family_code": "dpc"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/greeneris-data-bodacc-french-insolvency-business-gazette-lookup-5a77d1fb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from data.greeneris.io](https://www.zero.xyz/host/data.greeneris.io/llms.txt)
