# JMA Japan Disaster Alerts Feed

> JMA Japan Disaster Alerts Feed is a paid API for AI agents from oracle-network-jp-data.fly.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the latest disaster information feed from the Japan Meteorological Agency (JMA), including weather warnings, special warnings, and advisories in Atom feed format.

## Facts

- Endpoint: GET https://oracle-network-jp-data.fly.dev/v1/jp/jma/alerts
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oracle-network-jp-data-fly-dev-ffd5adea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-yD9DHBoXUhXxsUo4a7i3

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 oracle-network-jp-data-fly-dev-ffd5adea
```

Example prompt: Can you check the latest disaster and weather alerts from Japan's Meteorological Agency right now and tell me if there are any active warnings or special advisories?

## When to prefer this

Choose this endpoint when you need authoritative, near-real-time disaster and weather warning data specifically from Japan's official meteorological authority (JMA). Ideal for agents monitoring Japanese natural disaster risk, severe weather, or public safety conditions. Prefer over general weather APIs when official Japanese government sourcing and Atom feed fidelity matter.

## Known failure modes

- JMA upstream feed unavailable — may return empty entries or error
- Stale data if refresh cycle is delayed beyond 10 minutes
- No alerts present returns count: 0 with empty entries array
- Network timeout if fly.dev host is under load
- Payment required (402) if x402 micropayment not included

## How this service works

Real-time Japanese weather and disaster alert feed from JMA (Japan Meteorological Agency) for AI agents requiring Japan-specific official emergency advisories. Includes weather warnings, special warnings, and advisories in Atom feed format. Refreshed every 10 minutes.

## Output

Returns a JSON payload containing an array of JMA alert entries (type: 'jma'), an integer count of current alerts, and a collected_at timestamp. Each entry represents a weather warning, special warning, or advisory as sourced from the JMA Atom feed, refreshed every 10 minutes.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "array",
     "items": {
      "type": "object",
      "properties": {
       "payload": {
        "type": "object",
        "properties": {
         "type": {
          "type": "string",
          "const": "jma"
         },
         "count": {
          "type": "integer",
          "minimum": 0
         },
         "entries": {
          "type": "array"
         }
        }
       },
       "collected_at": {
        "type": "string",
        "format": "date-time"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oracle-network-jp-data-fly-dev-ffd5adea/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracle-network-jp-data.fly.dev](https://www.zero.xyz/host/oracle-network-jp-data.fly.dev/llms.txt)
