# Sirenic Business Health Summary

> Sirenic Business Health Summary is a paid API for AI agents from api.sirenic.eu, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Returns an AI-generated natural-language health assessment of a French company (in French), covering strengths, warning signs, activity trend, and confidence level, synthesized by Claude from official data sources.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/entreprise/:siren/sante
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sirenic-business-health-summary-6e580746
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZGmP5pO6egC3J0eLOmJGL

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-business-health-summary-6e580746
```

Example prompt: Can you give me an AI-generated health summary in French for the company with SIREN 552032534 — I want to know its strengths, any warning signs, the activity trend, and how confident the assessment is?

## When to prefer this

Choose this endpoint when you need a fast, readable, AI-synthesized business health assessment of a French company in natural language — especially when the consumer is a non-technical user or agent that needs a holistic narrative rather than raw structured data. Prefer this over raw data endpoints when you want strengths/risks/trend already interpreted and confidence-scored. The 7-day cache makes it cost-efficient for repeated checks on the same company. Not ideal when you need real-time data, granular financial figures, or structured JSON fields for downstream computation.

## Known failure modes

- Invalid or non-9-digit SIREN returns a 400 or validation error
- Unknown or unregistered SIREN returns a 404 not found
- Insufficient official data for the company may result in a low-confidence or incomplete summary
- Payment failure (x402 protocol) blocks the response
- Temporary unavailability of upstream official data sources may delay or degrade the response
- Cached response may be up to 7 days old, potentially missing very recent developments

## How this service works

Company health check for a French company: a bilingual risk read-out — verdict, strengths, warning signs, activity trend and confidence level — from official data only (identity, BODACC alerts, filed financials, sanctions screening). A model fills a closed evaluation grid; every figure, date and sentence is assembled by Sirenic, and guards overrule it when the accounts disagree. Entities filing no accounts get an explicit no-conclusion verdict. For KYB and due diligence. Cached 7 days.

## Output

A cached (7-day) AI-generated natural-language report in French covering: the company's business strengths, warning signs or risk indicators, activity trend (growing, stable, declining), and an overall confidence level. All content is synthesized by Claude exclusively from official sources: SIREN identity data, BODACC gazette alerts, filed financial statements, and sanctions screening results.

## 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-business-health-summary-6e580746/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)
