—
Incidents (7 days)
—
Crime Reports
3
Agencies
Agencies
- Menlo Park Police Department incidentscases
- Atherton Police Department incidentscases
- San Mateo County Sheriff's Office cases only
JSON Endpoints
- feed.json — All incidents + cases combined
- incidents.json — Incidents only (calls for service)
- cases.json — Cases only (crime reports)
Fetch Example
fetch('/feed.json')
.then(r => r.json())
.then(({ meta, incidents, cases }) => {
console.log(`${meta.incident_count} incidents, ${meta.case_count} cases`)
incidents.forEach(i =>
console.log(i.callType, i.street, i._agency))
})