# BODACC French Company Insolvency & Event Lookup

> BODACC French Company Insolvency & Event Lookup is a paid API for AI agents from api.invoket.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Retrieves official BODACC gazette announcements (insolvency, deregistration, business-sale) for a French company by SIREN number to support credit and invoicing risk checks.

## Facts

- Endpoint: POST https://api.invoket.com/company/events
- Price: $0.001/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-company-insolvency-event-lookup-6fc24275
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7q20lpoIaVZtG1VSsecHz

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-company-insolvency-event-lookup-6fc24275 -d '<json body>'
```

Example prompt: Before I invoice Dupont Industries (SIREN 123456789), can you check if they have any official insolvency, deregistration, or business-sale announcements on BODACC?

## When to prefer this

Use this endpoint when you need to perform a pre-invoicing or pre-credit risk check on a French company and require official gazette-sourced insolvency or deregistration data. Prefer this over general company registry lookups when the specific concern is legal proceedings, liquidation, or formal business dissolution recorded in the BODACC. Ideal for accounts-payable automation, supplier onboarding, and credit risk workflows involving French entities.

## Known failure modes

- Invalid or malformed SIREN number returns an error or empty result
- SIREN not found in BODACC records returns an empty list (which is a valid paid answer)
- Payment not included or insufficient triggers a 402 Payment Required response
- Rate limiting or upstream BODACC data unavailability may cause transient errors

## How this service works

The checks your agent runs before it acts: verify a bank account, a phone number, a law in force, the weather or a vehicle — computed from official sources, with provenance in every response. You only pay for answers.

## Output

A dated event timeline of official BODACC gazette announcements for the specified company — including insolvency proceedings, deregistration notices, and business-sale events — along with factual flags. An empty list is a valid, paid response indicating no known announcements exist for that company within the covered window.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "siren",
  "family"
 ],
 "properties": {
  "siren": {
   "type": "string",
   "description": "9-digit SIREN of the legal unit (required). Malformed input is a 400 (INVALID_INPUT), a failed Luhn checksum is a 400 (INVALID_CHECKSUM, likely a typo). There is no 404: BODACC knows announcements, not companies - a well-formed SIREN with no announcement is a successful empty timeline (200, billed)"
  },
  "family": {
   "type": "string",
   "description": "Optional filter on the served view: 'insolvency' (collective proceedings: safeguard, receivership, liquidation), 'deregistration' or 'sale' (business sales and transfers). Default serves all families. The filter narrows events[], never the flags - facts are derived from the complete timeline"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bodacc-french-company-insolvency-event-lookup-6fc24275/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.invoket.com](https://www.zero.xyz/host/api.invoket.com/llms.txt)
