Interpol Red Notices API
Overview
The Interpol Red Notices API provides free access to Interpol's public database of Red Notices, which are international requests to locate and arrest wanted persons. No authentication is required, making it easy to query directly. You can search by name, nationality, and other criteria to build security research tools or awareness applications.
Beginner Tip
The API is hosted at ws-public.interpol.int and is publicly accessible without a key. Start with a simple GET to /notices/v1/red to retrieve the latest notices without any filters.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Interpol Red Notices",
"description": "Access and search Interpol Red Notices",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
_embedded.notices Array of Red Notice objects matching the current query and page forename First name of the wanted person as registered with Interpol name Surname or family name of the wanted person nationalities List of nationality codes (ISO 3166-1 alpha-2) associated with the individual entity_id Unique Interpol identifier for this Red Notice record, usable to fetch full details _links.self.href URL to retrieve the full detail record for this specific notice Implementation Example
const url = "https://interpol.api.bund.dev/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Bank Negara Malaysia Open Data
⭐ Beginner's PickBank Negara Malaysia Open Data provides free access to official financial data published by Malaysia's central bank, including exchange rates, interest rates, and key economic indicators.
BCLaws
BCLaws gives you free access to the full text of British Columbia's laws and regulations.
Brazil
⭐ Beginner's PickBrasilAPI is a free, community-driven API that centralizes public data about Brazil in one easy-to-use place.
Brazil Central Bank Open Data
The Brazil Central Bank Open Data API provides free access to official financial and economic data from Brazil s central bank (Banco Central do Brasil).
Brazil Receita WS
Brazil Receita WS lets you look up official information about Brazilian companies using their CNPJ (tax registration number).