# ForgeMesh Watchlist Event Preview CSV

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

## Facts

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

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

Example prompt: Can you pull a CSV preview of the disruption events for my watchlist abc-123 — show me up to 50 rows so I can see which companies have recent layoff or WARN filings?

## When to prefer this

Use this endpoint when you need a quick, human-readable or machine-parseable CSV sample of disruption events for a specific company watchlist — ideal for spot-checking watchlist contents, generating reports, or piping into downstream analysis without pulling the full dataset

## Known failure modes

- Invalid or nonexistent watchlist ID returns 404
- Unauthorized access without correct ownerKey returns 403
- Limit exceeding 100 is capped or returns validation error
- Empty watchlist returns CSV with headers but no data rows
- Payment not processed results in 402 Payment Required

## How this service works

Company watchlist event preview CSV

## Output

A CSV file containing up to 100 rows (default 25) of disruption events associated with the specified watchlist, including company-level layoff filings, WARN act data, and labor signals for the tracked companies

## 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-csv-e8bee919/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)
