# Sirenic French E-Invoice Preparation

> Sirenic French E-Invoice Preparation 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 all data needed to prepare a compliant French e-invoice for a company identified by SIREN, including legal identity, VAT number, SIRET establishments, NAF code, and indicative 2026 mandate obligation dates.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/entreprise/:siren/facturation-prep
- 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-e-invoice-preparation-a5731bc4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R44Q-EAPmY-hWeBROXO_7

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-e-invoice-preparation-a5731bc4
```

Example prompt: I need to prepare a compliant French e-invoice for the company with SIREN 552032534 — can you pull their legal name, VAT number, SIRET establishments, NAF code, and their 2026 mandate obligation dates?

## When to prefer this

Use this endpoint when you need to assemble all the legally required fields to prepare a French B2B e-invoice compliant with the September 2026 French mandate, and you only have a SIREN. It is the right choice when you need VAT number, SIRET, legal form, NAF code, and obligation timeline in a single call. Do not use it if you need to actually submit or route invoices (that requires an accredited PDP platform), access the central Chorus Pro directory, or verify real-time VAT validity independently.

## Known failure modes

- Invalid or non-existent SIREN (9 digits required) returns a 404 or validation error
- Company dissolved or struck off may return limited or flagged data
- VIES lookup temporarily unavailable may result in partial VAT data
- Rate limiting or payment failure returns 402 Payment Required
- Network timeout on INSEE upstream returns 503

## How this service works

Supplier onboarding: PREPARE a compliant French e-invoice under the e-invoicing mandate France September 2026 (reception obligatory for every VAT-liable company; issuance phased GE/ETI 2026, SME 2027): legal name & form, status, computed intra-EU VAT number (with VIES pointer), establishments (SIRET) with addresses, NAF code, indicative obligation dates. Preparation only - Sirenic is not an accredited platform (PDP), never accesses the central directory and never issues or routes invoices.

## Output

A structured JSON response containing the company's legal name and form, current status, computed intra-EU VAT number with VIES reference, list of SIRET establishments with full addresses, NAF activity code, INSEE size category, and indicative dates for when the French e-invoicing mandate applies to this entity. This is preparation data only — no invoice is issued or routed.

## 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, 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-e-invoice-preparation-a5731bc4/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)
