# INSEE Sirene French Company Lookup

> INSEE Sirene French Company Lookup is a paid API for AI agents from agentdata-api.sander-van-aard.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Look up or search French companies via the official INSEE Sirene register, returning legal status, form, activity codes, address, and SIRET details.

## Facts

- Endpoint: POST https://agentdata-api.sander-van-aard.workers.dev/fr/company
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/insee-sirene-french-company-lookup-4a8dbb3c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n6VU1i7RWVLev9uqWCXg5

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 insee-sirene-french-company-lookup-4a8dbb3c -d '<json body>'
```

Example prompt: Can you check the official French Sirene register for the company 'Société Générale' and tell me if it's currently active, what its legal form is, its NAF code, and the registered head-office address?

## When to prefer this

Use this endpoint when you need authoritative, government-sourced data on a French company — specifically its legal status, form, activity codes, or registered address. Prefer this over generic business data providers when official INSEE Sirene accuracy is required, such as for compliance, KYB, or due diligence workflows. Note: does not return director or officer data.

## Known failure modes

- Company not found by SIREN — returns empty or not-found response
- Name search returns no candidates if name is too ambiguous or misspelled
- SIREN format invalid — request rejected with validation error
- API unavailable or upstream INSEE service down — returns 5xx error
- Search by name returns up to 5 candidates only; exact match not guaranteed

## How this service works

Official French company check from the INSEE Sirene register (French government open data). Look up by SIREN (exact) or search by name (up to 5 candidates). Returns official legal name, administrative status (active/ceased), legal form and NAF activity codes, company size category, creation/cessation dates, head-office address and SIRET, with a direct link to the official Annuaire des Entreprises. Companies only; no director or officer data.

## Output

Returns the official legal name, administrative status (active or ceased), legal form code, NAF activity code, company size category, creation and cessation dates, head-office address and SIRET number, and a direct link to the Annuaire des Entreprises page — all sourced from the INSEE Sirene register.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "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/insee-sirene-french-company-lookup-4a8dbb3c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdata-api.sander-van-aard.workers.dev](https://www.zero.xyz/host/agentdata-api.sander-van-aard.workers.dev/llms.txt)
