# Macaroon Network UK Procurement Search

> Macaroon Network UK Procurement Search is a paid API for AI agents from api.macaroonnetwork.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Searches recent UK public-sector procurement notices from Find a Tender by buyer, value, CPV category, and status

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/procurement-search-v1
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macaroon-network-uk-procurement-search-b29d8332
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6vl81srm8-uePLdRWa7dX

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability macaroon-network-uk-procurement-search-b29d8332 -d '<json body>'
```

Example prompt: Can you search UK public-sector procurement notices on Find a Tender for any recent NHS contracts related to medical equipment — show me open notices above £50,000?

## When to prefer this

Use this endpoint when you need to search UK public-sector procurement data specifically from Find a Tender, particularly when filtering by buyer, CPV category, value, or notice status. Prefer this over generic web search when you need structured, licence-confirmed procurement records rather than scraped HTML. Best for supplier opportunity discovery, compliance checks, or spend analysis in the UK public sector.

## Known failure modes

- No matching notices found for the given query parameters — returns empty result set
- Invalid CPV category code returns an error or empty results
- Query too broad returns truncated or paginated results without full coverage
- Snapshot may not reflect notices published in the last few hours if data is not real-time
- Malformed POST body returns a validation error

## How this service works

Search recent UK public-sector procurement notices from Find a Tender -- buyer, value, CPV category, and status. Published under the Open Government Licence v3.0, confirmed directly from the source's own declared package licence.

## Output

Returns a list of UK public-sector procurement notices matching the query, including buyer name, contract value range, CPV category codes, notice status (e.g. open, awarded, cancelled), and publication date — sourced from Find a Tender under the Open Government Licence v3.0.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/macaroon-network-uk-procurement-search-b29d8332/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.macaroonnetwork.com](https://www.zero.xyz/host/api.macaroonnetwork.com/llms.txt)
