FBI Wanted
FBI Most Wanted list as structured JSON
The FBI's public Wanted API returns current cases — fugitives, missing persons and seeking-information notices — with photos, descriptions, subjects and field offices. No key; paginate with page/pageSize. Official US government open data.
GET https://api.fbi.gov/wanted/v1/list
{
"total": 1199,
"items": [
{
"files": [
{
"url": "https://www.fbi.gov/wanted/seeking-info/patrick-carlow-sr/download.pdf",
"name": "English"
}
],
"age_range": null,
"uid": "cdb8134918884264bee2a5c1296c3750",
"weight": null,
"occupations": null,
"field_offices": [
"minneapolis"
],
"locations": null,
"reward_text": "The FBI is offering a reward of up to $25,000 for information leading to the arrest and conviction of the individual(s) responsible for the death of Patrick Carlow, Sr."
},
{
"files": [
{
"url": "https://www.fbi.gov/wanted/additional/alberto-perez-elias/download.pdf",
"name": "English"
}
],
"age_range": null,
"uid": "3992cf07e26848bab7fd7b6bb58f60a2",
"weight": "150 pounds",
"occupations": null,
"field_offices": [
"tampa"
],
"locations": null,
"reward_text": null
}
],
"page": 1
}curl "https://api.fbi.gov/wanted/v1/list"const res = await fetch("https://api.fbi.gov/wanted/v1/list");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.fbi.gov/wanted/v1/list")
print(res.json())/wanted/v1/listPROBEDFBI Most Wanted list as structured JSON
/randomRandom item from the collection.
/wantedWanted — documented GET route.
/wanted/1Wanted details by ID (example: 1).
/wanted?limit=10Wanted — documented GET route.
/wanted/search?q=testSearch by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
FBI Wanted: common questions
Is FBI Wanted free to use?
Yes — FBI Wanted is a free government API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does FBI Wanted need an API key?
No — FBI Wanted needs no API key or signup. You can call it straight away; rate limits still apply (Retry-After: 47245s).
Can I call FBI Wanted from the browser?
Yes — FBI Wanted returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is FBI Wanted up right now?
As of our last scheduled check, FBI Wanted is healthy with 94.1% uptime over 90 days and a 378 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.