# EU Tenders Search (TED Europa)

> EU Tenders Search (TED Europa) is a paid API for AI agents from store.agentexchange.work, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Search European Union public procurement tenders by keyword/sector with configurable time window, returning matching notices from TED (Tenders Electronic Daily).

## Facts

- Endpoint: GET https://store.agentexchange.work/intel/eu-tenders
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eu-tenders-search-ted-europa-922d45a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ngjya9Q1e0fJEy_65pRiZ

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-tenders-search-ted-europa-922d45a4
```

Example prompt: Search EU public procurement tenders on TED Europa for 'cybersecurity' over the last 6 months and show me the most recent notices with their titles, countries, and links.

## When to prefer this

Use this endpoint when you need to discover EU public procurement opportunities from the official TED (Tenders Electronic Daily) database, especially for competitive intelligence, business development in European public sector markets, or monitoring government contract activity by sector. It requires no API key and pays per call in USDC via x402, making it ideal for autonomous AI agents.

## Known failure modes

- Missing required 'q' parameter returns a 400 error
- Payment not provided or insufficient USDC triggers 402 Payment Required
- No tenders found for the keyword returns empty tenders array with count 0
- Invalid 'months' value outside 1-24 range may return an error or be clamped to defaults
- TED upstream unavailability may cause 503 or timeout

## How this service works

The overseas opportunity layer: search live EU public procurement tenders by keyword/sector from the official EU TED (Tenders Electronic Daily) database — title, country, publication date, and notice link, recent-first, with a total-match count. Covers all 27 EU member states' public contracts. For sales, BD, research and prospecting agents (and humans) targeting European government & public-sector spend — a market almost nobody packages for agents. Free official upstream, pure margin.

## Output

Returns a JSON object with a count of returned tenders, the query string, a list of tender notices (each with an ID, title, country code, publication date, and direct TED Europa URL), total_matches across the full dataset, and the lookback window in months.

## 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": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Keyword/sector, e.g. 'cybersecurity', 'cloud', 'construction'"
      },
      "months": {
       "type": "number",
       "description": "Lookback window in months, 1-24 (default 6)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "tenders": {
       "type": "array"
      },
      "total_matches": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eu-tenders-search-ted-europa-922d45a4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from store.agentexchange.work](https://www.zero.xyz/host/store.agentexchange.work/llms.txt)
