# EU TED Public Procurement Notices

> EU TED Public Procurement Notices is a paid API for AI agents from x402-datashop-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches fresh EU public procurement tender notices from the official TED (Tenders Electronic Daily) Publications Office API, filterable by CPV code, country, and date range.

## Facts

- Endpoint: GET https://x402-datashop-production.up.railway.app/v1/eu/tenders
- 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/eu-ted-public-procurement-notices-baa8dca1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hCKDbIuEavTDViBDBQHRn

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 eu-ted-public-procurement-notices-baa8dca1
```

Example prompt: Can you pull the latest EU procurement tenders from TED for software and IT services (CPV 48000000) published in France over the last 7 days — show me up to 10 notices with deadlines and links?

## When to prefer this

Use this endpoint when you need official, authoritative EU public procurement notices directly from the TED Publications Office, especially when filtering by CPV product/service classification and buyer country. Prefer it over web scraping or unofficial aggregators for compliance-grade data with notice URLs and structured deadline fields.

## Known failure modes

- Invalid CPV code format returns empty results or error
- Unsupported 3-letter country code may return no results
- days_back exceeding 30 or limit exceeding 25 may be rejected or clamped
- TED upstream API outage causes downstream error
- No notices matching filters returns empty array
- Cache may serve results up to 1 hour old

## How this service works

Fresh EU public procurement notices from TED (Tenders Electronic Daily, official Publications Office API, new notices daily). Query: ?cpv=48000000&country=FRA&days_back=7&limit=10 (cpv = 8-digit CPV code, country = 3-letter buyer country, all optional). Each notice: publication_number, publication_date, title, buyer_name, tender deadline, notice URL. 1h cache.

## Output

Returns a JSON list of up to 25 EU procurement notices, each containing: publication_number, publication_date, notice title, buyer_name, tender submission deadline, and a direct URL to the official TED notice page. Results are cached for 1 hour.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "cpv": {
       "type": "string",
       "description": "8-digit CPV classification code (optional)"
      },
      "limit": {
       "type": "integer",
       "default": 10,
       "description": "Max notices returned, 1-25"
      },
      "country": {
       "type": "string",
       "description": "3-letter buyer country code, e.g. FRA (optional)"
      },
      "days_back": {
       "type": "integer",
       "default": 7,
       "description": "Look-back window in days, 1-30"
      }
     }
    }
   },
   "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/eu-ted-public-procurement-notices-baa8dca1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-datashop-production.up.railway.app](https://www.zero.xyz/host/x402-datashop-production.up.railway.app/llms.txt)
