# agentfeeds.jp SRO Regulatory Events Feed (JVCEA & JCBA)

> agentfeeds.jp SRO Regulatory Events Feed (JVCEA & JCBA) 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 human-reviewed English summaries of Japan self-regulatory organization events from JVCEA and JCBA, with title and link for each item.

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/reg/events/sro
- 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/agentfeeds-jp-sro-regulatory-events-feed-jvcea-jcba-0975a678
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Butbn0L-Xckoexv42dY3d

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-sro-regulatory-events-feed-jvcea-jcba-0975a678
```

Example prompt: Pull the latest JVCEA and JCBA regulatory events from the Japan SRO feed — give me up to 20 items published since 2025-01-01 in the compliance category.

## When to prefer this

Use this endpoint when you need English-language, human-reviewed summaries of Japan self-regulatory organization (SRO) events specifically from JVCEA or JCBA, as opposed to broader Japan MOF/FSA regulatory events or non-SRO sources. Prefer this over the full daily digest endpoint when you only care about SRO-segment items and want lightweight, filtered output.

## Known failure modes

- No events available for the requested date range returns an empty list
- Invalid 'since' date format returns a 400 validation error
- Unsupported category value may return empty results or an error
- Missing x402 payment header returns 402 Payment Required
- Rate limit exceeded returns 429 Too Many Requests

## How this service works

Self-regulatory organization segment of Japan regulatory events: JVCEA and JCBA items only. Title + link + own summary (no verbatim excerpts of source headlines). English, human-reviewed. Factual reporting only; not legal advice.

## Output

Returns a list of regulatory events from JVCEA and JCBA, each with a title, a source link, and a human-reviewed English summary. Events are scoped to the SRO segment only. Response may be filtered by date (since), count (limit), and category.

## 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/agentfeeds-jp-sro-regulatory-events-feed-jvcea-jcba-0975a678/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)
