# Sirenic EU Public Procurement Awards

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

Returns European public-procurement award notices won by a French company, retrieved by SIREN identifier from the EU TED (Tenders Electronic Daily) database

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/entreprise/:siren/marches-publics-ue
- Price: $0.02/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-public-procurement-awards-ed79f162
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kYgLJKGFRj_oVl-xXvYmK

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-public-procurement-awards-ed79f162
```

Example prompt: Can you pull all the EU public procurement award notices won by Airbus, SIREN 383474814, from the TED database — I want to see who the buyers were, what the contracts were for, the amounts, and CPV codes?

## When to prefer this

Use this endpoint when you need EU-level (above-threshold) public procurement data specifically for French companies identified by SIREN/SIRET. It is the right choice for supplier due diligence, competitive intelligence on French firms in the public sector, identifying government buyers, or auditing a company's public contract history within the eForms era (post-October 2023). Prefer this over generic web search when you need structured, machine-readable data directly from the official EU TED source. Note that coverage is ~57% of award notices, so complement with French national procurement sources (e.g. BOAMP/DECP) for complete coverage.

## Known failure modes

- Empty result list — company may have won contracts but notices lack a national identifier (only ~57% coverage); not proof of absence
- Invalid or malformed SIREN (not 9 digits) — request will fail validation
- Company exists but has no above-threshold EU procurement wins since 2023-10-25 — empty list returned
- TED database lag — very recent award notices may not yet be indexed
- SIREN entered with spaces — endpoint handles spaced variants but non-standard formats may fail

## How this service works

European public procurement contract awards won by a French company, from TED (Tenders Electronic Daily, EU Publications Office): government contracts and tenders — buyer, country, subject, notice-level amount, CPV codes, co-winners and official notice link. Identifier-based matching only (SIREN/SIRET incl. spaced variants). Coverage: eForms award notices since 2023-10-25, above EU thresholds; ~57% of award notices carry a usable national identifier — an empty list is not proof of absence.

## Output

A list of EU public procurement award notices (eForms, since 2023-10-25, above EU thresholds) matching the SIREN/SIRET identifier, each containing: contracting authority (buyer) name and country, contract subject/description, notice-level awarded amount, CPV codes, any co-winners, and a direct link to the official TED notice. An empty list indicates no matching notices found in the ~57% of award notices that carry a usable national identifier — absence of results does not prove the company has never won EU contracts.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "siren"
     ],
     "properties": {
      "siren": {
       "type": "string",
       "description": "9-digit SIREN (Luhn-checked; 400 otherwise), e.g. 428634356"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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-public-procurement-awards-ed79f162/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)
