# TenderDelta EU Solar & Battery Tender Search

> TenderDelta EU Solar & Battery Tender Search is a paid API for AI agents from tenderdelta-preview.mooncakemonkey1.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Search and filter EU solar and battery procurement tenders from TED with explainable qualification scores and country/status filtering

## Facts

- Endpoint: GET https://tenderdelta-preview.mooncakemonkey1.workers.dev/x402/v1/search
- 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/tenderdelta-eu-solar-battery-tender-search-a0df45e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wcLjPOmk7SIvjNfSD5l4P

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 tenderdelta-eu-solar-battery-tender-search-a0df45e1
```

Example prompt: Find me up to 20 open, high-qualified solar tenders in Germany from TED — show me results with a minimum score of 75.

## When to prefer this

Use this endpoint when you need explainably qualified, pre-scored EU solar or battery tender opportunities filtered by country (Germany, Spain, Italy), status, and score threshold. Prefer this over raw TED searches when you want pre-processed qualification labels and scoring rather than raw notice text. Best for procurement intelligence workflows targeting renewable energy opportunities in the three supported EU markets.

## Known failure modes

- No results returned if CPV prefix doesn't match solar/battery codes
- Empty result set for country/status combinations with no matching tenders in the snapshot
- Invalid country code (only DEU, ESP, ITA supported) causes request rejection
- min_score out of 0-100 range causes validation error
- limit exceeding 50 causes schema validation failure
- Snapshot may be stale — tenders reflect a fixed TED snapshot date, not real-time data

## How this service works

Search explainably qualified EU solar and battery tenders from an explicitly dated TED snapshot

## Output

Returns a ranked list of EU solar and battery procurement tenders sourced from a dated TED snapshot, each with qualification scores (0-100), qualification labels (high/medium/low), tender status (open/unknown), CPV codes, and country metadata, enabling explainable filtering and ranking of procurement opportunities.

## 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",
     "properties": {
      "label": {
       "enum": [
        "high",
        "medium",
        "low"
       ],
       "type": "string"
      },
      "limit": {
       "type": "integer",
       "maximum": 50,
       "minimum": 1
      },
      "status": {
       "enum": [
        "open",
        "unknown"
       ],
       "type": "string"
      },
      "country": {
       "enum": [
        "DEU",
        "ESP",
        "ITA"
       ],
       "type": "string",
       "description": "TED country code"
      },
      "min_score": {
       "type": "integer",
       "maximum": 100,
       "minimum": 0
      },
      "cpv_prefix": {
       "type": "string",
       "description": "Solar or battery CPV prefix"
      }
     }
    }
   },
   "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/tenderdelta-eu-solar-battery-tender-search-a0df45e1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tenderdelta-preview.mooncakemonkey1.workers.dev](https://www.zero.xyz/host/tenderdelta-preview.mooncakemonkey1.workers.dev/llms.txt)
