Send a project profile (what it is, who you are, where, how much you need) and get back th
Send a project profile (what it is, who you are, where, how much you need) and get back the live UK grants it could actually get - ranked eligible-first with a per-criterion pass/fail table for every match, from criteria parsed once at ingest from each grant's own eligibility text. Ineligible grants are excluded and counted, never dressed up as options. Deterministic rules; no language model touches the verdicts.
150000 (raw units)
price
5
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": "150000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"project": {
"amount_needed": 30000,
"description": "planting a new native woodland on our farm",
"org_type": "individual",
"params": {
"land_ha": 3.5
},
"region": "england"
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"confidence": "high",
"notice": "Information, not advice.",
"query": {
"project": {
"org_type": "individual",
"region": "england"
}
},
"result": {
"considered": 118,
"excluded": {
"closed": 3,
"ineligible": 41
},
"matches": [
{
"eligibility": {
"band": "eligible",
"missing": [
"MANAGEMENT_CONTROL"
],
"score": 92
},
"id": "england-woodland-creation-offer-ewco-1",
"name": "England Woodland Creation Offer (EWCO)",
"relevance": 12
}
]
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"project": {
"description": "The project profile to match against live grants.",
"properties": {
"amount_needed": {
"description": "Funding sought, GBP",
"type": "integer"
},
"description": {
"description": "Plain-English project description",
"type": "string"
},
"keywords": {
"items": {
"type": "string"
},
"type": "array"
},
"org_type": {
"description": "individual | business | charity | community_group | public_body | local_authority | education",
"type": "string"
},
"params": {
"additionalProperties": {
"type": "number"
},
"description": "Numeric facts criteria may reference, e.g. { land_ha: 3.5, employees: 12 }",
"type": "object"
},
"region": {
"description": "england | scotland | wales | northern-ireland",
"type": "string"
}
},
"required": [
"org_type"
],
"type": "object"
},
"top": {
"default": 5,
"maximum": 10,
"minimum": 1,
"type": "integer"
}
},
"required": [
"project"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"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/grants/match" # -> 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/grants/match");
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/grants/match")
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/3312.json, and this resource appears in /discovery/resources and /discovery/search.