# Oromi UK Property Price Trends

> Oromi UK Property Price Trends 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 historical average house price data and annual change percentages for a specified UK area over a configurable number of months, sourced from HM Land Registry.

## Facts

- Endpoint: GET https://agents.oromi.co.uk/api/uk-property/price-trends
- 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-price-trends-dad960bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NR2lUPqTzUZn01yYVLcby

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-price-trends-dad960bb
```

Example prompt: What are the current average house prices in Greater Manchester and how have they changed over the last 24 months? Pull the latest HM Land Registry price trend data for that area.

## When to prefer this

Choose this endpoint when you need structured, historical UK residential property price data by region sourced from HM Land Registry, especially in an agent pipeline that requires machine-payable micro-transactions per call via x402/USDC. Prefer this over manual Land Registry lookups or general web search when you need clean, structured JSON price series for a specific UK area without scraping or parsing effort.

## Known failure modes

- Invalid area name returns an error or empty results — use recognised UK area slugs like 'london', 'greater-manchester', 'kent', 'wales', or 'united-kingdom'
- Months value exceeding 60 will be capped or rejected — max is 60 months
- Data may lag HM Land Registry publication schedules by weeks, so the very latest month may be unavailable
- Payment failure via x402/USDC will block the request before data is returned

## 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

Returns a JSON object containing the queried area name, the latest month's average property price and annual percentage change, plus a time-series array of monthly data points covering the requested history window, all sourced from HM Land Registry.

## 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. london, greater-manchester, kent, wales (default united-kingdom)"
      },
      "months": {
       "type": "string",
       "description": "How many months of history (default 24, max 60)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "area": "greater-manchester",
  "latest": {
   "month": "2026-05",
   "average_price": 265000,
   "annual_change_pct": 3.1
  },
  "series": []
 }
}
```

## More

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