# Japan Rail Disruptions Live Feed

> Japan Rail Disruptions Live Feed is a paid API for AI agents from transit.agentic-jp.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns a live, nationwide feed of all active rail disruptions (delays and suspensions) across the Japanese train network with bilingual summaries, sourced from ODPT.

## Facts

- Endpoint: GET https://transit.agentic-jp.com/alerts/feed
- 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/japan-rail-disruptions-live-feed-bd24e4b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vwbUxa3RX4YcdnEjX6P0y

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-rail-disruptions-live-feed-bd24e4b6
```

Example prompt: Check the live Japanese rail disruption feed right now and tell me which train lines have active delays or suspensions — give me the English summaries for each one.

## When to prefer this

Use this endpoint when you need a single call to get all active rail incidents across Japan without having to query individual stations or lines. Ideal for monitoring agents that poll on a fixed interval (e.g. every 5 minutes) to maintain a nationwide incident watchlist. Prefer this over per-station or per-line status endpoints when breadth of coverage is more important than depth on a single route.

## Known failure modes

- ODPT upstream unavailable — feed may return stale or empty data
- Network timeout if the aggregation takes too long across many operators
- 402 Payment Required if the x402 micropayment header is missing or invalid
- Empty array response when no disruptions are currently active (not an error)

## How this service works

Live feed of every active rail disruption across the Japanese (JP) network in one call — delays and suspensions with bilingual summaries, refreshed continuously from ODPT. Built for MONITORING agents: poll on an interval (e.g. every 5 minutes) to maintain a nationwide incident watchlist without querying stations one by one.

## Output

A structured list of all currently active rail disruptions across Japan, including delay and suspension incidents with bilingual (Japanese and English) summaries, affected operator and line identifiers, and continuously refreshed data sourced from ODPT.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "alerts": [
   {
    "line": "JR中央線",
    "reason": "信号トラブル",
    "status": "delayed"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/japan-rail-disruptions-live-feed-bd24e4b6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from transit.agentic-jp.com](https://www.zero.xyz/host/transit.agentic-jp.com/llms.txt)
