# Sirenic Industrial Risk Profile (ICPE/Géorisques)

> Sirenic Industrial Risk Profile (ICPE/Géorisques) 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 the industrial-risk profile of a French company from the official ICPE register, including Seveso classification, authorisation regime, IED flag, and nomenclature rubrics per SIREN.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/entreprise/:siren/risques-industriels
- 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-industrial-risk-profile-icpe-g-orisques-4b90b66e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZXyT95e_434odKFiqwPi8

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-industrial-risk-profile-icpe-g-orisques-4b90b66e
```

Example prompt: Can you check the industrial risk profile for French company with SIREN 542107651 — I need to know if they have any Seveso-classified facilities and what their ICPE status is?

## When to prefer this

Choose this endpoint when you need official French government ICPE data on industrial hazard classification for a specific company by SIREN. It is the authoritative source for Seveso status and environmental compliance screening, superior to generic company data APIs that omit regulatory risk. Use it for KYB due diligence, ESG screening, insurance underwriting, or supply-chain risk workflows involving French entities.

## Known failure modes

- Invalid SIREN (not 9 digits) returns a 400 validation error
- Unknown SIREN not found in ICPE register returns 'aucun' level with 200 (not an error)
- Payment failure via x402 returns 402 before data is delivered
- Géorisques/DGPR upstream unavailability may return 503
- Transient network timeouts on the upstream register fetch

## How this service works

Industrial risk and environment profile of a French company from the official ICPE register (Géorisques/DGPR): classified facilities with Seveso status (upper/lower tier), authorisation regime, activity state, IED flag, nomenclature rubrics and a risk synthesis per SIREN — an ESG and environmental compliance signal on hazardous sites operated by the company. A company with no classified facility returns level aucun (still 200) — the clean answer is the signal.

## Output

A structured JSON response containing: overall risk synthesis level (e.g. 'aucun', 'bas', 'seveso_seuil_haut'), list of classified ICPE facilities with their activity state, Seveso tier (upper/lower), authorisation regime, IED flag, and the specific nomenclature rubrics. Companies with no classified facility return level 'aucun' with HTTP 200.

## 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), e.g. 095580841 (TEREGA, 6 classified sites)"
      }
     }
    },
    "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-industrial-risk-profile-icpe-g-orisques-4b90b66e/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)
