# NOAA Tsunami Center Bulletins

> NOAA Tsunami Center Bulletins is a paid API for AI agents from fittings.sh, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns the most recent bulletin from each NOAA tsunami warning center, including category (warning, advisory, watch, or information), issue time, epicenter, and bulletin link.

## Facts

- Endpoint: GET https://fittings.sh/v1/tsunami/center-bulletins
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/noaa-tsunami-center-bulletins-6b911260
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QNn38IEa6CC96U_-K68YD

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 noaa-tsunami-center-bulletins-6b911260
```

Example prompt: Are there any active tsunami warnings or advisories right now? Pull the latest bulletins from all NOAA tsunami warning centers and tell me if anything is at warning or watch level.

## When to prefer this

Choose this endpoint when you need a quick, structured summary of active NOAA tsunami bulletins across all warning centers without scraping NOAA's website directly. It is ideal for real-time alerting systems, disaster monitoring agents, or any workflow that needs to know whether a tsunami warning, watch, advisory, or information statement is currently in effect and from which center.

## Known failure modes

- NOAA upstream unavailable — service may return an error if NOAA feeds are down
- No bulletins available if NOAA centers have issued no recent statements
- Stale data if the endpoint cache has not refreshed since the last bulletin was issued

## How this service works

The most recent bulletin from each NOAA tsunami warning center, with its category (warning, advisory, watch or information), issue time, epicenter and bulletin link.

## Output

A list of the most recent bulletin from each NOAA tsunami warning center, each containing the bulletin category (warning, advisory, watch, or information statement), the issue timestamp, the epicenter location, and a direct link to the full bulletin text.

## 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": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/noaa-tsunami-center-bulletins-6b911260/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fittings.sh](https://www.zero.xyz/host/fittings.sh/llms.txt)
