# Japan Regulatory Events Headlines Feed

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

Returns headline-only entries (original + machine-translated title) for recent regulatory events across all 11 Japan regulatory sources, without summaries.

## Facts

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

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-regulatory-events-headlines-feed-d8deecdf
```

Example prompt: Pull the latest 20 Japan regulatory headlines since 2025-01-01 from all sources — I need both the original Japanese titles and the machine-translated English versions.

## When to prefer this

Use this endpoint when you only need headline-level awareness of Japan regulatory events across all 11 sources and do not require summaries or full event details. It is the lowest-cost entry point ($0.002/call) for monitoring Japan regulatory activity. Prefer the /v1/reg/events endpoint when full summaries or structured event data are needed.

## Known failure modes

- Invalid 'since' date format returns 400 bad request
- Unsupported 'category' value returns empty result set or 400
- Exceeding rate limits returns 429 Too Many Requests
- Payment not processed (x402) returns 402 Payment Required
- No new events in requested window returns empty array

## How this service works

Cheapest tier: headlines only (original + machine-translated title) across all 11 Japan regulatory sources, no summary. Upsell entry point to /v1/reg/events. Factual; not legal advice.

## Output

A list of headline entries from up to 11 Japan regulatory sources, each containing the original-language title and a machine-translated English title, optionally filtered by date (since) and category, with no summary text included.

## 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/japan-regulatory-events-headlines-feed-d8deecdf/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)
