# Japan AML & Sanctions Regulatory Events Feed

> Japan AML & Sanctions 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 paginated feed of Japan AML and sanctions regulatory events including JAFIC criminal-proceeds enforcement, MOF asset freezes, and FATF-related items, in human-reviewed English.

## Facts

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

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-aml-sanctions-regulatory-events-feed-e7db91cb
```

Example prompt: Pull the latest 20 Japan AML and sanctions regulatory events from the agentfeeds feed — I want to see recent JAFIC enforcement actions, MOF asset freezes, and anything FATF-related since 2024-01-01.

## When to prefer this

Choose this endpoint when you need structured, human-reviewed English-language coverage of Japan-specific AML and sanctions regulatory events (JAFIC, MOF asset freezes, FATF) rather than global sanctions feeds or raw Japanese-language government sources. Prefer it over generic news APIs when compliance-grade factual reporting on Japan's AML regulatory landscape is required.

## Known failure modes

- Invalid 'since' date format returns a 400 error
- limit parameter out of range may return 422
- No events matching the query window returns an empty list
- Service temporarily unavailable returns 503
- Payment not processed (x402) results in 402 Payment Required response

## How this service works

AML & sanctions segment of Japan regulatory events: JAFIC (criminal-proceeds act), MOF asset freezes, enforcement actions, FATF-related items. English, human-reviewed. Factual reporting only; not legal advice.

## Output

A list of Japan AML and sanctions regulatory events, each containing details such as event type (JAFIC enforcement, MOF asset freeze, FATF item), date, description, and relevant authority — in human-reviewed English. Results are paginated via limit and since parameters.

## 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"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "en_title": "Amendment to the Act on Prevention of Transfer of Criminal Proceeds",
    "source_name": "JAFIC"
   }
  ],
  "kind": "factual_data",
  "product": "reg.events.aml"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/japan-aml-sanctions-regulatory-events-feed-e7db91cb/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)
