# SuVerse GovHub — FBI Crime Data Explorer

> SuVerse GovHub — FBI Crime Data Explorer is a paid API for AI agents from api.suverse.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Queries FBI crime statistics by state, offense type, and year range via a pay-per-call gateway

## Facts

- Endpoint: POST https://api.suverse.io/v1/gov/fbi_crime_data
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-govhub-fbi-crime-data-explorer-2cb2f913
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E7WvQlC3r1MxmL3It5Kx_

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 suverse-govhub-fbi-crime-data-explorer-2cb2f913 -d '<json body>'
```

Example prompt: Pull up the FBI crime data for violent offenses in California from 2018 to 2022 and show me what the numbers look like.

## When to prefer this

Use this endpoint when you need structured, on-demand access to FBI crime statistics filtered by state, offense, and year range without managing your own FBI API credentials or data pipeline. Ideal for agents that need occasional crime data lookups at low cost ($0.01/call) rather than bulk data downloads. Prefer over direct FBI API integration when you want a simple pay-per-call model with no API key management.

## Known failure modes

- Invalid or unsupported state abbreviation returns an error or empty result
- Unrecognized offense type string causes a query failure or no data returned
- Year range outside available FBI data coverage returns empty or partial results
- Missing required parameters may cause a 400-level error
- Payment failure (insufficient USDC balance) blocks the request via x402 protocol

## How this service works

SuVerse GovHub — FBI Crime Data Explorer (fbi.crime_data)

## Output

Returns FBI crime statistics matching the specified state, offense type, and year range — typically including offense counts or rates aggregated from federal reporting, sourced from the FBI Crime Data Explorer.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "params": {
   "type": "object",
   "properties": {
    "state": {
     "type": "string"
    },
    "offense": {
     "type": "string"
    },
    "to_year": {
     "type": "number"
    },
    "from_year": {
     "type": "number"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-govhub-fbi-crime-data-explorer-2cb2f913/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.suverse.io](https://www.zero.xyz/host/api.suverse.io/llms.txt)
