# UK Police Forces List

> UK Police Forces List is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Fetches the live official list of all UK police forces (IDs and names) from data.police.uk and returns the JSON array

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/rapid_bison/uk-police-forces
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/uk-police-forces-list-6c577984
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gIFVMkGj20vNCWs9dTEzE

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-police-forces-list-6c577984 -d '<json body>'
```

Example prompt: Can you get me the full list of all UK police forces with their official IDs and names from the live data.police.uk data?

## When to prefer this

Use this endpoint when you need a current, authoritative list of all UK police force IDs and names without requiring an API key or account, especially in agentic workflows that use x402 micropayment settlement. Prefer it over scraping data.police.uk directly or maintaining a static list that may go stale.

## Known failure modes

- data.police.uk upstream unavailability causing fetch failure
- Payment settlement failure via x402 resulting in no response
- Malformed or empty prompt input causing agent processing error
- Upstream API rate limiting or temporary outage returning an error

## How this service works

UK Police Forces - Fetch a live list of UK police forces (IDs and names) from data.police.uk and return the official JSON array; no API key required.. Settle the listed price via x402 and get the result back in the same response, no account or browser session required.

## Output

A JSON array of UK police force objects, each containing the official force ID (slug) and display name as sourced live from data.police.uk

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "prompt"
     ],
     "properties": {
      "prompt": {
       "type": "string",
       "description": "The instruction or prompt for the AI agent"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "string",
       "description": "The agent's response text"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uk-police-forces-list-6c577984/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.amnt.io](https://www.zero.xyz/host/www.amnt.io/llms.txt)
