# Sirenic Batch KYB

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

Fetches full KYB (Know Your Business) files for 2 to 100 French companies in a single API call using comma-separated SIREN numbers.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/kyb/batch
- Price: $0.105/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sirenic-batch-kyb-af96fc96
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VyoeYppFddjKUdc0vT4XS

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-batch-kyb-af96fc96
```

Example prompt: Run a full KYB check on these French companies — SIRENs 552032534, 542107651, 330592911, 775671464 — and give me the complete identity, officers, and compliance alerts for each one.

## When to prefer this

Use this endpoint when you need KYB data for multiple French companies (2–100) and want to minimize API calls and cost (30% discount vs. unit price). Prefer this over single-company KYB when processing prospecting lists, onboarding batches, or portfolio compliance reviews. If you only need one company, use the single-company KYB endpoint instead.

## Known failure modes

- Fewer than 2 or more than 100 SIRENs submitted — request rejected
- Invalid SIREN format (not 9 digits) — validation error
- SIREN exists but company is non-diffusible — returns trouve=false, still billed
- Network timeout on large batches — retry recommended
- Payment failure via x402 — 402 response, no data returned

## How this service works

Batch KYB and bulk company lookup: full Know Your Business files for 2 to 100 French companies in one call (comma-separated sirens parameter) — bulk due diligence, compliance and onboarding screening of a whole portfolio, each file with per-block provenance (official register + as-of date). Billed per company at $0.105 (30% off the $0.15 unit price); the amount is quoted from the number of SIREN. A SIREN with no diffusible company is returned as trouve=false and billed as one lookup.

## Output

Returns an array of KYB records, one per SIREN submitted. Each record includes full company identity, legal form, officers, BODACC alerts, financial indicators, and a trouve flag (true/false) indicating whether diffusible data exists. Non-diffusible SIRENs return trouve=false and are still billed as one lookup each.

## 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": [
      "sirens"
     ],
     "properties": {
      "sirens": {
       "type": "string",
       "description": "Comma-separated 9-digit SIRENs, 2 to 100 (Luhn-checked, deduplicated); billed per requested SIREN. Billed PER COMPANY: the signed quote is $0.105 x the number of SIRENs (2-100)."
      }
     }
    }
   },
   "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-batch-kyb-af96fc96/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)
