# UK Postcode Sold Prices Summary

> UK Postcode Sold Prices Summary is a paid API for AI agents from x402-realestate-poc.theliminalguy.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a statistical summary of historical property sold prices for a given UK postcode, including count, min/max/median/average price, date range, and property-type breakdown, derived from HM Land Registry Price Paid Data.

## Facts

- Endpoint: GET https://x402-realestate-poc.theliminalguy.workers.dev/sold-prices/M1%201AE/summary
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/uk-postcode-sold-prices-summary-5eecc331
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WfN0UpFMROpY-v0xo0LB-

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 uk-postcode-sold-prices-summary-5eecc331
```

Example prompt: Can you pull up the sold price summary for UK postcode M1 1AE — I want to see the count, min, max, median, and average sale prices as well as the property-type breakdown from the Land Registry data?

## When to prefer this

Choose this endpoint when you need a fast, pre-aggregated statistical summary of UK property sold prices for a specific postcode without building your own data pipeline against HM Land Registry raw data. It is ideal for property valuation research, investment analysis, or generating local market overviews at per-call cost. Prefer it over raw Land Registry file downloads when you need immediate computed stats (median, average, property-type breakdown) rather than individual transaction records.

## Known failure modes

- Invalid or malformed postcode returns an error or empty result
- Postcode with no Land Registry transactions returns zero count or empty dataset
- Rate limiting or payment failure returns a 402 or payment-related error
- Postcode outside England and Wales (e.g. Scottish or Northern Irish postcodes) may not be covered by HM Land Registry Price Paid Data
- Network or worker timeout if the underlying data aggregation takes too long

## How this service works

Computed sold-price summary for a UK postcode (count, min/max/median/avg price, date range, property-type breakdown), derived from HM Land Registry Price Paid Data

## Output

A computed JSON summary containing the total number of sold transactions, minimum price, maximum price, median price, average price, the earliest and latest sale dates in the dataset, and a breakdown of sold prices by property type (e.g. detached, semi-detached, terraced, flat) for the requested UK postcode.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/uk-postcode-sold-prices-summary-5eecc331/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-realestate-poc.theliminalguy.workers.dev](https://www.zero.xyz/host/x402-realestate-poc.theliminalguy.workers.dev/llms.txt)
