# Japan MOF + OFAC SDN Global Sanctions Screener

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

Screens a blockchain address against both Japan MOF asset-freeze list and OFAC SDN List digital currency addresses in a single API call

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/reg/sanctions/global
- Price: $0.005/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-ofac-sdn-global-sanctions-screener-0b178b30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sJEwZlQsV2Nv7Co5LQ1uV

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-ofac-sdn-global-sanctions-screener-0b178b30
```

Example prompt: Can you run a sanctions check on the blockchain address 0x3f5CE5FBFe3E9af3971dD833D26bA9b5C936f0bE against both the Japan MOF asset-freeze list and the OFAC SDN digital currency list?

## When to prefer this

Use this endpoint when you need to screen a single digital currency address against both Japan MOF and OFAC SDN lists simultaneously in one call, avoiding two separate API requests. Prefer this over the OFAC-only sibling endpoint when Japan regulatory compliance is also required. Best for agents building Japan-US cross-border crypto compliance workflows. Note: UN, EU, and UK lists are not yet included.

## Known failure modes

- Address parameter missing or malformed — returns 400 error
- Address shorter than 20 chars or longer than 100 chars — validation error
- UN/EU/UK sanctions lists not covered — may give false sense of comprehensive global coverage
- List data may be slightly stale between refresh cycles — check freshness heartbeat endpoint
- Payment not processed (x402) — endpoint returns 402 Payment Required

## How this service works

One-call screening across Japan MOF asset-freeze list and OFAC SDN List (digital currency addresses). Upgrade path from /v1/reg/sanctions/check. UN/EU/UK lists not yet included. Factual; not legal advice.

## Output

Returns whether the queried blockchain address appears on the Japan MOF asset-freeze list and/or the OFAC SDN List digital currency addresses, providing a combined sanctions screening result across both jurisdictions in a single response

## 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": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "20-100 alphanumeric chars"
      }
     }
    }
   },
   "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-ofac-sdn-global-sanctions-screener-0b178b30/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)
