# UK Property Flood Risk Lookup

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

Returns current Environment Agency flood warnings and risk data for a given UK postcode

## Facts

- Endpoint: GET https://api.trustedinformation.site/api/uk-property/flood-risk
- Price: $0.003/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-flood-risk-lookup-86308fcd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yfk737_WMd_bM__ZL7AYi

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-flood-risk-lookup-86308fcd
```

Example prompt: Can you check if there are any active flood warnings for the postcode TA6 3JA right now, using Environment Agency data?

## When to prefer this

Use this endpoint when you need real-time, official UK flood warning data from the Environment Agency for a specific postcode, especially for property due diligence, insurance risk assessment, or location monitoring. Prefer this over general property data APIs when flood risk specifically is the concern, and over scraping gov.uk when you need structured JSON output with no signup or API key overhead.

## Known failure modes

- Invalid or malformed postcode returns an error or empty result
- Postcode not found in Environment Agency coverage area
- Environment Agency upstream API unavailability causing failed call (not charged)
- Postcode outside England (Scotland, Wales, Northern Ireland not covered by Environment Agency)

## 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, a boolean indicating whether active flood warnings exist, a count of current warnings, the highest severity level (e.g. 'no active warnings', 'flood alert', 'flood warning'), a list of warning objects, and the geographic area (region and district). Data is sourced directly from the Environment Agency flood-monitoring API.

## 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",
      "hasActiveWarnings",
      "warningCount"
     ],
     "properties": {
      "area": {
       "type": "object"
      },
      "postcode": {
       "type": "string"
      },
      "warnings": {
       "type": "array"
      },
      "warningCount": {
       "type": "number"
      },
      "highestSeverity": {
       "type": "string"
      },
      "hasActiveWarnings": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "area": {
   "region": "South West",
   "district": "Sedgemoor"
  },
  "source": "Environment Agency flood-monitoring",
  "postcode": "TA6 3JA",
  "warnings": [],
  "warningCount": 0,
  "highestSeverity": "no active warnings",
  "hasActiveWarnings": false
 }
}
```

## More

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