# UK Sanctions List (OFSI) Fuzzy Name Screening

> UK Sanctions List (OFSI) Fuzzy Name Screening is a paid API for AI agents from api.agentfeeds.jp, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Performs a fuzzy name match against the UK OFSI sanctions list to check if an individual or entity is subject to UK financial sanctions.

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/reg/sanctions/uk/check
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/uk-sanctions-list-ofsi-fuzzy-name-screening-13acb5b8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wA9G0Okeo2kPu9TT18a8Z

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability uk-sanctions-list-ofsi-fuzzy-name-screening-13acb5b8
```

Example prompt: Can you check if 'Viktor Petrov' appears on the UK OFSI sanctions list — run a fuzzy name match and tell me if there are any hits and which sanctions regime they fall under?

## When to prefer this

Use this endpoint when you need to screen an individual or entity name against the UK OFSI sanctions list specifically, and name-only fuzzy matching is sufficient. Prefer this over OFAC or multi-jurisdiction endpoints when UK-only sanctions compliance is the requirement. Choose this when you do not have a crypto address to screen and need a textual name match only.

## Known failure modes

- Missing required 'name' query parameter returns a 400 error
- Name string exceeding 200 characters is rejected
- No matches found returns an empty results array (not an error)
- Service unavailable if upstream gov.uk data feed is stale or inaccessible
- Ambiguous short names may return many false-positive fuzzy matches

## How this service works

Fuzzy name match against the UK Sanctions List (OFSI): individuals and entities under UK financial sanctions regimes. Source: gov.uk, Open Government Licence v3.0 (Crown copyright, commercial use permitted). No crypto-address field exists in the underlying data, so unlike sanctions.ofac.check this is name-only. Factual screening data; not legal or compliance advice.

## Output

Returns fuzzy-matched results from the UK OFSI sanctions list, including matched names, associated sanctions regimes, and match confidence or similarity details. No crypto-address screening; name-only matching against Crown copyright gov.uk data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "1-200 chars, partial match"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uk-sanctions-list-ofsi-fuzzy-name-screening-13acb5b8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentfeeds.jp](https://www.zero.xyz/host/api.agentfeeds.jp/llms.txt)
