# Disruption Intelligence Ripple API – Radius Endpoint

> Disruption Intelligence Ripple API – Radius Endpoint 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-13).

Returns geospatial disruption intelligence (WARN filings, labor signals, regional economic events) and downstream business ripple effects within a given radius of a ZIP code

## Facts

- Endpoint: GET https://disruption.forgemesh.io/radius/%7Bzip%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/disruption-intelligence-ripple-api-radius-endpoint-1eaf15f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Fql0rCqGKnf71gqOxFCT-

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-radius-endpoint-1eaf15f7
```

Example prompt: What economic disruptions and WARN Act filings are happening within 75 miles of ZIP code 60601, and what downstream business ripple effects should I be aware of?

## When to prefer this

Use this endpoint when you need geospatial economic disruption intelligence centered on a specific U.S. ZIP code — particularly WARN Act filings, mass layoff events, and their downstream supply-chain or business ripple effects. Prefer this over generic news or financial APIs when you need structured labor-signal data tied to geography, or when assessing regional economic risk for a specific location radius.

## Known failure modes

- Invalid or non-existent ZIP code returns empty data array or error
- Radius exceeding 250 miles may be clamped or rejected
- Payment failure (402) if USDC payment on Base is not properly attached
- No disruption data available for rural or sparse regions returns empty array with total:0
- Rate limiting or quota exceeded for high-frequency callers

## 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 an array of disruption events near the specified ZIP code center point, including WARN filings, labor signals, and regional economic events with their downstream business ripple effects; also includes the total count, center coordinates, and radius in miles used for the query.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [],
  "total": 0,
  "center": {},
  "radius_miles": 50
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/disruption-intelligence-ripple-api-radius-endpoint-1eaf15f7/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)
