Fresh EU public procurement notices from TED (Tenders Electronic Daily, official Publicati
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.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-27
updated
Provider
data.greeneris.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x6ab8efe305cce67daa48c97bde29c04402822dff",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"country": "FRA",
"cpv": "48000000",
"days_back": 7,
"limit": 5
},
"type": "http"
},
"output": {
"example": {
"notices": [
{
"buyer_name": "OPHIS",
"deadline": "2026-08-10",
"publication_date": "2026-07-06",
"publication_number": "460906-2026",
"title": "France - Software package and information systems - Accord-cadre titres-restaurant",
"url": "https://ted.europa.eu/en/notice/460906-2026"
}
],
"query": {
"country": "FRA",
"cpv": "48000000",
"published_since": "20260706"
},
"source": "TED - Tenders Electronic Daily, Publications Office of the European Union",
"total_matches": 44
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"country": {
"description": "3-letter buyer country code, e.g. FRA (optional)",
"type": "string"
},
"cpv": {
"description": "8-digit CPV classification code (optional)",
"type": "string"
},
"days_back": {
"default": 7,
"description": "Look-back window in days, 1-30",
"type": "integer"
},
"limit": {
"default": 10,
"description": "Max notices returned, 1-25",
"type": "integer"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://data.greeneris.io/v1/eu/tenders" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://data.greeneris.io/v1/eu/tenders");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://data.greeneris.io/v1/eu/tenders")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3982.json, and this resource appears in /discovery/resources and /discovery/search.