Developers

A screening API built for developers

The WhoWiki API screens names against sanctions, PEP, and adverse media, and verifies businesses, from the same primary sources our tools use. One REST call returns matches with the source and date on each. Start without a sales call.

Get an API key
Read the docs
What you can do

Four calls, one endpoint style

Screen names

Check a person or entity against sanctions, PEP, and adverse media in a single call.

Verify businesses

Confirm a company, its LEI, VAT, and IBAN details from official registries.

Monitor

Save entities and get a webhook when a new listing matches, so screening stays current.

Trace every result

Each response carries the source list and date behind every match.

Example

One request, a clear response

Request
curl https://api.whowiki.org/v1/screen \
  -H "Authorization: Bearer ww_live_xxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{"name": "Meridian Capital Partners",
       "types": ["sanctions", "pep", "adverse_media"]}'

Response
{
  "query": "Meridian Capital Partners",
  "sanctions": "clear",
  "pep": "clear",
  "matches": [
    {
      "type": "adverse_media",
      "score": 0.82,
      "source": "news",
      "date": "2026-06-12"
    }
  ],
  "checked_at": "2026-06-12T14:32:00Z"
}

Example request and response. See the full reference for every field, error code, and language example.

Why build on WhoWiki

Built for the person writing the code

Getting started

Live in three steps

1

Get a key

Request access and generate an API key in your account. Keep it server-side.

2

Make a call

Send a name to the screen endpoint with the checks you want to run.

3

Handle matches

Read the matches array. Clear the false positives, review the rest, and record what you keep.

Full reference and language examples ›

Pricing

Free to test, priced by volume

A free tier covers testing and low volume. Paid plans scale with the calls you make, and add monitoring and webhooks. You pay for usage, not for access to public lists.

See plans and limits ›

Questions

API questions

What does the WhoWiki API do?
It screens a name against sanctions, PEP, and adverse media lists, and verifies businesses, over a REST endpoint. Each response carries the source list and date behind every match, drawn from the same primary sources as the tools.
How do I authenticate?
With a bearer token in the Authorization header. You generate and manage keys in your account. Keep your key server-side.
Is there a free tier?
Yes. A free tier covers testing and low volume. Paid plans scale with the number of calls you make. See the pricing page for the current limits.
What data sources does the API use?
The same primary government and open sources as the tools: OFAC, the EU list, the UN list, the UK OFSI list, GLEIF, and more. See the data sources page for the full list and licensing.
Can I monitor entities for new matches?
Yes. Save an entity and get a webhook when a new listing matches, so you re-screen continuously instead of on a schedule.
Related:
Documentation ›·
Data sources ›·
Pricing ›·
Browse the tools ›