Crime Stats
Crime data for 35+ countries
Crime data for UK, US, and 35+ European countries. Street-level crime near any UK location, national stats from FBI and Eurostat, cross-border comparisons, and UK stop-and-search records with demographic breakdowns.
Search for crimes near a specific location at street level. Returns individual crime reports with category, location, date, and outcome. Currently covers England, Wales & Northern Ireland.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "crime-stats",
"skill": "search_crimes",
"input": {
"latitude": 51.5074,
"longitude": -0.1278
}
}' \
https://api.toolrouter.com/v1/tools/callGet national or regional crime statistics. US data from the FBI covers violent crime, homicide, robbery, assault, property crime, burglary, larceny, and vehicle theft — filterable by state. European data from Eurostat covers 35 countries with ICCS crime categories.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "crime-stats",
"skill": "crime_stats",
"input": {
"country_code": "US"
}
}' \
https://api.toolrouter.com/v1/tools/callCompare crime rates side-by-side across multiple countries. Combines FBI data (US) with Eurostat data (35 European countries) for cross-border comparison. Supports homicide rates, robbery, burglary, and violent crime.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "crime-stats",
"skill": "compare_countries",
"input": {
"countries": [
"US",
"DE",
"FR",
"GB",
"SE",
"NO"
],
"crime_type": "homicide"
}
}' \
https://api.toolrouter.com/v1/tools/callGet police stop and search records near a location in England and Wales. Includes reason for stop, outcome, and demographic breakdowns by ethnicity, gender, and age.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "crime-stats",
"skill": "stop_and_search",
"input": {
"latitude": 51.4613,
"longitude": -0.1156
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"crime-stats","skill":"search_crimes","input":{}}' \
https://api.toolrouter.com/v1/tools/callFrequently Asked Questions
Can it show street-level crimes near a location?
Yes. `search_crimes` returns individual crime reports near a latitude and longitude and covers England, Wales, and Northern Ireland.
Can I get national or state crime statistics?
`crime_stats` covers US national and state data from the FBI, plus 35+ European countries through Eurostat.
Can it compare countries side by side?
Yes. `compare_countries` ranks countries by crime type so you can compare homicide, robbery, burglary, or violent crime across borders.
Does it include stop and search records?
Yes. `stop_and_search` shows police stop and search records in England and Wales with demographic breakdowns by ethnicity, gender, and age.