# TenderSignal GET Compatibility – EU Public Tender Shortlist

> TenderSignal GET Compatibility – EU Public Tender Shortlist is a paid API for AI agents from api.ikoles.dev, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Returns a ranked shortlist of EU public tenders matching specified criteria, optimized for GET-based x402 payment clients

## Facts

- Endpoint: GET https://api.ikoles.dev/v1/tender-shortlist
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tendersignal-get-compatibility-eu-public-tender-shortlist-d8527a23
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hIFepogBUlrOos8kDMjFq

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 tendersignal-get-compatibility-eu-public-tender-shortlist-d8527a23
```

Example prompt: Show me a ranked shortlist of current EU public tenders for IT consulting services in Germany and France — I want the most relevant opportunities with deadlines and estimated contract values.

## When to prefer this

Choose this endpoint when you need a pre-ranked, shortlisted view of EU public tenders rather than raw search results — especially useful for agents operating under GET-based x402 payment flows that need structured procurement intelligence without building custom ranking logic.

## Known failure modes

- Missing or invalid search criteria returns empty shortlist or 400 error
- Payment failure via x402 protocol returns 402 Payment Required
- No matching tenders for specified filters returns empty results array
- Invalid country or category codes return 422 validation error
- Service temporarily unavailable returns 503
- Stale tender data if index not recently refreshed

## How this service works

Local-first data and agent workflow tools from Decision Data Studio, plus verified EU tender shortlists and machine-callable utilities.

## Output

A ranked list of EU public tender opportunities matching the query, including tender titles, issuing authorities, contract values, submission deadlines, and relevance scores indicating fit with the specified criteria.

## 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": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "generatedAt",
      "query",
      "count",
      "tenders",
      "stats"
     ],
     "properties": {
      "count": {
       "type": "integer",
       "minimum": 0
      },
      "query": {
       "type": "string"
      },
      "stats": {
       "type": "object",
       "required": [
        "pages",
        "scanned",
        "dropped",
        "duplicates"
       ],
       "properties": {
        "pages": {
         "type": "integer",
         "minimum": 0
        },
        "dropped": {
         "type": "integer",
         "minimum": 0
        },
        "scanned": {
         "type": "integer",
         "minimum": 0
        },
        "duplicates": {
         "type": "integer",
         "minimum": 0
        }
       },
       "additionalProperties": false
      },
      "tenders": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "noticeId",
         "title",
         "fitScore",
         "fitReasons",
         "risks",
         "sourceUrl"
        ],
        "properties": {
         "risks": {
          "type": "array",
          "items": {
           "type": "string"
          }
         },
         "title": {
          "type": "string"
         },
         "currency": {
          "type": [
           "string",
           "null"
          ]
         },
         "deadline": {
          "type": [
           "string",
           "null"
          ],
          "format": "date-time"
         },
         "fitScore": {
          "type": "number",
          "maximum": 100,
          "minimum": 0
         },
         "noticeId": {
          "type": "string"
         },
         "buyerName": {
          "type": [
           "string",
           "null"
          ]
         },
         "sourceUrl": {
 
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "query": "FT ~ \"cloud data platform\"",
  "stats": {
   "pages": 1,
   "dropped": 0,
   "scanned": 1,
   "duplicates": 0
  },
  "tenders": [
   {
    "risks": [
     "Deadline is less than 30 days away"
    ],
    "title": "Cloud data platform",
    "currency": "EUR",
    "deadline": "2026-08-10T12:00:00.000Z",
    "fitScore": 82,
    "noticeId": "444028-2026",
    "buyerName": "Example public buyer",
    "sourceUrl": "https://ted.europa.eu/en/notice/444028-2026/html",
    "fitReasons": [
     "Keyword match: cloud",
     "Buyer country match: DEU"
    ],
    "buyerCountry": "DEU",
    "estimatedValue": 500000
   }
  ],
  "generatedAt": "2026-07-20T12:00:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tendersignal-get-compatibility-eu-public-tender-shortlist-d8527a23/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.ikoles.dev](https://www.zero.xyz/host/api.ikoles.dev/llms.txt)
