# EU TED Public Procurement Notices

> EU TED Public Procurement Notices is a paid API for AI agents from data.greeneris.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves fresh EU public procurement tender notices from TED (Tenders Electronic Daily) filtered by CPV code, buyer country, and lookback window.

## Facts

- Endpoint: GET https://data.greeneris.io/v1/eu/tenders
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eu-ted-public-procurement-notices-eefec743
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Lz7fRmhoeIu3sNJXFL3J-

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-eefec743
```

Example prompt: Can you pull the latest EU public procurement tenders from TED for IT software (CPV code 48000000) in France over the past 7 days — show me up to 10 results with the buyer name, deadline, and notice link?

## When to prefer this

Use this endpoint when you need fresh EU public procurement data from TED without building a direct TED API integration. Ideal for monitoring new business opportunities, competitive intelligence, or compliance workflows involving EU public tenders. Prefer this over direct TED API access for its simplicity, 1-hour cache, and pay-per-call pricing model.

## Known failure modes

- Invalid CPV code format (not 8 digits) — returns 400 or empty results
- Invalid 3-letter country code — returns 400 or empty results
- days_back out of range (>30 or <1) — returns 400
- limit out of range (>25 or <1) — returns 400
- TED upstream API unavailable — returns 503 or stale cached data
- No matching notices found for the given filters — returns empty array
- Payment not completed (x402) — returns 402 Payment Required

## 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 list of up to 25 TED procurement notices, each containing publication number, publication date, tender title, buyer name, tender submission deadline, and a direct URL to the official notice. 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "query": {
   "cpv": "48000000",
   "country": "FRA",
   "published_since": "20260706"
  },
  "source": "TED - Tenders Electronic Daily, Publications Office of the European Union",
  "notices": [
   {
    "url": "https://ted.europa.eu/en/notice/460906-2026",
    "title": "France - Software package and information systems - Accord-cadre titres-restaurant",
    "deadline": "2026-08-10",
    "buyer_name": "OPHIS",
    "publication_date": "2026-07-06",
    "publication_number": "460906-2026"
   }
  ],
  "total_matches": 44
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eu-ted-public-procurement-notices-eefec743/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from data.greeneris.io](https://www.zero.xyz/host/data.greeneris.io/llms.txt)
