# Sirenic – French Company Official Documents (INPI RNE)

> Sirenic – French Company Official Documents (INPI RNE) is a paid API for AI agents from api.sirenic.eu, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns the list of official documents publicly filed by a French company at the INPI RNE registry, including legal deeds and annual accounts with filing dates and document IDs.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/entreprise/:siren/documents
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sirenic-french-company-official-documents-inpi-rne-4ca4b9f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_inTFkFyrIKHEaOuELMEOf

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 sirenic-french-company-official-documents-inpi-rne-4ca4b9f3
```

Example prompt: Can you pull up the list of official documents filed at the INPI RNE registry for French company with SIREN 552 032 534 — I need to see their legal deeds, statutes, and any annual accounts they've publicly filed?

## When to prefer this

Use this endpoint when you need an authoritative, structured list of all publicly filed legal and accounting documents for a specific French company from the INPI RNE. Prefer this over general web searches when you need document IDs and official filing dates for compliance, KYB, or due diligence workflows. It is distinct from endpoints that return company identity data, officer lists, or financial ratios — this one is specifically about the official document filings themselves.

## Known failure modes

- Invalid or non-existent SIREN returns an error or empty result
- Company has no public documents filed at the RNE — empty list returned
- SIREN is valid but belongs to a natural person whose documents are not public
- Registry data temporarily unavailable — upstream INPI API failure
- Malformed SIREN (not 9 digits) causes validation error

## How this service works

Official filings of a French company at the INPI RNE registry: lists the legal deeds (statutes, general-meeting minutes, mergers...) and filed annual accounts, with filing dates and the document IDs needed to download each PDF from the document endpoint. Only documents the registry publishes are listed. The starting point for document due diligence in France: see which official documents, deeds and annual-account filings exist before paying to download one. Cached 24h.

## Output

A list of publicly available official documents filed by the specified French company at the INPI RNE registry. Each entry includes the document type (e.g. statutes, general-meeting minutes, merger deed, annual accounts), the filing date, and a document ID. Only documents marked as public by the registry are returned. Results are cached for 24 hours.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "siren"
     ],
     "properties": {
      "siren": {
       "type": "string",
       "description": "9-digit SIREN (Luhn-checked; 400 otherwise), e.g. 552032534"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sirenic-french-company-official-documents-inpi-rne-4ca4b9f3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.sirenic.eu](https://www.zero.xyz/host/api.sirenic.eu/llms.txt)
