Sirenic
Provides official French and European company data (INSEE Sirene, INPI RNE) for AI agents via pay-per-call USDC on Base, including search, profiles, KYB, sanctions screening, financials, and more.
README
Sirenic Examples
🚀 Sirenic launches on Product Hunt this Wednesday (July 22). Take a look and say hi: https://www.producthunt.com/products/sirenic?launch=sirenic
Working examples for Sirenic — official French and European company data for AI agents. Pay-per-call in USDC via the x402 protocol: no account, no API key — your agent pays each request on Base.
- Landing & pricing: https://api.sirenic.eu
- OpenAPI: https://api.sirenic.eu/openapi.json
- For LLMs: https://api.sirenic.eu/llms.txt
- MCP server:
https://api.sirenic.eu/mcp(streamable HTTP)
Data sources: INSEE Sirene / INPI RNE and other official registers, open
licenses (Etalab 2.0, NLOD, CC-BY 4.0, OGL, CC0). Data is redistributed
as published — every response carries source and disclaimer fields.
Quickstart 1 — see a payment quote (no wallet needed)
curl -i "https://api.sirenic.eu/v1/entreprise/552032534" -H "Accept: application/json"
You get HTTP 402 with the x402 payment requirements (price, USDC contract,
receiving address, network) in the PAYMENT-REQUIRED header and a JSON body.
Quickstart 2 — pay and call in ~10 lines (TypeScript)
npm install @x402/fetch @x402/core @x402/evm viem
import { privateKeyToAccount } from "viem/accounts";
import { wrapFetchWithPayment } from "@x402/fetch";
import { x402Client } from "@x402/core/client";
import { registerExactEvmScheme } from "@x402/evm/exact/client";
const account = privateKeyToAccount(process.env.TEST_WALLET_KEY as `0x${string}`);
const client = new x402Client();
registerExactEvmScheme(client, { signer: account });
const payingFetch = wrapFetchWithPayment(fetch, client);
const res = await payingFetch("https://api.sirenic.eu/v1/entreprise/552032534");
console.log(await res.json()); // paid, settled, delivered
TEST_WALLET_KEY is the private key of your client test wallet (the
payer). The server never holds any key. The exact scheme uses signed
authorizations, so the client pays no gas.
Quickstart 3 — plug into Claude / Cursor (MCP)
Claude Code:
claude mcp add --transport http sirenic https://api.sirenic.eu/mcp
Cursor / any MCP client (mcpServers config):
{ "mcpServers": { "sirenic": { "url": "https://api.sirenic.eu/mcp" } } }
25 tools are exposed (search, company profiles, KYB files, sanctions
screening, financials, capital structure, sector benchmarks, failure-risk
score…). Each tool accepts an optional x_payment parameter:
without it you get the 402 quote; sign it with an x402 client and call again.
Endpoints and prices (USDC per call)
| Endpoint | Price | What you get |
|---|---|---|
GET /v1/recherche?q= |
$0.001 | Search 30M French companies |
GET /v1/entreprise/{siren} |
$0.005 | Full official French profile |
GET /v1/entreprise/{siren}/etablissements |
$0.003 | All establishments (SIRET) |
GET /v1/entreprise/{siren}/alertes |
$0.01 | BODACC legal alerts (insolvency…) |
GET /v1/entreprise/{siren}/finances |
$0.01 | Filed financials + ratios |
GET /v1/entreprise/{siren}/marches-publics |
$0.01 | Public procurement won |
GET /v1/entreprise/{siren}/changements?depuis= |
$0.01 | New BODACC events since a date |
GET /v1/entreprise/{siren}/pi |
$0.03 | Industrial property (trademarks, patents, designs) |
GET /v1/entreprise/{siren}/comptes-pdf |
$0.15 | Accounts annexe notes, AI-extracted (structured) |
GET /v1/entreprise/{siren}/capital |
$0.25 | Ownership from public articles, AI-extracted |
GET /v1/entreprise/{siren}/liens-capitalistiques |
$0.15 | Single-level capital links between legal entities |
GET /v1/entreprise/{siren}/sante |
$0.15 | AI health summary (7-day cache) |
GET /v1/score/defaillance/{siren} |
$0.10 | Failure-risk score (deterministic) |
GET /v1/secteur/{code_naf}/benchmarks |
$0.05 | Sector aggregates (k-anonymised) |
GET /v1/kyb/{siren} |
$0.15 | Full KYB file + sanctions screening |
GET /v1/kyb/batch?sirens= |
$0.105/co | Batch KYB (2–100 companies) |
GET /v1/sanctions/check?name= |
$0.02 | 5 official sanctions lists, scored |
GET /v1/dirigeant/recherche?nom= |
$0.02 | Reverse director search |
GET /v1/prospection?... |
$0.02/page | Multi-criteria prospecting |
GET /v1/rapport/{siren} |
$0.50 | PDF report |
GET /v1/entreprise/{siren}/documents |
$0.02 | List filed documents (INPI) |
GET /v1/documents/{type}/{id} |
$0.10 | Download a filed document (PDF) |
GET /v1/tva/verifier/{numero} |
$0.003 | EU VAT validation (VIES) |
GET /v1/eu/recherche?q= |
$0.003 | Search European registers + GLEIF |
GET /v1/eu/entreprise/{pays}/{id} |
$0.01 | Unified European profile |
Free: GET / (landing), GET /preview/entreprise/55203253400646 (sample
response), GET /openapi.json, GET /llms.txt, GET /healthz.
In this repo
examples/quote.sh— inspect a 402 quote with curl.examples/pay-and-call.ts— pay one request end to end.examples/smoke-test.ts— pay and call every endpoint once (~$1.80 total).examples/agent-demo.ts— a small autonomous agent that searches, pays and reads profiles.examples/mcp-setup.md— MCP configuration for Claude, Cursor and generic clients.tutorial-kyb-agent/— Build a KYB agent in 20 lines.
Test wallet setup
- Create a throwaway wallet (e.g. in MetaMask) and export its private key.
- Fund it with a couple of dollars of USDC on Base (any exchange can withdraw to Base network).
export TEST_WALLET_KEY=0x...— never commit it anywhere.
Sirenic settles on Base mainnet.
Disclaimer
Sirenic redistributes official open data as published (Etalab 2.0 and other open licenses). It does not guarantee accuracy or completeness, and outputs (including sanctions screening and AI summaries) are decision aids — not legal, financial or compliance advice.
License: MIT.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。