# agentfeeds.jp Japan Sanctions & Asset-Freeze Regulatory Events Feed

> agentfeeds.jp Japan Sanctions & Asset-Freeze Regulatory Events Feed 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).

Returns a time-scoped feed of Japan sanctions and asset-freeze regulatory events (資産凍結・経済制裁) from official JP MOF sources, human-reviewed and in English

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/reg/events/sanctions
- 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-japan-sanctions-asset-freeze-regulatory-events-feed-05c2ec22
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WLJPQTpXmUDo5O6Vyca_c

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-japan-sanctions-asset-freeze-regulatory-events-feed-05c2ec22
```

Example prompt: Pull the last 50 Japan sanctions and asset-freeze regulatory events since January 1, 2025 — I need the human-reviewed English feed from agentfeeds.jp for our compliance review.

## When to prefer this

Choose this endpoint when you need only the narrow sanctions/asset-freeze subset of Japan regulatory events (not broader AML/CFT process items like travel rule or suspicious-transaction reporting). Prefer it over the broader reg.events.aml endpoint when your compliance workflow specifically targets 経済制裁 and 資産凍結 designations, or when you need a lighter, focused feed. Also prefer over the daily digest endpoint when you need real-time or incremental polling rather than a once-a-day batch.

## Known failure modes

- Invalid 'since' date format returns 400 error
- 'limit' exceeding server maximum returns 400 or truncated results
- No events in the requested date range returns empty list
- Payment not processed (x402) returns 402 Payment Required
- Category filter with invalid value returns 400 error
- Service unavailable returns 503

## How this service works

Narrow sanctions/asset-freeze segment of Japan regulatory events (資産凍結・経済制裁 items only) -- a tighter subset of reg.events.aml, which also covers broader AML/CFT process items (travel rule, suspicious-transaction reporting). English, human-reviewed. Factual reporting only; not legal advice.

## Output

A list of Japan sanctions and asset-freeze regulatory events (資産凍結・経済制裁), each with event metadata such as publication date, category, and human-reviewed English description, scoped by the requested date range and limit.

## 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"
      },
      "category": {
       "type": "string"
      }
     }
    }
   },
   "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-japan-sanctions-asset-freeze-regulatory-events-feed-05c2ec22/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)
