# ForgeMesh Watchlist Event Preview

> ForgeMesh Watchlist Event 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 preview of recent disruption events (layoffs, WARN filings, labor signals) for a saved company watchlist

## Facts

- Endpoint: GET https://disruption.forgemesh.io/watchlists/:id/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/forgemesh-watchlist-event-preview-534e2123
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HkMsBCag4xU0ONkH53nfU

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 forgemesh-watchlist-event-preview-534e2123
```

Example prompt: Show me a preview of the latest disruption events for my company watchlist (ID: wl_abc123) — give me up to 25 results.

## When to prefer this

Use this endpoint when you need a quick, lightweight preview of disruption events for a specific saved watchlist — ideal for checking if a watchlist has recent activity before fetching a full export or CSV. Prefer this over territory or region endpoints when your query is scoped to a curated set of companies rather than a geography.

## Known failure modes

- Watchlist ID not found or does not belong to caller scope — returns 404 or empty result
- Invalid or missing ownerKey — may return unauthorized or empty dataset
- Limit exceeds 100 — clamped or rejected
- Payment not processed (x402) — returns 402 Payment Required
- No events available for the watchlist — returns empty preview

## How this service works

Company watchlist event preview

## Output

A paginated preview of disruption events (WARN layoff filings, labor signals, company-level disruption data) associated with companies in the specified watchlist, capped at the requested row count (default 25, max 100).

## 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
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-watchlist-event-preview-534e2123/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)
