# Sirenic French Company Profile by SIREN

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

Returns a full French company profile given a 9-digit SIREN number, including legal name, address, NAF code, officers, VAT number, and more.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/entreprise/:siren
- Price: $0.005/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-profile-by-siren-7e70aa4c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9vV_Po2Nr7VvLg-2DBJE2

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-profile-by-siren-7e70aa4c
```

Example prompt: Can you pull up the full company profile for the French business with SIREN 552 032 534 — I need their legal name, registered address, NAF code, active status, and intra-EU VAT number.

## When to prefer this

Use this endpoint when you have a specific 9-digit SIREN number and need comprehensive structured data about a French company — including officers, VAT number, and active status — in a single call. Prefer this over the search endpoint when the SIREN is already known, and over VIES VAT validation when you need the full company profile rather than just VAT verification.

## Known failure modes

- Invalid or malformed SIREN (not 9 digits) returns a 400 error
- SIREN not found in the French registry returns a 404 error
- Payment not provided or insufficient funds returns a 402 Payment Required
- Rate limiting or server error returns a 429 or 500 error

## How this service works

Full French company profile by SIREN: official company data from the French company registry (INSEE Sirene / INPI RNE). One company lookup returns legal name, legal form, head-office address, NAF code, workforce bracket, creation date, active or ceased status, officers with name and role, collective agreement and the computed intra-EU VAT number. The core KYB building block for verifying a French counterparty: registry facts for due diligence, compliance and onboarding checks.

## Output

A structured JSON object containing the company's legal name, legal form (e.g. SAS, SARL), head-office address, NAF activity code, workforce bracket, creation date, active or ceased status, list of officers with names and roles, applicable collective agreement, and the computed intra-EU VAT number.

## 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",
     "required": [],
     "properties": {
      "geo": {
       "type": "string",
       "description": "Optional; `true` adds latitude/longitude to the `siege` object"
      }
     }
    }
   },
   "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-profile-by-siren-7e70aa4c/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)
