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

The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.

Interpol Red Notices data via REST API

Example Response

Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.

JSON Response · Illustrative
{
  "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

Calls a real endpoint of this API. Replace any placeholder credentials with your own key.

Request
const url = "https://ws-public.interpol.int/notices/v1/red?resultPerPage=5&page=1";
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

Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.

Empty _embedded.notices array Filter combination returns no results (e.g., unknown nationality code)
Use the standard ISO 3166-1 alpha-2 country codes for nationality filters and try broadening your search
CORS error in browser The API may restrict direct browser-based requests from unknown origins
Route your requests through a backend server or serverless function to avoid CORS issues
429 Too Many Requests Sending too many requests in a short period
Add delays between requests and cache results locally since the data does not change frequently

Metadata Score Breakdown

Estimated from metadata — endpoint not independently tested

This score is estimated from observable metadata — HTTPS support, authentication model, declared CORS, and documentation reachability — because the API requires authentication or exposes no publicly testable endpoint. The five-signal breakdown is only shown for live-tested APIs.

Metadata estimate · endpoint not independently tested

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS UNKNOWN
Category Government
Difficulty Beginner
Listing details not endpoint-verified

Similar APIs

View All →