


911 Calls API Definition
The CrimeoMeter 911 Calls API lets you request 911 calls for a specific location (Disclaimer).
​
You can test calling CrimeoMeter Crime Data API without code using the Databar.ai platform (click on the button below):
​
​
​
​
This is a request example of current 911 calls access point for a specific location:
https://api.crimeometer.com/v3/calls-for-service/raw-data?lat={latitude}&lon={longitude}&datetime_ini={datetime_ini}&datetime_end={datetime_end}&distance={distance}
​
HEADERS
-
Content-Type: application/json
-
x-api-key: (Request your private api-key via the "Contact Us" form).
Output result:
{
"total_incidents": 2,
"total_pages": 1,
"incidents": [
{
"call_city_key": "AUS",
"call_code": "20191010131",
"call_date": "2019-04-11T01:40:00.000Z",
"call_type": "Alcohol-related offense",
"call_description": "DWI at 816 LAVACA ST",
"call_latitude": 30.27146322,
"call_longitude": -97.74426176,
"call_address": "816 LAVACA ST"
},
{
"call_city_key": "AUS",
"call_code": "20183640046",
"call_date": "2018-12-30T02:48:00.000Z",
"call_type": "Alcohol-related offense",
"call_description": "DWI at W 9TH ST / LAVACA ST",
"call_latitude": 30.27154076,
"call_longitude": -97.74415195,
"call_address": "W 9TH ST / LAVACA ST"
}
]
}