# Sirenic French Company Financial Data

> Sirenic French Company Financial Data is a paid API for AI agents from api.sirenic.eu, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns annual financial statements and tax-form line items (liasse fiscale) for a French company identified by SIREN, sourced from INPI and Banque de France filings.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/entreprise/:siren/finances
- Price: $0.01/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-financial-data-98cac6d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qVgtzBGsIGf43Q6YiX4yK

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-financial-data-98cac6d8
```

Example prompt: Pull the annual financial history for French company with SIREN 552032534 — I need revenue, EBITDA, net income, and debt ratio for each fiscal year, plus the latest liasse fiscale line items.

## When to prefer this

Choose this endpoint when you need structured, per-fiscal-year financial metrics and liasse fiscale data for a French company from official sources (INPI/Banque de France). Prefer it over generic business data APIs when you need French-specific regulatory filing data, EBITDA, or detailed tax-form line items. Use the full KYB endpoint if you also need officer, legal identity, and alert data in one call.

## Known failure modes

- Invalid or non-existent SIREN returns a 404 or empty result
- Company has no filed public accounts (e.g. micro-enterprise exemption) — returns empty financials
- INPI data not yet updated for the most recent fiscal year — latest year may be missing
- Non-French company SIREN-format number yields no results
- Payment failure via x402 protocol blocks the request

## How this service works

Financials of a French company (annual accounts filed at INPI, Banque de France ratios): revenue, EBITDA, net income, debt, financial autonomy — ONE row per fiscal year, each graded (qualite: exploitable / a_verifier / non_exploitable, anomalies, doubtful fields); source rows set aside are served in exercices_ecartes with their reason. Consolidated accounts are served apart and graded the same way. Includes the INPI-keyed tax-form line items (up to 20 years) and a perimetre_comptable block.

## Output

A structured dataset with one record per fiscal year containing key P&L and balance sheet metrics (revenue, EBITDA, net income, debt ratio, financial autonomy), derived from INPI filings and Banque de France ratios. Also includes detailed tax-form line items (liasse fiscale) for the most recent 3 publicly available fiscal years, keyed as per the INPI registry.

## 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-financial-data-98cac6d8/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)
