# ForgeMesh Disruption Intelligence – Nearby Events by ZIP

> ForgeMesh Disruption Intelligence – Nearby Events by ZIP 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 nearby disruption events (layoffs, WARN filings, labor signals) within a specified radius of a given ZIP code

## Facts

- Endpoint: GET https://disruption.forgemesh.io/radius/:zip
- 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-disruption-intelligence-nearby-events-by-zip-722a5a42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R0ZeW-7kgm7gCySsYcNKU

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-disruption-intelligence-nearby-events-by-zip-722a5a42
```

Example prompt: What disruption events and layoff filings are happening within 75 miles of ZIP code 60601 right now?

## When to prefer this

Use this endpoint when you need geospatially-scoped disruption intelligence — specifically layoff filings, WARN notices, and labor signals — anchored to a ZIP code with a configurable radius. Prefer this over general economic news APIs when you need structured, machine-readable event data tied to a specific geography for agent-driven analysis or alerting.

## Known failure modes

- Invalid or non-existent ZIP code returns an error or empty result
- Radius exceeding 250 miles may be capped or rejected
- No events found in the area returns an empty dataset
- Payment failure (x402) blocks access to results
- Network or upstream data provider outage returns 5xx

## How this service works

Nearby disruption events

## Output

A list of nearby disruption events (e.g. WARN act layoff filings, labor signals, regional disruption incidents) geolocated near the provided ZIP code, filtered by the requested radius in miles.

## 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 250, default 50)"
      }
     },
     "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-disruption-intelligence-nearby-events-by-zip-722a5a42/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)
