Federal Bureau of Investigation List API

The List API from Federal Bureau of Investigation — 1 operation(s) for list.

Operations 1

GET /list Federal Bureau of Investigation Retrieve list of FBI wanted individuals

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/federal-bureau-of-investigation-list-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

federal-bureau-of-investigation-list-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: FBI Most Wanted List API
  description: The FBI Most Wanted API is designed to help developers easily get information on the FBI Wanted program, including Ten Most Wanted Fugitives, Most Wanted Terrorists, kidnappings and missing persons, and seeking information cases.
  version: 1.0.0
servers:
- url: https://api.fbi.gov/wanted/v1
tags:
- name: List
paths:
  /list:
    get:
      summary: Federal Bureau of Investigation Retrieve list of FBI wanted individuals
      description: Fetches a list of FBI wanted individuals, with optional filters for field offices and paging.
      parameters:
      - name: field_offices
        in: query
        required: false
        description: Filter by specific FBI field offices (e.g., miami, new-york, los-angeles).
        schema:
          type: string
      - name: page
        in: query
        required: false
        description: Specifies the page of results to return (used for pagination).
        schema:
          type: integer
      - name: sort_on
        in: query
        required: false
        description: Specifies the field to sort results by (e.g., title, reward, etc.).
        schema:
          type: string
      - name: sort_order
        in: query
        required: false
        description: Specifies the order of the sorting (asc or desc).
        schema:
          type: string
          enum:
          - asc
          - desc
      responses:
        '200':
          description: Successful response containing the list of FBI wanted individuals.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FBIWantedResponse'
        '400':
          description: Invalid query parameters or bad request.
        '404':
          description: No results found for the given query parameters.
        '500':
          description: Internal server error.
      tags:
      - List
components:
  schemas:
    FBIWantedItem:
      type: object
      properties:
        title:
          type: string
          description: The title of the wanted individual (e.g., their name or alias).
        description:
          type: string
          description: Short description of the individual or the crime.
        reward:
          type: string
          description: Reward amount offered for information.
        url:
          type: string
          description: URL linking to the full FBI wanted details.
        field_offices:
          type: array
          description: List of FBI field offices related to the case.
          items:
            type: string
    FBIWantedResponse:
      type: object
      properties:
        total:
          type: integer
          description: Total number of results.
        page:
          type: integer
          description: The current page number.
        items:
          type: array
          description: List of FBI wanted individuals.
          items:
            $ref: '#/components/schemas/FBIWantedItem'