# agentfeeds.jp Sanctions Entity View — Multi-List Name Search (UK OFSI + JP MOF + OFAC)

> agentfeeds.jp Sanctions Entity View — Multi-List Name Search (UK OFSI + JP MOF + OFAC) is a paid API for AI agents from api.agentfeeds.jp, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Searches a person or entity name against UK OFSI, JP MOF, and OFAC sanctions lists simultaneously in a single API call, returning consolidated match results.

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/reg/sanctions/entity_view
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentfeeds-jp-sanctions-entity-view-multi-list-name-search-uk-ofsi-jp-2e761b95
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZAs0Wqf_hclTw5SMU-TOi

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 agentfeeds-jp-sanctions-entity-view-multi-list-name-search-uk-ofsi-jp-2e761b95
```

Example prompt: Can you check whether 'Sunrise Trading LLC' appears on any of the UK OFSI, Japan MOF, or OFAC sanctions lists — just search the name across all three at once?

## When to prefer this

Prefer this endpoint when you need to screen an entity name against all three major sanctions lists (UK OFSI, JP MOF, OFAC) in a single API call rather than making three separate calls. Ideal for compliance workflows requiring multi-jurisdiction name screening with minimal latency and cost. Use this instead of calling sanctions.uk.check and sanctions.cross_check separately when you need consolidated results.

## Known failure modes

- Missing required 'name' query parameter — returns validation error
- Name string exceeds 200 characters — rejected by schema
- Service unavailable or upstream list data temporarily inaccessible — 5xx error
- No matches found — returns empty result set (not an error)
- Ambiguous partial name matches too many entities — large result payload

## How this service works

Runs the same substring name search already used by sanctions.uk.check, plus the JP MOF and OFAC name lookups behind sanctions.cross_check, against all three lists in a single call instead of three separate ones. Same underlying data and matching method as those two products -- no new list, no new matching logic. Factual screening data; not legal or compliance advice.

## Output

Returns consolidated sanctions screening results showing whether the queried name matches entries on the UK OFSI sanctions list, the Japan Ministry of Finance (MOF) list, and/or the OFAC list. Results include per-list hit details using the same substring matching logic as the individual sanctions.uk.check and sanctions.cross_check products.

## 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/agentfeeds-jp-sanctions-entity-view-multi-list-name-search-uk-ofsi-jp-2e761b95/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)
