# FBI UCR/NIBRS Crime Rate Benchmark

> FBI UCR/NIBRS Crime Rate Benchmark is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Returns annualized crime rates per 100,000 people by year for a specified offense at the national or US state level, sourced from public FBI UCR and NIBRS data.

## Facts

- Endpoint: GET https://api.agentstools.dev/crime/benchmark
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fbi-ucr-nibrs-crime-rate-benchmark-677d9e5d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e-xzjsR5hKStIM93suNIJ

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-ucr-nibrs-crime-rate-benchmark-677d9e5d
```

Example prompt: What's the FBI baseline crime rate for aggravated assault in Texas over the last 3 years — I need it per 100,000 people so I can anchor a local safety score.

## When to prefer this

Use this endpoint when you need a deterministic, authoritative baseline crime rate from official FBI UCR/NIBRS data to anchor, compare, or contextualize a local crime score. Prefer this over AI-generated estimates or non-FBI sources when accuracy and reproducibility matter. Ideal for safety scoring pipelines, real estate analysis, insurance underwriting, or public policy research.

## Known failure modes

- Invalid or unsupported offense enum value returns an error
- Invalid state abbreviation (not a 2-letter US state code) returns an error
- Years parameter outside 1–10 range returns a validation error
- No data available for a very recent reporting year may return incomplete results

## How this service works

National or state baseline crime rates for an offense and window from public FBI UCR and NIBRS data. Give an offense and an optional 2-letter state and get the annualized rate per 100,000 people by year, for anchoring a local score. Deterministic, no AI.

## Output

Returns a time-series of annualized crime rates per 100,000 people broken down by year for the requested offense, scoped to either a specific US state or the national level, sourced deterministically from public FBI UCR/NIBRS data.

## 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",
     "properties": {
      "state": {
       "type": "string",
       "description": "Optional 2-letter US state; omit for national"
      },
      "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 benchmark, 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-ucr-nibrs-crime-rate-benchmark-677d9e5d/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)
