{
  "x402Version": 2,
  "id": 1441,
  "slug": "1441",
  "resource": "https://4yearcycle.com/x402/tenders",
  "description": "EU public procurement tender notices from the official TED (Tenders Electronic Daily) v3 API, filtered by CPV product/service code, country of performance and free-text keywords over a recent publication window; returns structured JSON per notice with title, buyer, deadline, publication date, CPV codes, notice URL and German PDF link.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x9862ca83b72aB95521F457aFf6e6EFb03d8164C3",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "10000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "method": "GET",
          "queryParams": {
            "country": "DEU",
            "cpv": "45262670,44316000",
            "days": "14",
            "keywords": "CNC,Stahlbau",
            "max": "100"
          },
          "type": "http"
        },
        "output": {
          "example": {
            "count": 1,
            "tenders": [
              {
                "buyer": "Stadt Musterstadt, Amt für Gebäudemanagement",
                "cpv": [
                  "45262670",
                  "44316000"
                ],
                "deadline": "2026-09-15T10:00:00+02:00",
                "description": "Stahlbauarbeiten für den Neubau einer Produktionshalle, ca. 2.400 m² Grundfläche, inkl. Metallbau- und Schlosserarbeiten.",
                "noticeType": "cn-standard",
                "pdfDe": "https://ted.europa.eu/de/notice/00512345-2026/pdf",
                "publicationDate": "2026-08-12+02:00",
                "publicationNumber": "00512345-2026",
                "title": "Neubau einer Produktionshalle — Stahlbau- und Metallbauarbeiten",
                "url": "https://ted.europa.eu/en/notice/-/detail/00512345-2026"
              }
            ]
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "method": {
                "enum": [
                  "GET"
                ],
                "type": "string"
              },
              "queryParams": {
                "additionalProperties": false,
                "properties": {
                  "country": {
                    "default": "DEU",
                    "description": "Comma-separated ISO 3166-1 alpha-3 country codes for the place of performance, e.g. DEU, AUT, FRA. Default: DEU.",
                    "examples": [
                      "DEU",
                      "DEU,AUT"
                    ],
                    "pattern": "^[A-Z]{3}(,[A-Z]{3})*$",
                    "type": "string"
                  },
                  "cpv": {
                    "default": "45262670",
                    "description": "Comma-separated CPV codes (8-digit EU Common Procurement Vocabulary) to filter notices by, e.g. 45262670 = metal structures. Default: 45262670.",
                    "examples": [
                      "45262670",
                      "45262670,44316000"
                    ],
                    "pattern": "^\\d{8}(,\\d{8})*$",
                    "type": "string"
                  },
                  "days": {
                    "default": "14",
                    "description": "Look-back window in days over the notice publication date. Integer 1-90; values above 90 are capped. Default: 14.",
                    "examples": [
                      "14",
                      "30"
                    ],
                    "pattern": "^\\d{1,2}$",
                    "type": "string"
                  },
                  "keywords": {
                    "description": "Optional comma-separated free-text keywords; a notice is kept if its title or description contains at least one (case-insensitive). Empty = no keyword filter.",
                    "examples": [
                      "CNC,Fräsen",
                      "Stahlbau"
                    ],
                    "type": "string"
                  },
                  "max": {
                    "default": "100",
                    "description": "Maximum number of tenders to return. Integer 1-500; values above 500 are capped. Default: 100.",
                    "examples": [
                      "100",
                      "500"
                    ],
                    "pattern": "^\\d{1,3}$",
                    "type": "string"
                  }
                },
                "required": [],
                "type": "object"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "properties": {
                  "count": {
                    "description": "Number of tenders returned (after keyword filtering and max cap)",
                    "type": "integer"
                  },
                  "tenders": {
                    "description": "Matching tender notices, newest first as returned by TED",
                    "items": {
                      "properties": {
                        "buyer": {
                          "description": "Contracting authority name",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "cpv": {
                          "description": "CPV classification codes of the notice",
                          "items": {
                            "type": "string"
                          },
                          "type": "array"
                        },
                        "deadline": {
                          "description": "Submission deadline as returned by TED (ISO 8601 date-time), null if not stated",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "description": {
                          "description": "Lot description, truncated to 500 characters",
                          "type": "string"
                        },
                        "noticeType": {
                          "description": "TED notice type code, e.g. cn-standard",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "pdfDe": {
                          "description": "Direct link to the German PDF of the notice",
                          "type": "string"
                        },
                        "publicationDate": {
                          "description": "TED publication date",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "publicationNumber": {
                          "description": "TED publication number, unique notice id",
                          "type": "string"
                        },
                        "title": {
                          "description": "Notice title (German preferred, else English, else first available language)",
                          "type": "string"
                        },
                        "url": {
                          "description": "Human-readable notice page on ted.europa.eu",
                          "type": "string"
                        }
                      },
                      "required": [
                        "publicationNumber",
                        "title",
                        "url"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  }
                },
                "required": [
                  "count",
                  "tenders"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "4yearcycle.com",
  "lastUpdated": "2026-09-16T17:07:43.983Z",
  "quality": {
    "calls30d": 10,
    "uniquePayers30d": 8,
    "lastCalledAt": "2026-09-16T17:07:43.336Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "4yearcycle.com",
    "manifest_name": "4yearcycle.com",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}