# Japan MOF Sanctions Bulk Address Screener

> Japan MOF Sanctions Bulk Address Screener is a paid API for AI agents from api.agentfeeds.jp, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Screens up to 100 crypto addresses in a single call against Japan's Ministry of Finance asset-freeze sanctions list

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/reg/sanctions/check/bulk
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/japan-mof-sanctions-bulk-address-screener-4ad84812
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_149EM5050qo002V4ES-I0

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 japan-mof-sanctions-bulk-address-screener-4ad84812
```

Example prompt: Can you screen these 50 crypto wallet addresses against Japan's MOF asset-freeze sanctions list and tell me which ones, if any, are flagged: 0xABC123..., 0xDEF456..., 0x789GHI...?

## When to prefer this

Use this endpoint when you need to screen multiple (up to 100) crypto addresses simultaneously against Japan's MOF sanctions list in one API call, rather than making individual single-address calls. Prefer this over the single-address OFAC endpoint when the jurisdiction of concern is Japan specifically (MOF asset-freeze list), not US OFAC SDN. Best for batch compliance workflows requiring Japan-specific AML checks.

## Known failure modes

- More than 100 addresses submitted — returns 400 error
- Malformed address format (not 20-100 alphanumeric chars) — validation error
- Empty addresses parameter — required field missing error
- Payment not attached or insufficient — 402 Payment Required
- MOF source CSV temporarily unavailable — service may return stale or error response

## How this service works

Batch screening of up to 100 crypto addresses against Japan MOF asset-freeze sanctions list in a single call. Source: Ministry of Finance Japan official CSV. Factual; not legal advice.

## Output

Returns per-address sanctions match results indicating whether each address appears on Japan MOF's official asset-freeze CSV list, including hit/no-hit status for each of the submitted addresses in the batch

## 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": [
      "addresses"
     ],
     "properties": {
      "addresses": {
       "type": "string",
       "description": "comma-separated list, 1-100 addresses (20-100 alphanumeric chars each)"
      }
     }
    }
   },
   "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/japan-mof-sanctions-bulk-address-screener-4ad84812/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)
