$0.01
per call · USD Coin on Base
Screen a government-issued identifier (passport, national ID, tax ID) against OFAC SDN and other global sanctions lists, with exact and substring matching ranked by similarity. Call during KYC/KYB identity verification. Returns per-list matches with source URLs.
Endpoint
GET https://api.compliapi.com/api/v1/screen/id/:government_id3
Calls / 30d
1
Unique payers / 30d
Aug 27
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://api.compliapi.com/api/v1/screen/id/:government_id", {
method: "GET",
});
const data = await res.json();curl -X GET \
"https://api.compliapi.com/api/v1/screen/id/:government_id?lists=ofac%2Cofac_consolidated" \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"flagged": false,
"lists_checked": [
"ofac",
"ofac_consolidated",
"eu_fsf",
"uk_fcdo_sanctions"
],
"matches": [],
"sanctioned": false,
"value": "X1234567"
}Payment details
0x7c221925dd7494da6f5e2254043dc8d61273309cUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Data & Enrichment and the homepage with a featured placement.
More from CompliAPI & similar services
CompliAPI · Screen Country
api.compliapi.com
Check whether a country or region carries sanctions designations, such as comprehensive OFAC embargoes. Call to gate signups, shipments or transactions by country. Accepts a country name or ISO code; returns the designating lists with source URLs.
CompliAPI · Screen Email
api.compliapi.com
Screen an email address against OFAC SDN and other global sanctions lists. Call during onboarding or KYC review to check whether an email is associated with a sanctioned entity. Returns per-list matches with source URLs.
CompliAPI · Screen Crypto
api.compliapi.com
Screen a cryptocurrency wallet address (EVM, Bitcoin, Tron, Solana or any chain) or ENS name against OFAC SDN, OFAC Consolidated and 10+ global sanctions, crime and risk lists. Call before accepting a deposit, sending a withdrawal, or onboarding a wallet. Returns per-list matches with source URLs; `sanctioned` means a sanctions-list hit, `flagged` also covers crime and risk lists.