# UK Property Crime Statistics by Postcode

> UK Property Crime Statistics by Postcode 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 crime counts and category breakdown within 1 mile of a UK postcode, sourced from official UK police data.

## Facts

- Endpoint: GET https://api.trustedinformation.site/api/uk-property/crime
- 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-crime-statistics-by-postcode-378f4b16
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D_b9FAVYdGnWdjSFDfqua

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-crime-statistics-by-postcode-378f4b16
```

Example prompt: Can you look up the crime stats for the area around postcode PL6 8RU — I want to know the total crimes within a mile and what types, like burglary or violent crime?

## When to prefer this

Choose this endpoint when you need official UK police crime statistics for a specific location identified by postcode. Ideal for property research, neighbourhood safety assessments, or enriching real estate listings with crime context. Prefer this over general web searches for crime data because it returns structured, categorised, and geographically bounded counts from official UK government sources, payable per-call with no signup.

## Known failure modes

- Invalid or malformed postcode returns an error response
- Postcode not found in UK police database returns empty or null result
- Data may be delayed by 1-3 months as police.uk updates monthly
- Very rural postcodes may have no nearby crime data
- Missing required postcode query parameter returns a 400-level error

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

Returns a JSON object containing the full UK postcode queried, the reporting month (e.g. 2026-05), the ward and district name, the total number of crimes recorded within 1 mile, and a breakdown of crime counts by category such as burglary, violent-crime, and criminal-damage-arson.

## 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",
      "totalCrimesWithin1Mile",
      "byCategory"
     ],
     "properties": {
      "area": {
       "type": "object"
      },
      "month": {
       "type": "string"
      },
      "postcode": {
       "type": "string"
      },
      "byCategory": {
       "type": "object"
      },
      "totalCrimesWithin1Mile": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "area": {
   "ward": "Moor View",
   "district": "Plymouth"
  },
  "month": "2026-05",
  "postcode": "PL6 8RU",
  "byCategory": {
   "burglary": 3,
   "violent-crime": 23,
   "criminal-damage-arson": 11
  },
  "totalCrimesWithin1Mile": 49
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uk-property-crime-statistics-by-postcode-378f4b16/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)
