# Oromi UK Property EPC Lookup

> Oromi UK Property EPC Lookup 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-15).

Returns Energy Performance Certificate (EPC) data and rating distribution for UK properties matching a given postcode

## Facts

- Endpoint: GET https://agents.oromi.co.uk/api/uk-property/epc
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oromi-uk-property-epc-lookup-a0d6dee9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OFEZTph16h_GxlONTjCRY

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-epc-lookup-a0d6dee9
```

Example prompt: Can you pull the Energy Performance Certificate ratings for all properties in postcode LS1 4AP and show me the distribution of energy ratings?

## When to prefer this

Use this endpoint when you need aggregated EPC energy rating data for a UK postcode area, particularly for property research, sustainability assessments, investment analysis, or comparing energy efficiency across neighbourhoods. Prefer this over manual EPC register lookups when you need machine-readable, per-call data payable in USDC without subscription setup.

## Known failure modes

- Invalid or malformed postcode returns an error — postcode must be a valid full UK postcode format
- Postcode with no EPC data on record returns zero certificates
- Exceeding the max items limit of 100 results in a validation error
- Missing required postcode query parameter returns a 400-level error
- Payment failure via x402 protocol returns a 402 Payment Required response

## 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 postcode, the number of EPC certificates found, and a breakdown of energy rating distribution by letter grade (e.g. A through G) for up to 100 properties in that postcode area.

## 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 certificates (default 25, max 100)"
      },
      "postcode": {
       "type": "string",
       "description": "Full UK postcode"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "postcode": "LS1 4AP",
  "certificates": 18,
  "rating_distribution": {
   "C": 7,
   "D": 8
  }
 }
}
```

## More

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