Live UK public-sector tenders from Find a Tender and Contracts Finder in one call
Live UK public-sector tenders from Find a Tender and Contracts Finder in one call. Returns the top 10 matching notices as one-paragraph plain-English briefs with buyer, value, deadline, CPV codes (honest null when the notice carries none) and the official notice link. Searches a 6-hourly refreshed index - no signup with either portal needed.
50000 (raw units)
price
4
calls / 30d
1
unique payers
2026-09-14
updated
Provider
api.ukintel.uk · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8aa6a85a2723e2816204f3cf48d76b84bafdaab4",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"q": "cleaning",
"region": "scotland"
},
"type": "http"
},
"output": {
"example": {
"confidence": "high",
"notice": "Information, not advice.",
"query": {
"q": "cleaning",
"region": "scotland"
},
"result": {
"notices": [
{
"buyer": "Hull City Council",
"cpv": [
{
"code": "90733000",
"desc": "Services related to water pollution"
}
],
"days_remaining": 25,
"deadline": "2026-09-02T11:00:00+00:00",
"ocid": "ocds-h6vhtk-06df8b",
"stage": "tender",
"summary": "One-paragraph plain-English brief with buyer, value, deadline and source link.",
"title": "Provision of Water Testing Services",
"value": {
"amount": 180000,
"currency": "GBP"
}
}
],
"returned": 10,
"total_matched": 14
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"cpv": {
"description": "CPV prefix filter, comma-separated",
"type": "string"
},
"deadline_after": {
"description": "YYYY-MM-DD",
"type": "string"
},
"q": {
"description": "Keywords (synonym-expanded)",
"type": "string"
},
"region": {
"description": "UK nation or English region slug",
"type": "string"
},
"stage": {
"enum": [
"tender",
"planning"
],
"type": "string"
},
"value_max": {
"type": "integer"
},
"value_min": {
"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://api.ukintel.uk/v1/tenders/search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.ukintel.uk/v1/tenders/search");
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://api.ukintel.uk/v1/tenders/search")
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/3317.json, and this resource appears in /discovery/resources and /discovery/search.