# FBI — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and retrieve profiles of individuals listed on the FBI's Most Wanted pages, including charges, physical descriptions, aliases, reward amounts, and photographs. Browse by category, search by name, or look up a specific person by ID.

**Category:** Government & Public Data | **Website:** [www.fbi.gov/investigate/terrorism/most-wanted](https://www.fbi.gov/investigate/terrorism/most-wanted) | **Docs:** [parse.bot/marketplace/80f024bf-ac1f-47e0-9c2d-6f4b35872852/fbi-gov-api](https://parse.bot/marketplace/80f024bf-ac1f-47e0-9c2d-6f4b35872852/fbi-gov-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-fbi-gov-api-80f024bf/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_person

Get detailed information about a specific wanted person by their unique ID. Returns the full profile including physical description, charges, aliases, reward information, and images.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `uid` | string | Yes | Unique identifier of the wanted person (from list_most_wanted or search_wanted results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fbi-gov-api-80f024bf/get_person \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"uid":"<string>"}'
```

### list_most_wanted

List all FBI terrorism most wanted persons. Returns persons from 3 subcategories: Most Wanted Terrorists, Seeking Information - Terrorism, and Domestic Terrorism. Paginates through all results internally and returns the complete list for the selected category.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter by subcategory. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fbi-gov-api-80f024bf/list_most_wanted \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```

### search_wanted

Search all FBI wanted persons by name/title with pagination. The query parameter matches against person titles (names) specifically, not general keywords. Searches across all categories (not just terrorism).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `classification` | string | No | Filter by poster classification. Empty string returns all classifications. |
| `page` | integer | No | Page number (1-indexed). |
| `page_size` | integer | No | Number of results per page (max 50). |
| `query` | string | No | Search term matched against person titles/names. Partial matches supported. Empty string returns all results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fbi-gov-api-80f024bf/search_wanted \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"classification":"<string>","page":"<integer>","page_size":"<integer>","query":"<string>"}'
```
