# agentfeeds.jp Japan Regulatory Events Realtime Feed

> agentfeeds.jp Japan Regulatory Events Realtime Feed 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 all Japan regulatory events from the most recent hourly crawl cycle across 7 sources, in English, with human review.

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/reg/events/realtime
- 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/agentfeeds-jp-japan-regulatory-events-realtime-feed-8c7d8b27
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JTiijXxFzxXGfshD13VbJ

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-regulatory-events-realtime-feed-8c7d8b27
```

Example prompt: Check agentfeeds.jp for any Japan regulatory events published in the last crawl cycle — specifically enforcement actions — and let me know if anything new came in.

## When to prefer this

Use this endpoint when you need the very latest Japan regulatory events (within the past hour) and want minimal cost when nothing is new. Prefer this over the daily digest endpoint when you need real-time monitoring or are polling frequently. Choose this over general web search when you need curated, human-reviewed, multi-source Japan regulatory data in structured English.

## Known failure modes

- Empty array returned when no new events exist in the latest crawl cycle — not an error, but expected behavior
- Network or payment failure (HTTP 402 if x402 payment not processed correctly)
- Invalid category enum value causes request rejection
- Rate limiting or upstream crawl service unavailability

## How this service works

Only the most recent hourly crawl cycle of Japan regulatory events (all 7 sources, all categories). Returns an empty array at minimal cost when there is nothing new. English, human-reviewed. Factual reporting only; not legal advice.

## Output

An array of Japan regulatory events from the most recent hourly crawl, each with category, source, description, and timestamp. Returns an empty array if no new events were published in the last crawl cycle. English-language, human-reviewed, factual reporting only.

## 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": {
      "category": {
       "enum": [
        "bill",
        "pubcomment",
        "guideline",
        "enforcement",
        "other"
       ],
       "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-regulatory-events-realtime-feed-8c7d8b27/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)
