Nearby Incidents API

Get crimes nearby with a bounded incident API.

CrimeScore gives product teams a safer way to add local incident context beside a modeled neighborhood score. Use the nearby incidents endpoint when a user asks what has happened around a selected coordinate.

nearby incidents APIget crimes nearby APIcrime incidents near me APInearby crime APIcrime data API by radiuscrime score API

Search incidents near a coordinate

The nearby incidents route is designed for apps that already know a latitude and longitude, such as a map click, address lookup, listing page, delivery route, or location search.

Developers can request recent context by coordinate, radius, time window, and result limit, then show it beside the CrimeScore risk score and map layer.

  • Coordinate-based lookup
  • Radius and result limits
  • Recent local context
  • Sanitized incident categories

Product context, not a raw incident dump

The endpoint is intentionally bounded. It is not a bulk resale feed, dispatch system, emergency alert product, or replacement for official public safety records.

CrimeScore returns practical incident context for product workflows while omitting raw payloads, media, user data, and source identifiers.

Use it beside the score API

A long-term neighborhood score and a short-term nearby incident pulse answer different questions. The score explains modeled baseline risk. Nearby incidents explain recent activity around the selected place.

Keeping those signals separate makes the product easier to explain and keeps a single recent event from being treated like a full neighborhood risk model.

Example request

Use GET /v1/incidents/nearby?lat=40.7128&lng=-74.0060&radius_m=5000&hours=24&limit=25 for a bounded recent-activity lookup around a point.

Live requests require an API key. Public marketing pages show examples and route developers into the playground for authenticated testing.

{
  "lat": 40.7128,
  "lng": -74.006,
  "radius_m": 5000,
  "hours": 24,
  "count": 3,
  "candidate_count": 18,
  "truncated": false,
  "incidents": [
    {
      "category": "property",
      "label": "Theft",
      "occurred_at": "2026-06-23T13:42:00Z",
      "distance_m": 384,
      "source": "normalized_public_record"
    },
    {
      "category": "disorder",
      "label": "Disturbance",
      "occurred_at": "2026-06-23T09:10:00Z",
      "distance_m": 1280,
      "source": "normalized_public_record"
    }
  ]
}

FAQ

Common questions

Can I get crimes near a location by API?

Yes. CrimeScore supports authenticated nearby incident lookups by coordinate, radius, time window, and result limit.

Is this a bulk incident feed?

No. The nearby incidents API is bounded product context and is not intended for bulk export, resale, dispatch, or emergency alert use.

Does this replace the crime score?

No. Use the score API for modeled neighborhood risk and the nearby incidents API for short-term local activity context.