# Oromi UK Property Sold Prices

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

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

## Facts

- Endpoint: GET https://oromi-agent-services.onrender.com/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-51dbcb70
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ihOJXh98yoZAj7NDHupSk

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-51dbcb70
```

Example prompt: Can you look up the recent sold prices for properties in the SW1A 1AA postcode — I want to see the last 30 transactions and the median price?

## When to prefer this

Use this endpoint when you need authoritative UK residential property sold price data sourced from HM Land Registry, queryable by full UK postcode. Prefer this over general real estate APIs when you need GBP transaction prices with dates and median statistics specifically for UK postcodes. It is machine-payable per call in USDC via x402, making it ideal for autonomous AI agents that need to pay micropayments without human involvement.

## Known failure modes

- Invalid or malformed postcode returns an error — postcode must be a valid full UK postcode format (e.g. SW1A 1AA)
- No sold price data available for very rural or low-transaction postcodes may return empty items array
- Payment failure via x402 protocol results in 402 response before data is returned
- Exceeding the items limit of 100 returns an error or is capped at 100
- Service on Render free tier may have cold-start latency causing timeout on first request

## 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 object containing an array of recent property transactions (each with sale date and price in GBP), a stats object with the median sold price, and the queried postcode. Up to 100 transactions can be returned per call.

## 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-51dbcb70/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oromi-agent-services.onrender.com](https://www.zero.xyz/host/oromi-agent-services.onrender.com/llms.txt)
