Search BODACC notices

Search notices

The GET /api/bodacc/annonces endpoint queries the French Official Bulletin of Civil and Commercial Notices: creations, sales, modifications, radiations, collective proceedings and annual accounts filings, in real time after each publication.

curl "https://bodacc.io/api/bodacc/annonces?q=boulangerie&limit=5"

Search parameters

ParameterDescriptionExample
qKeyword in the business name or cityq=dupont
typeavisNotice typetypeavis=A (creation)
familleNotice familyfamille=liquidation
departementDepartment codedepartement=33
villeCity (accent-insensitive)ville=LYON
date_debutPublished from (ISO)date_debut=2026-07-01
date_finPublished until (ISO)date_fin=2026-07-31
sirenFilter by SIREN (registry)siren=123456789
limitNumber of results (1 to 500)limit=50
offsetPagination (0 to 10 000)offset=50

Notice families

Main families: creation, immatriculation, vente, modification, radiation, collective (collective proceedings), conciliation, retablissement, dpc (annual accounts), divers.

# Liquidations this month in department 33
curl "https://bodacc.io/api/bodacc/annonces?famille=collective&departement=33&date_debut=2026-07-01&limit=20"

Pagination and limits

  • limit: between 1 and 500 per request (default 20)
  • offset: up to 10 000 — beyond that, results are deliberately truncated (anti-dump)
  • The total field gives the total number of results; total_estime: true flags an estimate from the PostgreSQL planner (combined text searches) — simple filters (family, department) use exact materialized totals

Reading a response

Each result contains: id, dateparution, numeroannonce, typeavis, typeavis_lib, familleavis, familleavis_lib, numerodepartement, departement_nom_officiel, commercant, ville, cp, tribunal, slug, registre.

Full notice detail (with company and people relations) is available via GET /api/bodacc/annonces/{id}:

curl "https://bodacc.io/api/bodacc/annonces/A2023001_000123"

Complete example

Search for business radiations in Bordeaux over the last 30 days:

curl "https://bodacc.io/api/bodacc/annonces?famille=radiation&ville=bordeaux&date_debut=2026-07-08&limit=50"

Go further

FAQ

A question?

Our team replies quickly. Your request will be sent with the API category.