mirrored listing x402 eip155:8453

One grant, one project: a deterministic eligibility verdict with the full criteria table -

One grant, one project: a deterministic eligibility verdict with the full criteria table - each criterion quoted from the grant's own eligibility text, marked pass/fail/undeclared - plus what is missing to firm it up and indicative funding. Criteria are parsed once at ingest, never guessed at request time; if the full text is not parsed yet the verdict uses Find a Grant's listing fields, flagged PARTIAL_CRITERIA, and criteria_provenance says so.

Do you run api.ukintel.uk? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
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": {
        "method": "GET",
        "pathParams": {
          "id": "ewco"
        },
        "queryParams": {},
        "type": "http"
      },
      "output": {
        "example": {
          "confidence": "high",
          "notice": "Information, not advice.",
          "query": {
            "grant_id": "ewco",
            "profile": {
              "land_ha": 3.5,
              "org_type": "private_landowner",
              "region": "england"
            }
          },
          "result": {
            "criteria": [
              {
                "code": "MIN_AREA",
                "detail": "3.5 ha declared",
                "pass": true,
                "requirement": "woodland \"at least 1 hectare\" in total"
              }
            ],
            "grant": {
              "funder": "Defra / Forestry Commission",
              "name": "England Woodland Creation Offer (EWCO)"
            }
          },
          "verdict": {
            "band": "eligible",
            "flags": [
              {
                "code": "MISSING_DECLARATION",
                "detail": "management_control not declared"
              }
            ],
            "score": 92
          }
        },
        "type": "json"
      }
    },
    "routeTemplate": "/v1/grants/:id/eligibility",
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "pathParams": {
              "properties": {
                "id": {
                  "description": "Grant slug or curated alias",
                  "pattern": "^[a-z0-9][a-z0-9-]{1,120}$",
                  "type": "string"
                }
              },
              "required": [
                "id"
              ],
              "type": "object"
            },
            "queryParams": {
              "properties": {
                "land_ha": {
                  "description": "Example of the free-form numeric facts this endpoint accepts. Send ANY numeric fact the grant's criteria reference as a query param - land_ha=3.5, min_width_m=25, employees=12, or management_control=1 for a yes/no declaration. Undeclared facts come back under result.missing.",
                  "type": "number"
                },
                "org_type": {
                  "type": "string"
                },
                "region": {
                  "type": "string"
                }
              },
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "verdict": {
                  "properties": {
                    "band": {
                      "enum": [
                        "eligible",
                        "uncertain",
                        "ineligible",
                        null
                      ],
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "score": {
                      "maximum": 100,
                      "minimum": 0,
                      "type": [
                        "integer",
                        "null"
                      ]
                    }
                  },
                  "type": "object"
                }
              },
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.ukintel.uk/v1/grants/:id/eligibility"
# -> 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/:id/eligibility");
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/:id/eligibility")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/3311.json, and this resource appears in /discovery/resources and /discovery/search.