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.
| Field | Type | Description |
|---|---|---|
| id | uuid | Unique identifier (UUID) |
| provider_name | string | Provider from which this legal notice was obtained |
| date | date | Publication date of the legal notice |
| source | string | Journal or registry where the notice was published or found. See Sources below. |
| origin | string | Origin of the legal notice data |
| type | string | Type of notice |
| category | string | Category 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). |
| event | string | Event described by the notice |
| text | string | Text content and details of the notice |
| link | string | URL where the original notice can be found |
Sources
| Source | Description |
|---|---|
BODACC A | BODACC bulletin A: registrations, collective procedures, sales and transfers. |
BODACC B | BODACC bulletin B: modifications and strike-offs. |
BODACC C | BODACC bulletin C: filings of annual accounts. |
Observations RNE | Observations 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 INPI | Legacy 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-noticesReturns 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
}
]
}