# UK Property Energy Performance Certificate Lookup

> UK Property Energy Performance Certificate Lookup is a paid API for AI agents from api.trustedinformation.site, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns EPC (Energy Performance Certificate) data for properties at a given UK postcode, including band distribution and certificate details.

## Facts

- Endpoint: GET https://api.trustedinformation.site/api/uk-property/energy
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/uk-property-energy-performance-certificate-lookup-4ce28026
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_P1EmX6-fBuJvN7mhnzD8V

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 uk-property-energy-performance-certificate-lookup-4ce28026
```

Example prompt: Can you pull up the energy performance certificate data for the postcode E1 6AN — I want to know what EPC bands the properties there have and what share are rated C or better?

## When to prefer this

Choose this endpoint when you need official UK government EPC data for a specific postcode without requiring API key signup — ideal for agents that need pay-per-use property energy data in USDC via x402, real estate research tools, compliance checks, or sustainability analysis pipelines where occasional lookups don't justify a subscription.

## Known failure modes

- Invalid or malformed postcode returns an error or empty result
- Postcode with no registered EPC certificates returns count of 0 and empty arrays
- Very rural postcodes may have sparse or no data
- Payment failure via x402 protocol prevents data retrieval
- Rate limiting or temporary upstream EPC register unavailability

## How this service works

Pay-per-call UK company, property and crypto market data for AI agents via x402. Official sources, no signup, no API keys, failed calls never charged.

## Output

A JSON object containing the queried postcode, total certificate count, local council name, an array of individual EPC certificates (each with address, band, registration date, and certificate number), a band distribution map (e.g. {A: 3, B: 12, C: 45}), and the share of properties rated band C or better as a decimal fraction.

## 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": {
      "postcode": {
       "type": "string",
       "description": "Full UK postcode"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "postcode",
      "count",
      "bandDistribution",
      "certificates"
     ],
     "properties": {
      "count": {
       "type": "number"
      },
      "council": {
       "type": [
        "string",
        "null"
       ]
      },
      "postcode": {
       "type": "string"
      },
      "certificates": {
       "type": "array"
      },
      "bandDistribution": {
       "type": "object"
      },
      "shareBandCOrBetter": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 2,
  "council": "City of London",
  "postcode": "E1 6AN",
  "certificates": [
   {
    "band": "D",
    "address": "6, Brushfield Street, LONDON",
    "registered": "2019-04-24",
    "certificateNumber": "0352-2837-6649-9921-7631"
   }
  ],
  "bandDistribution": {
   "D": 2
  },
  "shareBandCOrBetter": 0
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uk-property-energy-performance-certificate-lookup-4ce28026/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.trustedinformation.site](https://www.zero.xyz/host/api.trustedinformation.site/llms.txt)
