# Japan Financial & Digital Regulatory Events Feed

> Japan Financial & Digital Regulatory Events Feed is a paid API for AI agents from api.agentfeeds.jp, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns structured, English-language regulatory events covering Japan crypto, payments, AML, tax, and digital policy from FSA, JVCEA, JCBA, JAFIC, MOF, and NTA, filterable by category and date.

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/reg/events
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/japan-financial-digital-regulatory-events-feed-6ec32fa9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rOQgGfADwmsDnreUeua5m

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-financial-digital-regulatory-events-feed-6ec32fa9
```

Example prompt: Pull the latest Japan FSA and JVCEA regulatory events — bills and guidelines — published since 2025-01-01, up to 50 results, so I can see what's changed in crypto regulation this year.

## When to prefer this

Choose this endpoint when you need structured, human-reviewed, English-language summaries of Japan regulatory events across crypto, payments, AML, tax, and digital policy domains — especially when you need date-filtered or category-filtered results. Prefer over raw scraping or general news feeds because events are pre-structured with key dates and agency metadata. Use over the free sample endpoint (/v1/sample/reg.events) when you need current (non-delayed) data.

## Known failure modes

- Invalid 'since' date format returns a 400 error
- 'limit' outside 1-200 range returns a 400 validation error
- 'category' value not in allowed enum returns a 400 error
- Payment not included or insufficient returns a 402 requiring x402 USDC payment
- No matching events for the given filters returns an empty list rather than an error
- Service unavailable or upstream source delay returns a 503 or stale data flag

## How this service works

Japan digital & financial regulatory events — crypto-assets and payments (FSA, e-Gov public comments, JVCEA, JCBA), AML/sanctions (JAFIC, MOF), tax (NTA), plus adjacent digital regulation (AI, cybersecurity, data). Structured in English with key dates, human-reviewed before publication. Factual reporting only; not investment or legal advice. Free 15-min-delayed sample: /v1/sample/reg.events

## Output

A paginated list of structured regulatory event objects, each with a title, category (bill, pubcomment, guideline, enforcement, or other), source agency, key dates, published_at timestamp, and an English-language summary of the event's significance.

## 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",
       "description": "1-200, default 50"
      },
      "since": {
       "type": "string",
       "description": "ISO date filter on published_at"
      },
      "category": {
       "enum": [
        "bill",
        "pubcomment",
        "guideline",
        "enforcement",
        "other"
       ],
       "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": [
   {
    "id": 1,
    "category": "pubcomment",
    "en_title": "Results of Public Comment on Draft AML Guidelines",
    "key_dates": {
     "published": "2026-07-17"
    },
    "en_summary": "The FSA published the results of the public comment period...",
    "source_url": "https://www.fsa.go.jp/news/...",
    "source_name": "FSA"
   }
  ],
  "kind": "factual_data",
  "product": "reg.events"
 }
}
```

## More

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