Skip to main content

Legal Notice

Legal notices are publications made to a journal empowered to publish legal advertisements. They usually publicize events such as the creation or removal of a company or of its headquarters, changes in leadership or ownership, and so on...

The Legal Notices' entire history is synchronized regardless of the current month_history setting.

FieldTypeDescription
iduuidUnique identifier (UUID)
provider_namestringProvider from which this legal notice was obtained
datedatePublication date of the legal notice
sourcestringJournal or registry where the notice was published or found. See Sources below.
originstringOrigin of the legal notice data
typestringType of notice
categorystringCategory of the legal notice. For BODACC collective procedure announcements and observations describing a procedure, this is the procedure category (same taxonomy as the collective procedure category field, e.g. Redressement judiciaire, Radiation). Administrative mentions (BODACC B and RNE/INPI observations) carry an administrative category instead: Perte de la moitié du capital, Reconstitution des capitaux propres, Transfert de siège, Domiciliation, Fusion / Scission / TUP, Dissolution, Modification du capital, Location-gérance, Cessation d'activité, Immatriculation, Dirigeants. null when the text carries neither (e.g. miscellaneous registry mentions).
eventstringEvent described by the notice
textstringText content and details of the notice
linkstringURL where the original notice can be found

Sources

SourceDescription
BODACC ABODACC bulletin A: registrations, collective procedures, sales and transfers.
BODACC BBODACC bulletin B: modifications and strike-offs.
BODACC CBODACC bulletin C: filings of annual accounts.
Observations RNEObservations recorded in the Registre National des Entreprises (RNE, maintained by the INPI). These are typically available within 1 to 2 business days after the registry entry, well before the corresponding BODACC publication (usually about a week later). For these notices, type is observation and link is null; when available, the registry date is appended to text as Date greffe: YYYY-MM-DD.
Observations INPILegacy observations from the RNCS registry, which was replaced by the RNE in 2023 and is no longer updated. Kept for history; new observations arrive with the Observations RNE source.

Endpoints

GET/api/v6/users/{userId}/legal-notices

Returns the list of legal notices published for the user's company.

Response:

{
"total": 0,
"per_page": 0,
"current_page": 0,
"last_page": 0,
"result": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"provider_name": "company_legal_fr",
"date": "2021-05-19",
"source": "BODACC A",
"origin": "RCS",
"type": "creation",
"category": "compulsory",
"event": "Immatriculation d'une personne morale",
"text": "...",
"link": "https://..."
},
{
"id": "3f2b1c9a-7d64-4e08-9a51-2f8d0c1e6b47",
"provider_name": "company_legal_fr",
"date": "2026-02-05",
"source": "Observations RNE",
"origin": null,
"type": "observation",
"category": "Sauvegarde",
"event": "Ajout",
"text": "Procédure de sauvegarde - jugement d'ouverture en date du 04/02/2026\nDate greffe: 2026-02-05",
"link": null
}
]
}