# Japan MOF Crypto Sanctions Address List – Day-over-Day Diff

> Japan MOF Crypto Sanctions Address List – Day-over-Day Diff 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).

Returns day-over-day added and removed cryptocurrency addresses from Japan's Ministry of Finance asset-freeze/sanctions list, as a lightweight diff feed.

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/reg/sanctions/jp/diff
- 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-crypto-sanctions-address-list-day-over-day-diff-95a11142
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fhriMNz54osYu8xVIh1IR

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-crypto-sanctions-address-list-day-over-day-diff-95a11142
```

Example prompt: Can you pull the Japan MOF crypto sanctions address diff for changes since 2024-06-01T00:00:00Z, showing up to 50 results — I want to see which addresses were added or removed without downloading the full list.

## When to prefer this

Use this endpoint when you need incremental updates to the Japan MOF crypto sanctions address list rather than fetching the entire list every poll cycle. Ideal for compliance pipelines that run on a schedule and need only the delta since the last check. For full-list retrieval, use the /v1/reg/sanctions/addresses endpoint instead. For combined Japan MOF + OFAC screening in one call, use the one-call screening sibling endpoint.

## Known failure modes

- Invalid ISO timestamp in 'since' parameter returns a 400 error
- 'since' timestamp too far in the past may return an empty or truncated diff
- Limit parameter out of acceptable range returns validation error
- Upstream MOF list temporarily unavailable may cause 502/503
- No changes in the requested window returns an empty diff

## How this service works

Day-over-day added/removed events on Japan MOF's crypto sanctions address list. Lightweight alternative to buying the full list (/v1/reg/sanctions/addresses) every time. Factual; not legal advice.

## Output

A lightweight diff payload listing cryptocurrency addresses added to and removed from Japan's Ministry of Finance sanctions list since the requested timestamp, along with event metadata and list date information.

## 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": {
      "limit": {
       "type": "integer"
      },
      "since": {
       "type": "string",
       "description": "ISO timestamp filter"
      }
     }
    }
   },
   "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-crypto-sanctions-address-list-day-over-day-diff-95a11142/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)
