# FBI Wanted API
> Browse and search the official FBI Wanted list — fugitives, missing persons, terrorists and seeking-information cases — with charges, cautions, rewards, physical descriptions, field offices and photos. Useful for news, public-safety, security-research and OSINT apps.

## Authentication
All requests require your oanor API key in the `x-oanor-key` header. Get one at https://www.oanor.com/developer/keys.

```bash
curl -H "x-oanor-key: oanor_live_…" "https://api.oanor.com/fbi-api/..."
```

## Pricing
- **Free** (Free) — 1,500 calls/Mo, 2 req/s
- **Basic** ($7/Mo) — 40,000 calls/Mo, 8 req/s
- **Pro** ($19/Mo) — 250,000 calls/Mo, 25 req/s
- **Mega** ($49/Mo) — 1,200,000 calls/Mo, 75 req/s

## Endpoints

### FBI

#### `GET /v1/list` — Browse the wanted list

**Parameters:**
- `page` (query, optional, string) — Page number Example: `1`
- `limit` (query, optional, string) — Max 1-50 Example: `20`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/fbi-api/v1/list?page=1&limit=20"
```

**Response:**
```json
{
    "data": {
        "page": 1,
        "count": 20,
        "total": 1169,
        "results": [
            {
                "sex": "Male",
                "uid": "650c7a28eb26846598ea425244513814",
                "url": "https://www.fbi.gov/wanted/additional/steven-eugene-clifford",
                "eyes": "blue",
                "hair": "blond",
                "race": "white",
                "title": "STEVEN EUGENE CLIFFORD",
                "height": {
                    "max": 70,
                    "min": 70
                },
                "images": [
                    {
                        "large": "https://www.fbi.gov/wanted/additional/steven-eugene-clifford/@@images/image/large",
                        "thumb": "https://www.fbi.gov/wanted/additional/steven-eugene-clifford/@@images/image/thumb",
                        "caption": "Photograph taken in 2002"
                    },
                    {
                        "large": "https://www.fbi.gov/wanted/additional/steven-eugene-clifford/clifford_se2.jpg/@@images/image/large",
                        "thumb": "https://www.fbi.gov/wanted/additional/steven-eugene-clifford/clifford_se2.jpg/@@images/image/thumb",
                        "caption": "Photograph taken in 2002"
                    },
                    {
                        "large": "https://www.fbi.gov/wanted/additional/steven-eugene-clifford/clifford_se3.jpg/@@images/image/large",
                        "thumb": "https://www.f
…(truncated, see openapi.json for full schema)
```

#### `GET /v1/person` — Wanted person by uid

**Parameters:**
- `uid` (query, required, string) — Hex wanted-person id

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/fbi-api/v1/person"
```

#### `GET /v1/search` — Search by title

**Parameters:**
- `q` (query, required, string) — Search term Example: `murder`
- `limit` (query, optional, string) — Max 1-50 Example: `20`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/fbi-api/v1/search?q=murder&limit=20"
```

**Response:**
```json
{
    "data": {
        "count": 5,
        "query": "murder",
        "total": 5,
        "results": [
            {
                "sex": null,
                "uid": "3c8f18b0ad984638b77a289e3d206e0d",
                "url": "https://www.fbi.gov/wanted/seeking-info/murder-and-robbery-investigation",
                "eyes": null,
                "hair": null,
                "race": null,
                "title": "MURDER AND ROBBERY INVESTIGATION",
                "height": null,
                "images": [
                    {
                        "large": "https://www.fbi.gov/wanted/seeking-info/murder-and-robbery-investigation/@@images/image/large",
                        "thumb": "https://www.fbi.gov/wanted/seeking-info/murder-and-robbery-investigation/@@images/image/thumb",
                        "caption": null
                    },
                    {
                        "large": "https://www.fbi.gov/wanted/seeking-info/murder-and-robbery-investigation/motel-2.jpg/@@images/image/large",
                        "thumb": "https://www.fbi.gov/wanted/seeking-info/murder-and-robbery-investigation/motel-2.jpg/@@images/image/thumb",
                        "caption": null
                    },
                    {
                        "large": "https://www.fbi.gov/wanted/seeking-info/murder-and-robbery-investigation/motel-4.jpg/@@images/image/large",
                        "thumb": "https://www.fbi.gov/wanted/seeking-info/murder-and-robbery-investigation
…(truncated, see openapi.json for full schema)
```


---
Marketplace page: https://www.oanor.com/api/fbi-api
OpenAPI spec: https://www.oanor.com/api/fbi-api/openapi.json
