One tender as a full agent-ready dossier: parsed requirements summary, buyer, value, compl
One tender as a full agent-ready dossier: parsed requirements summary, buyer, value, complete timeline with working-days-remaining, lots, document links, submission route and the official notice URL. CPV codes are null when the source release carries none - we report the register, we never guess.
100000 (raw units)
price
3
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": "100000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"ocid": "ocds-h6vhtk-0518f9"
},
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"confidence": "high",
"notice": "Information, not advice.",
"query": {
"ocid": "ocds-h6vhtk-06df8b"
},
"result": {
"buyer": "Hull City Council",
"cpv": [
{
"code": "90733000",
"desc": "Services related to water pollution"
}
],
"deadline": "2026-09-02T11:00:00+00:00",
"source": {
"name": "Find a Tender",
"notice_url": "https://www.find-tender.service.gov.uk/Notice/075483-2026"
},
"title": "Provision of Water Testing Services",
"value": {
"amount": 180000,
"currency": "GBP"
}
}
},
"type": "json"
}
},
"routeTemplate": "/v1/tenders/:ocid/brief",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"ocid": {
"description": "OCDS contracting-process id from /v1/tenders/search",
"pattern": "^ocds-[a-z0-9]{6}-[A-Za-z0-9][A-Za-z0-9-]{0,80}$",
"type": "string"
}
},
"required": [
"ocid"
],
"type": "object"
},
"queryParams": {
"properties": {},
"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/:ocid/brief" # -> 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/:ocid/brief");
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/:ocid/brief")
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/3314.json, and this resource appears in /discovery/resources and /discovery/search.