# FBI Crime Agency Profile by ORI

> FBI Crime Agency Profile by ORI is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns normalized multi-year crime statistics for a single FBI-reporting law enforcement agency identified by ORI code, including annualized offense rates per 100,000 people, trend, and latest reporting year.

## Facts

- Endpoint: GET https://api.agentstools.dev/crime/agency
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fbi-crime-agency-profile-by-ori-d759d9e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_egpfxguc5M74QwTPCi8o1

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability fbi-crime-agency-profile-by-ori-d759d9e0
```

Example prompt: What's the violent crime rate trend for the Delaware State Police — their ORI is DE0010100 — over the last 5 years?

## When to prefer this

Use this endpoint when you need per-agency FBI crime statistics at the ORI level without geocoding — ideal for comparing specific law enforcement jurisdictions, building crime dashboards, or enriching datasets where you already have an ORI code. Prefer this over city-level or ZIP-based crime lookups when you need raw FBI reporting grain with multi-year trend context.

## Known failure modes

- Invalid or unknown ORI code returns a 404 or empty result
- Offense enum value misspelled or not in allowed list returns a validation error
- Years parameter outside 1–10 range returns a validation error
- Agency exists but has incomplete reporting data for requested years, resulting in partial or null rate values
- Network timeout or upstream FBI data source unavailability

## How this service works

Normalized crime profile for one FBI reporting agency by ORI code. Give an ORI and an optional offense and get the agency's multi-year annualized offense rates per 100,000 people, the latest complete reporting year, the trend and the data as-of date. The raw grain behind crime/location, without geocoding.

## Output

A normalized JSON object containing the agency's annualized offense rates per 100,000 people across the requested trailing years, the latest complete reporting year, a trend indicator (e.g. increasing/decreasing), the data as-of date, and the specific offense category requested (defaulting to violent-crime).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ori"
     ],
     "properties": {
      "ori": {
       "type": "string",
       "description": "FBI agency ORI code (e.g. DE0010100)"
      },
      "years": {
       "type": "integer",
       "maximum": 10,
       "minimum": 1,
       "description": "Trailing reporting years, default 5"
      },
      "offense": {
       "enum": [
        "violent-crime",
        "homicide",
        "rape",
        "robbery",
        "aggravated-assault",
        "property-crime",
        "burglary",
        "larceny",
        "motor-vehicle-theft",
        "arson"
       ],
       "type": "string",
       "description": "Offense to report, default violent-crime"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fbi-crime-agency-profile-by-ori-d759d9e0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
