# agentfeeds.jp Japan Regulatory Events History

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

Retrieves paginated, human-reviewed historical Japan regulatory events over a specified date range, with optional category filtering.

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/reg/events/history
- Price: $0.05/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-history-40ad56a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MK0-gH9vn2HVbDKwgoEoe

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-history-40ad56a7
```

Example prompt: Pull all reviewed Japan regulatory events from January 1, 2025 to March 31, 2025, category 'guideline', up to 200 results starting at offset 0.

## When to prefer this

Use this endpoint when you need bulk historical retrieval of Japan regulatory events over a defined date range, especially when you want to paginate through many records or filter by a specific regulatory category. Prefer this over the daily digest endpoint when you need multi-day or multi-month historical coverage rather than just yesterday's events.

## Known failure modes

- Missing required 'from' date parameter returns 400 error
- Invalid ISO date format returns 400 error
- Invalid category enum value returns 400 error
- Limit outside 1-200 range returns 400 error
- Date range with no matching events returns empty results array
- Payment failure or insufficient USDC balance returns 402 error
- Server-side timeout for very large date ranges may return 503

## How this service works

Paginated date-range query over reviewed past Japan regulatory events (all sources, optional category filter). For bulk historical retrieval rather than polling. English, human-reviewed. Factual reporting only; not legal advice.

## Output

A paginated list of human-reviewed Japan regulatory events within the requested date range, each with category (bill, pubcomment, guideline, enforcement, or other), source, date, and English-language factual description. Supports offset/limit pagination for bulk historical retrieval.

## 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",
     "required": [
      "from"
     ],
     "properties": {
      "to": {
       "type": "string",
       "description": "ISO date, default now"
      },
      "from": {
       "type": "string",
       "description": "ISO date, required"
      },
      "limit": {
       "type": "integer",
       "description": "1-200, default 50"
      },
      "offset": {
       "type": "integer",
       "description": "0+, default 0"
      },
      "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-history-40ad56a7/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)
