# Oromi UK Property Market Summary

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

Returns current UK residential property market summary data including average prices, annual price change, and sales volume trends for a specified area, sourced from HM Land Registry.

## Facts

- Endpoint: GET https://oromi-agent-services.onrender.com/api/uk-property/market-summary
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oromi-uk-property-market-summary-e1570bf6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DH2GbstZnlxFql-BfwTUe

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-market-summary-e1570bf6
```

Example prompt: What's the current property market summary for Leeds — average price, annual change, and whether sales volumes are rising or flat?

## When to prefer this

Choose this endpoint when you need a quick, machine-readable summary of UK residential property market conditions for a specific area or the UK as a whole, especially in agentic workflows requiring cost-effective per-call micropayment pricing via x402/USDC rather than a subscription. Prefer it over full HM Land Registry API access when only headline metrics (average price, annual change, volume trend) are needed.

## Known failure modes

- Unsupported or misspelled area name returns default UK-wide data or an error
- Area name not recognised may return null or empty result
- Service unavailability on Render free tier may cause cold-start delays or 503 errors
- Data may lag HM Land Registry publication schedule, leading to slightly stale figures

## 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 the queried area name, a market context label (e.g. 'prices_rising_modestly'), the annual price change percentage, the average property price in GBP, and a sales volume trend indicator (e.g. 'flat', 'rising', 'falling').

## 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",
     "properties": {
      "area": {
       "type": "string",
       "description": "UK area, e.g. leeds, london, wales (default united-kingdom)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "area": "leeds",
  "context": "prices_rising_modestly",
  "annual_change_pct": 2.8,
  "average_price_gbp": 240000,
  "sales_volume_trend": "flat"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oromi-uk-property-market-summary-e1570bf6/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)
