# ForgeMesh Territory Disruption Summary

> ForgeMesh Territory Disruption Summary is a paid API for AI agents from disruption.forgemesh.io, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns a disruption intelligence summary for a given ZIP code territory, aggregating WARN layoff filings and labor signals within a configurable radius

## Facts

- Endpoint: GET https://disruption.forgemesh.io/territory/:zip/disruption
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-territory-disruption-summary-946bd302
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SyujivVmliwPGK04s3AsS

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-territory-disruption-summary-946bd302
```

Example prompt: Give me the disruption intelligence summary for ZIP code 90210 — pull WARN layoff filings and labor signals within a 150 mile radius.

## When to prefer this

Use this endpoint when you need geospatial disruption intelligence — specifically WARN layoff filings and labor signals — aggregated around a specific ZIP code territory. Ideal for economic research agents, workforce monitoring tools, real estate or business intelligence workflows that need local labor market disruption signals.

## Known failure modes

- Invalid or non-existent ZIP code returns an error or empty result
- Radius exceeds maximum of 500 miles — request will be rejected or capped
- No disruption events found in the specified area returns an empty summary
- Payment not processed (x402) results in 402 Payment Required response
- Malformed path parameter causes a 400 Bad Request

## How this service works

Territory disruption summary

## Output

A structured disruption summary for the requested territory, including aggregated WARN layoff filings, labor signals, and disruption indicators within the specified radius of the given ZIP code.

## 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": {
      "radius": {
       "type": "number",
       "description": "Radius in miles (max 500, default 100)"
      }
     },
     "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-territory-disruption-summary-946bd302/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)
