# Disruption Intelligence Ripple API – Territory Disruption Lookup

> Disruption Intelligence Ripple API – Territory Disruption Lookup 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 geospatial labor and economic disruption intelligence for a ZIP code area, including WARN filings, disruption scores, and affected employee counts

## Facts

- Endpoint: GET https://disruption.forgemesh.io/territory/%7Bzip%7D/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/disruption-intelligence-ripple-api-territory-disruption-lookup-79ea1d5a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__nW5y1v6uxwD2MA1hF0sD

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-territory-disruption-lookup-79ea1d5a
```

Example prompt: What's the labor and economic disruption situation around ZIP code 60601 — pull the disruption score and how many employees are affected within a 150-mile radius?

## When to prefer this

Choose this endpoint when you need geospatial labor disruption intelligence anchored to a specific ZIP code territory — particularly for supply chain risk assessment, real estate due diligence, economic impact analysis, or monitoring downstream business effects of WARN filings and regional layoffs. Prefer over generic news APIs because this aggregates structured labor signals with a quantitative disruption score.

## Known failure modes

- Invalid or nonexistent ZIP code returns an error or empty result
- Radius exceeding 500 miles may be rejected or clamped
- No disruption data available for sparse or rural regions yields zero-count summary
- Payment not accepted in USDC on Base causes 402 Payment Required response
- Missing zip path parameter returns 400 or routing error

## How this service works

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

## Output

A JSON object containing a summary with total disruption events, a composite disruption score, and total employees affected in the queried territory; derived from WARN filings, labor signals, and regional economic event data

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "summary": {
   "total_events": 0,
   "disruption_score": 0,
   "total_employees_affected": 0
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/disruption-intelligence-ripple-api-territory-disruption-lookup-79ea1d5a/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)
