# Disruption Intelligence Ripple API – Watchlist Preview

> Disruption Intelligence Ripple API – Watchlist Preview is a paid API for AI agents from disruption.forgemesh.io, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns a paginated preview of disruption events stored in a specific watchlist, including WARN filings, labor signals, and regional economic disruptions with downstream ripple effects.

## Facts

- Endpoint: GET https://disruption.forgemesh.io/watchlists/%7Bid%7D/preview
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/disruption-intelligence-ripple-api-watchlist-preview-29bf71ff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zZZcu98beXe0i1N9Ln31B

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 disruption-intelligence-ripple-api-watchlist-preview-29bf71ff
```

Example prompt: Show me a preview of my ForgeMesh disruption watchlist with ID 'wl_abc123' — pull up to 50 rows so I can see what WARN filings and labor signals are currently tracked in it.

## When to prefer this

Use this endpoint when you need a quick, paginated sample of disruption events stored in a specific named watchlist, especially before committing to a full data pull. Ideal for validating watchlist contents, spot-checking WARN filing coverage, or surfacing downstream ripple signals for a predefined geography or sector.

## Known failure modes

- Watchlist ID not found — returns empty watchlist object and zero items
- Invalid or missing ownerKey — may return unauthorized or empty scope results
- Limit exceeds 100 — capped or rejected by API
- Payment failure via x402 protocol — call blocked, 402 response returned
- Watchlist exists but has no items — returns empty preview array with total_previewed: 0

## How this service works

Paid layoff risk and WARN filing intelligence via x402. Company risk scores, ripple effects, and geographic disruption data.

## Output

Returns a JSON object containing the watchlist metadata, an array of previewed disruption event items (WARN filings, labor signals, regional economic events), and a total_previewed count indicating how many rows were returned in this preview.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "number",
       "description": "Maximum preview row count (max 100, default 25)"
      },
      "ownerKey": {
       "type": "string",
       "description": "Caller owner scope for the watchlist"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "items": [],
  "preview": [],
  "watchlist": {},
  "total_previewed": 0
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/disruption-intelligence-ripple-api-watchlist-preview-29bf71ff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from disruption.forgemesh.io](https://www.zero.xyz/host/disruption.forgemesh.io/llms.txt)
