# Crime Benchmark — FBI UCR/NIBRS Baseline Rates

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

Returns annualized crime rates per 100,000 people by year from FBI UCR and NIBRS data, for a given offense type and optional US state, to serve as a national or state-level baseline.

## Facts

- Endpoint: GET https://payai.agentstools.dev/crime/benchmark
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crime-benchmark-fbi-ucr-nibrs-baseline-rates-c124982b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oSDPaIPS2X40WbSGEmsj4

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 crime-benchmark-fbi-ucr-nibrs-baseline-rates-c124982b
```

Example prompt: What's the FBI baseline violent crime rate per 100,000 people for Texas over the last 5 years? I want to anchor a local score against it.

## When to prefer this

Choose this endpoint when you need a deterministic, authoritative FBI-sourced crime rate baseline — either national or state-level — to contextualize or anchor a local crime score. It is ideal when you need reproducible year-by-year figures per 100,000 people without AI interpretation. Prefer this over general web searches or AI-generated estimates when accuracy, reproducibility, and official sourcing matter.

## Known failure modes

- Invalid or unsupported offense type enum value returns an error
- State code not recognized or malformed returns a validation error
- Years parameter outside 1–10 range returns a schema validation error
- Data unavailable for very recent years if FBI has not yet published them
- Network or payment authentication failure (402) if USDC payment is not properly included

## 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 structured response with annualized crime rates per 100,000 people broken down by year, scoped to either the national level or a specific US state, for the requested offense type and trailing year window. Data is sourced deterministically from public FBI UCR and NIBRS records with no AI inference.

## 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/crime-benchmark-fbi-ucr-nibrs-baseline-rates-c124982b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
