# Oromi UK Property Sold Prices

> Oromi UK Property Sold Prices is a paid API for AI agents from agents.oromi.co.uk, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns recent sold property prices and median statistics for a given UK postcode, sourced from HM Land Registry data.

## Facts

- Endpoint: GET https://agents.oromi.co.uk/api/uk-property/sold-prices
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oromi-uk-property-sold-prices-6c16aa98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2xcL0ND9wvbajuReLWnpi

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 oromi-uk-property-sold-prices-6c16aa98
```

Example prompt: Can you pull up recent property sold prices for the postcode SW1A 1AA — show me up to 50 transactions and the median sale price?

## When to prefer this

Choose this endpoint when you need authoritative UK residential property sold price data for a specific postcode, sourced from HM Land Registry. Ideal for property valuation, market research, and investment analysis where you need real transaction prices rather than estimates. Prefer this over general property portals when you need raw, structured data payable per-call without a subscription.

## Known failure modes

- Invalid or malformed UK postcode returns an error
- Postcode with no sales history returns an empty items array
- Items parameter exceeding 100 is rejected or capped
- Missing required postcode parameter returns a validation error
- Payment failure via x402 protocol prevents access to data

## How this service works

Machine-payable APIs for AI agents, paid per call in USDC via the x402 protocol: UK business data (Companies House), UK property market data (HM Land Registry), website agent-readiness audits, and crypto market context.

## Output

A JSON response containing a list of recent property sale transactions for the requested postcode, each with a sale date and price in GBP (up to 100 transactions, defaulting to 30), plus summary statistics including the median sale price and the queried 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "postcode"
     ],
     "properties": {
      "items": {
       "type": "string",
       "description": "Max transactions (default 30, max 100)"
      },
      "postcode": {
       "type": "string",
       "description": "Full UK postcode, e.g. SW1A 1AA"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "items": [
   {
    "date": "2026-03-14",
    "price_gbp": 850000
   }
  ],
  "stats": {
   "median": 850000
  },
  "postcode": "SW1A 1AA"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oromi-uk-property-sold-prices-6c16aa98/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.oromi.co.uk](https://www.zero.xyz/host/agents.oromi.co.uk/llms.txt)
