# Oromi UK Property Area Crime Lookup

> Oromi UK Property Area Crime 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-14).

Returns street crime statistics and risk context for a UK postcode area within a 1-mile radius

## Facts

- Endpoint: GET https://agents.oromi.co.uk/api/uk-property/area-crime
- 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-area-crime-lookup-43072d70
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SPbcUXVfOIxaCUQ6DuueU

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-area-crime-lookup-43072d70
```

Example prompt: Can you check the crime situation around postcode LS1 4AP — I want to know the total number of street crimes nearby, what type is most common, and whether it's considered a high or low crime area?

## When to prefer this

Use this endpoint when you need quick, structured crime context for a specific UK postcode — especially useful during property research, relocation decisions, or neighbourhood due diligence. It provides an aggregated crime picture rather than raw police records, making it agent-friendly and easy to interpret.

## Known failure modes

- Invalid or malformed UK postcode returns an error
- Postcode not found in crime data coverage area
- Missing required 'postcode' query parameter returns validation error
- Payment failure via x402 protocol blocks the request
- Rate limiting if too many calls are made in quick succession

## 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, total number of street crimes within a 1-mile radius, the top crime category (e.g. anti-social-behaviour), and a human-readable crime context label (e.g. 'moderate_reported_crime_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": {
      "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": {
  "context": "moderate_reported_crime_area",
  "postcode": "LS1 4AP",
  "top_category": "anti-social-behaviour",
  "total_street_crimes_1mi_radius": 214
 }
}
```

## More

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