# French Company Annual Accounts & Financial Statements (INPI RNE)

> French Company Annual Accounts & Financial Statements (INPI RNE) is a paid API for AI agents from api.x-402.online, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Returns annual accounts and financial statements (revenue, net income, capital) plus a list of all filed accounts for a French company, sourced from INPI RNE, queried by SIREN number.

## Facts

- Endpoint: GET https://api.x-402.online/v1/fr/bilans
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/french-company-annual-accounts-financial-statements-inpi-rne-20df5bc2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8_VUa3uPUT10okuRJx9oz

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 french-company-annual-accounts-financial-statements-inpi-rne-20df5bc2
```

Example prompt: Can you pull the annual accounts and financial statements for the French company with SIREN 552032534 — I want to see their revenue, net income, and capital figures along with the full list of filed accounts from INPI?

## When to prefer this

Use this endpoint when you need raw financial statement data (revenue, net income, capital) for a specific French company identified by SIREN, especially when sourcing from the authoritative INPI RNE registry. Prefer this over aggregated KYB endpoints when you only need financials, not identity or officer data.

## Known failure modes

- Invalid or malformed SIREN returns a 400 or validation error
- SIREN not found in INPI RNE returns a 404 or empty result
- Missing authentication / payment header returns a 402 Payment Required
- INPI RNE upstream unavailable returns a 503 or timeout
- Company has never filed accounts returns an empty list

## How this service works

French company annual accounts & financial statements (revenue, net income, capital) + list of filed accounts, via INPI RNE (auth-gated source). Query: ?siren=

## Output

A structured response containing the company's annual financial statements (revenue, net income, equity/capital) and a list of all accounts filed with INPI RNE, indexed by fiscal year.

## 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"
    },
    "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/french-company-annual-accounts-financial-statements-inpi-rne-20df5bc2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x-402.online](https://www.zero.xyz/host/api.x-402.online/llms.txt)
