# Sirenic French Company Intelligence Report

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

Returns a comprehensive, signed intelligence dossier on a French company identified by its 9-digit SIREN number, covering identity, financials, officers, risk scores, sanctions, procurement, and regulatory registers in a single call.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/intelligence/:siren
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sirenic-french-company-intelligence-report-937b9fa6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DhsscEWzQa6eraLTcqhhx

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-intelligence-report-937b9fa6
```

Example prompt: Pull me the full Sirenic intelligence report for Carrefour, SIREN 652 014 051 — I want their financial trends, officer network, failure-risk score, sanctions status, and all regulatory flags in one go.

## When to prefer this

Choose this endpoint when you need a single, comprehensive, cryptographically signed intelligence file on a French company without stitching together multiple API calls. It is ideal for KYB/due-diligence workflows, compliance screening, investment research, or supplier onboarding where breadth and auditability (Ed25519 signature) matter. Prefer it over individual Sirenic sub-endpoints when you need the full picture in one deterministic, cross-referenced report rather than a specific slice (e.g. procurement-only or sanctions-only).

## Known failure modes

- Invalid or malformed SIREN (not 9 digits) returns a 400 error
- Unknown or unregistered SIREN returns a 404 not found
- Payment failure or missing x402 payment header returns 402 Payment Required
- External data sources (VIES, BODACC, ICPE) temporarily unavailable may cause partial data or 503
- Rate limiting or abuse detection may return 429 Too Many Requests

## How this service works

French company intelligence report for due diligence — ONE call, all blocks cross-referenced: identity, officers with OTHER public offices (network map), financials with multi-year trends, sector benchmarks, failure-risk score, BODACC, sanctions, FR/EU procurement, IP, Seveso/ICPE, AMF, lobbying, Egapro, establishments, INPI filings, live VIES. Closed-list risk signals, rule-based verdict, figures-first executive summary. Ed25519-signed report, provenance per block (official register + as-of).

## Output

A deterministic, Ed25519-signed JSON dossier containing: company identity and legal status, officer profiles with cross-referenced public offices (network map), multi-year financial table with sector benchmarks, failure-risk score, BODACC event history, sanctions screening across 6 lists, FR and EU public procurement contracts, IP filings, ICPE/Seveso industrial-risk classification, AMF register entries, lobbying and Egapro declarations, establishment list, recent INPI filings, live VIES VAT check, and a figures-first executive summary with a rule-based verdict.

## 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 (9 digits, Luhn-checked), 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-intelligence-report-937b9fa6/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)
