# Disruption Intelligence Ripple API – Watchlist Preview CSV

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

Returns a paginated CSV preview of disruption events matched to a saved watchlist, including WARN filings, labor signals, and regional economic events with company and query match metadata.

## Facts

- Endpoint: GET https://disruption.forgemesh.io/watchlists/%7Bid%7D/preview.csv
- Price: $0.05/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-csv-ba502f77
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9sJXkmV_g51tXGBcOZwJ5

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-csv-ba502f77
```

Example prompt: Show me a preview of the disruption events matched to my watchlist ID 'wl_abc123' — give me up to 50 rows in CSV format using my owner key 'acme-corp'.

## When to prefer this

Use this endpoint when you need a quick sampled preview of disruption event matches for a specific watchlist before committing to a full export, or when you want to verify watchlist configuration is producing expected results. Ideal for spot-checking WARN filing matches, labor signals, or regional economic events tied to monitored companies or queries.

## Known failure modes

- Watchlist ID not found or does not belong to the caller's ownerKey — returns 404 or empty result
- Missing or invalid ownerKey scoping — returns unauthorized or empty dataset
- Limit parameter exceeds 100 — capped or error returned
- Payment not submitted (x402 protocol) — returns 402 Payment Required
- Watchlist has no matched events yet — returns empty CSV with header row only

## How this service works

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

## Output

A CSV-formatted response with up to 100 rows (default 25) containing columns: event_id, matched_item_id, matched_query, matched_company_id, company_id, and company_name — representing disruption events (WARN filings, labor signals, regional economic events) matched against the specified watchlist.

## 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": {
  "format": "csv",
  "columns": [
   "event_id",
   "matched_item_id",
   "matched_query",
   "matched_company_id",
   "company_id",
   "company_name"
  ],
  "example": "event_id,matched_item_id,matched_query,matched_company_id,company_id,company_name"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/disruption-intelligence-ripple-api-watchlist-preview-csv-ba502f77/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)
