UK Police API
Overview
The UK Police API provides open access to crime data, police force information, and neighborhood policing data across England, Wales, and Northern Ireland. You can retrieve crime statistics by location, list police forces, and find neighborhood teams for any area. It's completely free with no API key required, making it ideal for civic tech projects and data journalism.
Beginner Tip
Use the /crimes-street/{category} endpoint with a lat and lng parameter to get crimes near any UK location — latitude/longitude for UK cities are easy to find on Google Maps.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from UK Police",
"description": "UK Police data",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
category Crime category slug, e.g., violent-crime, burglary, vehicle-crime. location_type Whether the crime occurred at a Force or BTP (British Transport Police) location. location Approximate street location including latitude, longitude, and street name. month The month this crime was recorded, in YYYY-MM format. outcome_status Latest investigation outcome (e.g., "Under investigation", "No suspect identified"), or null if pending. id Unique identifier for this crime record. Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://data.police.uk/docs/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Classify
Classify provides programmatic access to encrypting & decrypting text messages via REST API.
Dehash.lt
Dehash.lt provides programmatic access to hash decryption md5, sha1, sha3, sha256, sha384, sha512 via REST API.
EmailRep
⭐ Beginner's PickEmailRep is a free API that evaluates the risk and reputation of an email address in seconds.
Escape
⭐ Beginner's PickEscapeAPI is a simple open-source utility API that takes raw user input and returns properly escaped versions safe for use in HTML, SQL, shell, and other contexts.
FilterLists
⭐ Beginner's PickFilterLists is a community-maintained directory API that catalogs hundreds of filter lists used by ad blockers and firewalls like uBlock Origin and Pi-hole.