API · /fbi-api

FBI Wanted API

healthy 3,410 Subscribers

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.

api.oanor.com/fbi-api
Get an API key Try in playground → Contact provider

Machine-readable spec so AI agents can integrate this API.

/api/fbi-api/openapi.json
/api/fbi-api/llms.txt

Discovery: GET /api/index.json lists every API.

FBI Wanted API — live data on the oanor API marketplace

API health

healthy
Uptime
100.00%
Server probes · 24h
Avg latency
326 ms
Server probes · 24h
Subscribers
3,410
active
Total calls
38
last 7 days
status Full status page → · 6 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 1,500 calls / month
  • 2 requests / second
  • Hard cap (429 above quota, no overage)
  • 1,500 requests/month at 2 rps
  • No credit card
  • Browse & search the full Wanted list
  • Photos, charges, rewards & descriptions
Sign in to subscribe

Basic

€7.00 /month

  • 40,000 calls / month
  • 8 requests / second
  • Hard cap (429 above quota, no overage)
  • 40,000 requests/month at 8 rps
  • All categories: fugitives, missing, terrorists, seeking-info
  • Filter by field office, reward & person type
  • Commercial use allowed
Sign in to subscribe

Pro

€19.00 /month

  • 250,000 calls / month
  • 25 requests / second
  • Hard cap (429 above quota, no overage)
  • 250,000 requests/month at 25 rps
  • Full-text search across charges & aliases
  • Daily data-refresh sync from api.fbi.gov
  • Email support
Sign in to subscribe

Mega

€49.00 /month

  • 1,200,000 calls / month
  • 75 requests / second
  • Hard cap (429 above quota, no overage)
  • 1,200,000 requests/month at 75 rps
  • Highest priority routing & burst headroom
  • 99.9% uptime SLA
  • Priority support & change-feed webhooks
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

UK Police API — oanor API marketplace

UK Police API

Open UK policing data as an API, from the official data.police.uk service (UK Home Office). Pull street-level crimes within about a mile of any coordinate for a given month — each with its category, approximate street, location and judicial outcome — query stop-and-search records (type, demographics, object of search, outcome and legislation) for the same area, browse the 44 territorial police forces with contact and engagement details, and list the standard crime categories. Covers England, Wales and Northern Ireland. Ideal for property and neighbourhood-safety apps, real-estate and relocation tools, local-news and civic-data dashboards, and crime and policing research.

api.oanor.com/ukpolice-api

Shentu API — oanor API marketplace

Shentu API

Live on-chain data for Shentu (chain id shentu-2.2) — the security-focused Cosmos-SDK Layer-1 of the CertiK ecosystem, whose native token is CTK — served directly from public LCD/REST nodes with multi-node failover. The status endpoint returns the latest block height and time, chain id, the staking bond denom and the current minting inflation rate. The validators endpoint lists the active bonded validator set ranked by stake, each with its moniker, operator address, self-plus-delegated CTK, commission rate and jailed flag. The supply endpoint returns the total CTK supply, the amount bonded in staking and the resulting bonded ratio. The governance endpoint returns the most recent on-chain proposals with their id, title, status and voting window. Token amounts are converted from base micro-CTK (6 decimals) into whole CTK, and every figure is read live from the chain — nothing bundled or modelled — behind a short server-side cache with keep-warm so the feed stays fast and fresh. Ideal for staking dashboards, validator and delegator tooling, explorers, governance trackers and portfolio or analytics apps across the Cosmos and security-infrastructure ecosystem. Live keyless upstream. 5 endpoints.

api.oanor.com/shentu-api

Solana Program API — oanor API marketplace

Solana Program API

Inspect deployed Solana programs live from public Solana RPC — no key — and answer the question that matters most for safety: can this program still be changed, and by whom? For any program address it resolves the loader it runs under, whether it is executable, its on-chain ProgramData account, the upgrade authority (or that it has been made immutable / frozen), and the slot it was last deployed at. A batch endpoint audits up to twelve programs at once — perfect for checking the upgrade authority of every program a protocol depends on before you trust it — and a loaders endpoint documents Solana's program loaders. Distinct from balance, token and transaction APIs: this is the program and upgrade-authority layer that auditors, wallets and security tooling rely on to judge whether a Solana program is safe. Live from the chain; short cache only.

api.oanor.com/solanaprogram-api

Crypto Phishing Check API — oanor API marketplace

Crypto Phishing Check API

Tell whether a domain is a known crypto phishing or scam site before a wallet or user connects to it — using MetaMask's canonical eth-phishing-detect blocklist, the same list that protects millions of MetaMask users, read keyless and live. It runs the real detection logic: an exact and subdomain match against the blocklist and allowlist, plus a Levenshtein fuzzy match against high-value lookalike targets to catch typosquats like "myetherwaliet.com" or "app-wallet-uniswap.org". Check a domain or URL for a verdict (blocked, allowed, fuzzy or unknown) with the reason, search the 190,000-entry blocklist, or read its stats. The dApp-connection safety layer every wallet, browser extension, Telegram bot and security tool needs to warn users before they sign. Live, lightly cached.

api.oanor.com/phishingcheck-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for FBI Wanted API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call FBI Wanted API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for FBI Wanted API?
Free tier allows 1 request per second. Paid plans scale up to 50 requests per second on the Mega tier. Hard limits return HTTP 429 above the quota — no surprise overage charges.
How much does FBI Wanted API cost?
FBI Wanted API has a free tier with 100 calls / month. Paid plans start at €7.00 / month with higher quotas and faster rate limits.
Can I cancel my subscription anytime?
Yes. Plans are billed monthly and you can cancel anytime from your billing dashboard. No long-term contracts and no cancellation fee.
Is FBI Wanted API GDPR-compliant?
All requests to FBI Wanted API go through our EU-based gateway. Your upstream API key never leaves our server and no personal data is shared with the upstream provider beyond the request you send.

Pick an endpoint from the list on the left to see its details and try it.

Code snippets

Sign up to get an API key, then call any path under your slug.

curl https://api.oanor.com/fbi-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/fbi-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/fbi-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
    "https://api.oanor.com/fbi-api/SOME_PATH",
    headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())

Ratings

Sign in to rate.

No reviews yet.

Discussion

Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.

Sign in to start a thread or reply.

Sign in

New thread

/ 4000

📌 Pinned 🔒 Locked

·

· ·

/ 4000

🔒 This thread is locked — no new replies.

  • No threads yet — start the discussion.

Support

Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.

Sign in to open a support ticket.

Sign in

Open new ticket

Describe what you need help with. The provider team gets an email and replies on the ticket page.

  • No tickets yet for this API.

Subscription active — calls can start immediately.

Send your first request —

Subscription active — copy a snippet and fire off your first call.