# Japan MOF Asset-Freeze Sanctions Crypto Address List

> Japan MOF Asset-Freeze Sanctions Crypto Address List 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).

Returns the full machine-readable list of cryptocurrency addresses sanctioned under Japan's Foreign Exchange and Foreign Trade Act (外為法), with designated-entity context including name, notice date, and UN reference.

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/reg/sanctions/addresses
- 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-asset-freeze-sanctions-crypto-address-list-368c68fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h7bTF6wHj6WCIamgLzMEA

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-asset-freeze-sanctions-crypto-address-list-368c68fe
```

Example prompt: Pull the full list of crypto addresses currently on Japan's MOF asset-freeze sanctions list under 外為法 — give me all chains, with entity names, notice dates, and UN refs.

## When to prefer this

Use this endpoint when you need the full bulk list of Japan MOF sanctioned crypto addresses for batch screening, compliance reporting, or building a local cache of the sanctions list. Prefer the sibling single-address screening endpoint if checking one address at a time, or the combined MOF+OFAC endpoint if you need cross-jurisdiction screening in one call.

## Known failure modes

- Invalid chain_hint value returns empty or error response
- MOF source CSV temporarily unavailable causing stale or failed fetch
- Payment not processed (x402 protocol failure) resulting in 402 response
- Rate limiting if called excessively in short window

## How this service works

Full machine-readable list of crypto addresses under Japan MOF asset-freeze sanctions (外為法), with designated-entity context (name, notice date, UN ref). Source: Ministry of Finance Japan official CSV, updated daily, attributed per 公共データ利用規約. Factual data; not legal advice.

## Output

A complete list of cryptocurrency addresses subject to Japan MOF (Ministry of Finance) asset-freeze sanctions under the Foreign Exchange and Foreign Trade Act, each annotated with the designated entity's name, the notice/designation date, and the UN reference number. Optionally filtered by chain (e.g. 'evm' or 'btc'). Data is updated daily from the official Ministry of Finance Japan CSV.

## 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",
     "properties": {
      "chain": {
       "type": "string",
       "description": "optional chain_hint filter, e.g. 'evm' or 'btc' (omit for all)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "meta": {
    "list_date": "2026-07-15",
    "addresses_total": 26
   },
   "addresses": [
    {
     "address": "0xa0e1…",
     "name_en": "Lazarus Group",
     "entry_no": "016-000068",
     "chain_hint": "evm"
    }
   ]
  },
  "kind": "factual_data",
  "product": "reg.sanctions_addresses"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/japan-mof-asset-freeze-sanctions-crypto-address-list-368c68fe/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)
