Send a supplier profile (what you do, keywords, regions, value band, certificati
Send a supplier profile (what you do, keywords, regions, value band, certifications) and get the best-fitting live UK tenders, each scored 0-100 by deterministic published rules across five factors - relevance, value fit, geography, timeline, buyer history - each with its numerator AND denominator so you can re-weight client-side, plus a what-to-emphasise note on the top matches. Rules score; a model never does.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://api.ukintel.uk/v1/tenders/fit-score
| Category | Everything else |
|---|---|
| Provider host | api.ukintel.uk |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 6 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"supplier": {
"certifications": [
"confined space",
"COSHH"
],
"keywords": [
"chemical cleaning",
"tank cleaning",
"decontamination"
],
"regions": [
"Scotland",
"North East England"
],
"value_band": [
10000,
500000
],
"what_we_do": "industrial tank and vessel cleaning, confined space certified"
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"filters": {
"description": "Optional pre-filters (same fields as /v1/tenders/search).",
"type": "object"
},
"supplier": {
"description": "The supplier profile to match against live tenders.",
"properties": {
"certifications": {
"items": {
"type": "string"
},
"type": "array"
},
"cpv": {
"description": "CPV code prefixes you deliver against",
"items": {
"type": "string"
},
"type": "array"
},
"keywords": {
"items": {
"type": "string"
},
"type": "array"
},
"regions": {
"description": "UK nations/regions served",
"items": {
"type": "string"
},
"type": "array"
},
"value_band": {
"description": "[min, max] comfortable contract value in GBP",
"items": {
"type": "integer"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
},
"what_we_do": {
"description": "Plain-English capability statement",
"type": "string"
}
},
"required": [
"what_we_do"
],
"type": "object"
},
"top": {
"default": 5,
"maximum": 10,
"minimum": 1,
"type": "integer"
}
},
"required": [
"supplier"
]
},
"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"
}