# Macaroon Network UK Property Price Search

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

Search recent UK property sale prices from HM Land Registry by property type, price, town, district, and county

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/property-price-search-v1
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macaroon-network-uk-property-price-search-75d0281e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Oj5_SMC6-82jDt2Lr1zNd

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-property-price-search-75d0281e -d '<json body>'
```

Example prompt: Can you search UK property sale prices for detached houses in Cambridge, Cambridgeshire — I want to see what they've been selling for recently according to HM Land Registry data?

## When to prefer this

Use this endpoint when you need factual UK property sale price data sourced directly from HM Land Registry for research, investment analysis, or market comparison purposes. It is ideal when you want structured, official transaction data filtered by property type, geographic area (town, district, county), or price. Prefer this over generic web scraping when you need clean, licensed, structured property price records without address-level detail.

## Known failure modes

- No results returned if the specified town, district, or county has no matching records in the dataset snapshot
- Invalid property type values may return empty results or errors
- The dataset is a bounded snapshot, so very recent transactions may not yet be included
- Malformed request body or missing required fields returns an error
- Queries for areas outside England and Wales (HM Land Registry jurisdiction) will return no results

## How this service works

Search recent UK property sale prices from HM Land Registry -- property type, price, town, district, and county. Published under the Open Government Licence v3.0. Address-line fields (postcode, street, house name/number) are deliberately excluded, since Land Registry's own licensing note flags those as carrying a separate Royal Mail restriction beyond the OGL grant on the transaction data itself.

## Output

Returns UK property sale transaction records from HM Land Registry including sale price, property type, town, district, and county. Address-level fields (postcode, street, house name/number) are excluded due to Royal Mail licensing restrictions beyond the Open Government Licence grant.

## 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-property-price-search-75d0281e/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)
