# France INSEE Sirene Company & Establishment Lookup

> France INSEE Sirene Company & Establishment Lookup is a paid API for AI agents from x402-endpoints.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Looks up French legal entities and establishments by SIREN, SIRET, or name against the official INSEE Sirene register, returning legal name, status, NAF/APE code, creation date, headcount, and address.

## Facts

- Endpoint: GET https://x402-endpoints.onrender.com/fr-sirene/lookup
- 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/france-insee-sirene-company-establishment-lookup-afef4540
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a9qkNSFPQze4n7dmlRbDx

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 france-insee-sirene-company-establishment-lookup-afef4540
```

Example prompt: Can you look up 'GOOGLE FRANCE' in the official French Sirene register and give me their legal name, SIREN, NAF/APE code, administrative status, and registered address?

## When to prefer this

Use this endpoint when you need authoritative, government-sourced data on French companies or establishments for KYB, due diligence, or enrichment purposes. Prefer this over third-party business data providers when official INSEE accuracy is required, or when you specifically need NAF/APE codes, headcount bands, or official legal status from the French government register.

## Known failure modes

- SIREN/SIRET not found in Sirene register (no results returned)
- Invalid SIREN format (not 9 digits) or SIRET format (not 14 digits)
- Free-text search matches too many results — refine query or reduce limit
- INSEE Sirene API upstream outage causing timeout or error
- Payment failure via x402 protocol (402 response if USDC payment not processed)

## How this service works

French company/establishment lookup by SIREN, SIRET or name against the official INSEE Sirene register (France) — returns legal name, administrative status, NAF/APE code, creation date, headcount band and registered address. KYB, official France coverage.

## Output

Returns official INSEE Sirene data including legal name, administrative status (active/ceased), NAF/APE activity code, company creation date, employee headcount band, and registered address for each matched French company or establishment.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "q": {
       "type": "string",
       "description": "Free-text / multi-criteria search, e.g. 'denominationUniteLegale:\"GOOGLE FRANCE\"'"
      },
      "limit": {
       "type": "integer",
       "description": "Max results for search [1-100], e.g. 20"
      },
      "siren": {
       "type": "string",
       "description": "9-digit SIREN (legal unit), e.g. '443061841'"
      },
      "siret": {
       "type": "string",
       "description": "14-digit SIRET (establishment), e.g. '44306184100047'"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mode": "siret",
  "cached": false,
  "source": "INSEE Sirene V3.11 (api.insee.fr)",
  "timestamp": "2026-06-25T12:00:00Z",
  "disclaimer": "Indicative data from the INSEE Sirene register, not a compliance opinion.",
  "etablissement": {
   "nic": "00047",
   "siren": "443061841",
   "siret": "44306184100047",
   "adresse": "8 RUE DE LONDRES 75009 PARIS",
   "denomination": "GOOGLE FRANCE",
   "date_creation": "2011-05-13",
   "statut_diffusion": "O",
   "etat_unite_legale": "A",
   "tranche_effectifs": "42",
   "etat_administratif": "A",
   "categorie_juridique": "5499",
   "etablissement_siege": true,
   "activite_principale_naf": "62.02A"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/france-insee-sirene-company-establishment-lookup-afef4540/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-endpoints.onrender.com](https://www.zero.xyz/host/x402-endpoints.onrender.com/llms.txt)
