Outcomes for a specific crime
Returns the outcomes (case history) for the specified crime. Crime ID is 64-character identifier, as returned by other API methods.
Note: Outcomes are not available for the Police Service of Northern Ireland.
Example request
https://data.police.uk/api/outcomes-for-crime/e11dade0a92a912d12329b9b2abb856ac9520434ad6845c30f503e9901d140f1
Example response
{
"crime": {
"category": "other-theft",
"persistent_id": "e11dade0a92a912d12329b9b2abb856ac9520434ad6845c30f503e9901d140f1",
"location_subtype": "",
"location_type": "Force",
"location": {
"latitude": "52.221763",
"street": {
"id": 2043595,
"name": "On or near School Close"
},
"longitude": "0.461236"
},
"context": "",
"month": "2023-12",
"id": 115159023
},
"outcomes": [
{
"category": {
"code": "under-investigation",
"name": "Under investigation"
},
"date": "2023-12",
"person_id": null
},
{
"category": {
"code": "unable-to-prosecute",
"name": "Unable to prosecute suspect"
},
"date": "2024-01",
"person_id": null
}
]
}
Response description
| Tag | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| outcomes |
A list of categories and dates of each outcome.
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| category | Category of the outcome | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| code | Internal code | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| name | Human-readable name | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| date | Date of the outcome | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| person_id | An identifier for the suspect/offender, where available. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| crime | Crime information | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| category | Category of the crime | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| location_type | The type of the location. Either Force or BTP: Force indicates a normal police force location; BTP indicates a British Transport Police location. BTP locations fall within normal police force boundaries. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| persistent_id | 64-character unique identifier for that crime. (This is different to the existing 'id' attribute, which is not guaranteed to always stay the same for each crime.) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| month | Month of the crime | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| location | Approximate location of the incident | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| latitude | Latitude | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| street | The approximate street the crime occurred | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| id | Unique identifier for the street | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| name |
Name of the location. This is only an approximation of where the crime happened |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| longitude | Longitude | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| context | Extra information about the crime (if applicable) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| id |
ID of the crime. This ID only relates to the API, it is NOT a police identifier |