# Sirenic French INPI RNE Document PDF Download

> Sirenic French INPI RNE Document PDF Download is a paid API for AI agents from api.sirenic.eu, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Downloads the original PDF of a filed French legal deed (actes) or annual accounts (bilans) from the INPI RNE registry by document ID.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/documents/:type/:id
- Price: $0.1/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-inpi-rne-document-pdf-download-87dc3123
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WCDp9gYKshredBWFzgyvp

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-inpi-rne-document-pdf-download-87dc3123
```

Example prompt: Can you download the official PDF of the annual accounts filing from INPI for the document ID 6a33ae8b0397b4bf6e0f5118 — it's a bilans type document for a French company I'm doing due diligence on?

## When to prefer this

Use this endpoint when you need the actual original PDF filed at the French INPI RNE registry — not a summary or structured data extract — for a specific document already identified by its ID from the document list endpoint. Ideal for due diligence, legal review, KYB compliance, credit risk assessment, or audit workflows where primary-source evidence is required. Prefer this over structured-data endpoints when you need the raw filing artifact for human review or archiving.

## Known failure modes

- 400 Bad Request if the document type is not exactly 'actes' or 'bilans'
- 400 Bad Request if the document ID is not exactly 24 lowercase hexadecimal characters
- 404 Not Found if the document ID does not exist in the registry
- Registry unavailability or timeout causing failure to stream the PDF
- Payment failure (402) if the x402 payment is not completed before the request

## How this service works

PDF download of official documents from the French INPI RNE registry: retrieve the original filed document by type (actes | bilans) and document ID from the document list endpoint — legal deeds such as statutes and general-meeting minutes, or filed annual accounts. Typical size 1-10 MB, streamed as-is from the registry at request time; response is application/pdf. The primary-source evidence for due diligence on a French company: the actual deed or annual-accounts filing, not a summary.

## Output

A binary PDF file (application/pdf), typically 1–10 MB, streamed directly from the INPI RNE registry. The file is the original filed document — either a legal deed (statutes, general-meeting minutes) if type is 'actes', or an annual accounts filing if type is 'bilans'. No transformation is applied; it is the primary-source registry document.

## 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": [
      "type",
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Document id: exactly 24 lowercase hexadecimal characters, taken from the `id` field of GET /v1/entreprise/{siren}/documents (400 otherwise), e.g. 6a33ae8b0397b4bf6e0f5118"
      },
      "type": {
       "type": "string",
       "description": "Document family: `actes` (legal deeds) or `bilans` (filed annual accounts) — any other value is a 400"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sirenic-french-inpi-rne-document-pdf-download-87dc3123/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)
