# Sirenic EU Company Search

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

Search for European companies by name across official registers in Norway, Estonia, Latvia, Denmark, UK, and GLEIF (LEI), returning top 10 matches with country, national ID, and status.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/eu/recherche
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sirenic-eu-company-search-e897963b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gMXbPHcrGaoD2nK2McMni

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-eu-company-search-e897963b
```

Example prompt: Can you search the European company registers for 'Equinor ASA' — check Norway and any other available countries — and tell me its national company ID and current status?

## When to prefer this

Use this endpoint when you need to search for European companies by name across multiple official national registers simultaneously, especially when the user is uncertain which country the company is registered in, or when you need GLEIF/LEI coverage for financial entities and large groups. Prefer this over country-specific endpoints when the target country is unknown or when pan-European coverage is required.

## Known failure modes

- No matches found for the given company name (empty results list)
- Country filter value not recognized (invalid ISO-3166 code)
- Missing required query parameter 'q' (400 error)
- Service temporarily unavailable for a specific national register
- Payment not processed correctly (x402 payment required error)

## How this service works

European company search across official registers: company lookup by name, returning European company data in one unified schema. Norway, Estonia, Latvia and Spain (BORME base, hoja key) are served from local copies; Czechia, Slovakia, Finland, Poland and Switzerland are queried live; Denmark and UK when enabled; plus worldwide GLEIF (LEI) coverage of financial entities and large groups. Top 10 matches with country, national ID, status and a score_confiance (0-1 match confidence).

## Output

Returns top 10 matching companies from official European registers (Norway, Estonia, Latvia, Denmark, UK, GLEIF), each with the company's name, country, national registration ID, and current status.

## 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 to search (required), 2-100 chars once unsupported characters are stripped. Trigram match over the local registers + GLEIF."
      },
      "pays": {
       "type": "string",
       "description": "Optional ISO-3166 alpha-2 country filter: NO, EE, LV, BE, SE, ES, CZ, SK, FI, PL, CH (DK/GB when enabled). FR, DE and NL are refused (400)."
      }
     }
    }
   },
   "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-eu-company-search-e897963b/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)
