# Sirenic French Company Search

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

Search French companies by name or SIREN number, returning up to 10 matches with identity, SIREN, NAF code, city, and status from INSEE Sirene / INPI RNE open data.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/recherche
- Price: $0.002/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-search-7f986956
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ueAsy-UavEWnrFlv7WAza

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-search-7f986956
```

Example prompt: Can you search the French company registry for 'Renault' and show me the top matches with their SIREN numbers, NAF codes, cities, and status?

## When to prefer this

Use this endpoint when you need to quickly identify or find French companies by name or SIREN with basic identity information (name, SIREN, NAF, city, status). Prefer this over the full-profile endpoint when you only need top-level search results rather than detailed company data. Choose this over European company search when you specifically need French (INSEE Sirene) registered entities.

## Known failure modes

- No companies found matching the query — empty results list returned
- Invalid or malformed SIREN number provided — may return no matches or an error
- Query string too short or ambiguous — returns unrelated companies
- Service unavailable or INSEE/INPI upstream data source down — HTTP 5xx error
- Payment not processed — HTTP 402 Payment Required if x402 payment header is missing or invalid

## How this service works

French company search and company lookup by name or SIREN in the official French company registry (INSEE Sirene / INPI RNE open data). Name search returns the top 10 matches with identity, SIREN, NAF code, city and active/ceased status, plus a score_confiance (0-1 match confidence) that helps disambiguate homonyms. The entry point to official data and company data on France: resolve a trading name to its SIREN identifier before pulling the full company profile, filings or financials.

## Output

Returns up to 10 matching French companies, each with their legal name, SIREN number, NAF activity code, registered city, and company status, sourced from official INSEE Sirene and INPI RNE open data.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Company name, or a French identifier — SIREN, SIRET or FR VAT number, spaced or labelled (\"SIREN : 552 032 534\"), resolved directly. Unsupported characters are stripped, not rejected; 400 only if nothing searchable is left (1-100 chars once cleaned up)."
      }
     }
    }
   },
   "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-search-7f986956/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)
