Live UK grant funding calls from GOV
Live UK grant funding calls from GOV.UK Find a Grant in one call: name, funder, amount range, opening/closing dates, who can apply, one-line summary and the official source link. Filter by keywords, nation, applicant type and amount band. Indexed daily from the official listing - the service has no API of its own, so this is the machine-readable version.
100000 (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": "100000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"q": "woodland",
"region": "england"
},
"type": "http"
},
"output": {
"example": {
"confidence": "high",
"notice": "Information, not advice.",
"query": {
"q": "woodland",
"region": "england"
},
"result": {
"grants": [
{
"amounts": {
"max": 2000000,
"min": 4000,
"text": "From £4,000 to £2 million"
},
"funder": "Department for Environment, Food and Rural Affairs / Forestry Commission",
"id": "england-woodland-creation-offer-ewco-1",
"name": "England Woodland Creation Offer (EWCO)",
"source_url": "https://www.find-government-grants.service.gov.uk/grants/england-woodland-creation-offer-ewco-1",
"window": {
"closes": "2030-03-31T22:59:00.000Z",
"days_to_close": 1328,
"open_now": true,
"opens": "2021-06-01T00:01:00.000Z"
}
}
],
"returned": 4,
"total_matched": 4
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"max": {
"type": "integer"
},
"min": {
"type": "integer"
},
"open_now": {
"enum": [
"true",
"false"
],
"type": "string"
},
"org_type": {
"description": "Applicant type slug",
"type": "string"
},
"q": {
"description": "Keywords",
"type": "string"
},
"region": {
"description": "UK nation slug",
"type": "string"
}
},
"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/grants/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/grants/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/grants/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/3316.json, and this resource appears in /discovery/resources and /discovery/search.