# Disruption Intelligence Ripple Index

> Disruption Intelligence Ripple Index is a paid API for AI agents from disruption.forgemesh.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a paginated index of geospatial disruption signals derived from WARN filings and labor events, with metadata on regional business ripple effects and unlock paths for deeper intelligence.

## Facts

- Endpoint: GET https://disruption.forgemesh.io/ripple/index
- Price: $0.01/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-index-7c390be6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2m7VBn3TyMSUYKDFD7QIA

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-index-7c390be6
```

Example prompt: Pull the top 10 high-confidence disruption signals for San Mateo County, CA from the Ripple index — I want to see what WARN filings and labor events are showing up there right now.

## When to prefer this

Use this endpoint when you need a discovery-level overview of regional economic disruption signals — especially when prospecting across geographies using WARN filings and labor data — before committing to a paid sector-impact unlock. Prefer this over sibling signal endpoints when you want breadth across a region rather than depth on a specific company or sector.

## Known failure modes

- Invalid scope value returns an error or empty result
- q parameter with unrecognized region yields zero signals
- limit exceeding 25 is clamped or rejected
- Payment not received results in 402 response blocking access
- Stale or no WARN data for a region returns empty signal list

## How this service works

Returns a location-only index of Ripple disruption signals — region, state, signal type, and freshness — use it to discover where paid signal or sector-impact detail is available.

## Output

A JSON object containing a list of up to 25 signal index cards, each with a signal ID, region, state, score band, confidence band, signal type, freshness status, depth rating, and unlock paths to paid sector-impact detail. Also includes navigation guidance and a disclaimer that company names and commercial angles are withheld until a paid unlock.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string",
       "description": "Optional region, state, or broad signal search query"
      },
      "limit": {
       "type": "number",
       "description": "Maximum index cards to return (max 25, default 10)"
      },
      "scope": {
       "type": "string",
       "description": "all, gold, or watchlist"
      }
     },
     "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": {
  "count": 10,
  "product": "ripple_signal_index",
  "signals": [
   {
    "depth": "high",
    "state": "CA",
    "region": "San Mateo County, CA",
    "unlock": {
     "sector_impacts": "/ripple/signals/{signal_id}/sector-impacts",
     "sector_impacts_price_usd": 0.15
    },
    "event_id": "00000000-0000-0000-0000-000000000000",
    "freshness": "fresh",
    "signal_id": "00000000-0000-0000-0000-000000000000",
    "score_band": "high",
    "signal_type": "company_disruption_pattern",
    "why_not_high": [
     "This index card intentionally withholds commercial detail until a paid signal or impact-path unlock.",
     "Downstream business effects are inferred planning paths, not confirmed purchases, contracts, or buyer intent."
    ],
    "publish_state": "approved",
    "confidence_band": "high"
   }
  ],
  "navigation": {
   "message": "Location-only Ripple index. Company names, employee counts, commercial angles, sector names, spend areas, and impact paths are withheld until a paid signal or sector-impact unlock.",
   "next_step": "Use unlock.sector_impacts for detailed downstream sector/vendor impact paths, or use q on /ripple/signals when you want a focused paid signal set."
  },
  "why_not_high": [
   "This is a discovery-level signal; deeper commercial context is reserved for the paid signal, brief, or sector-impact unlock.",
   "Location and timing are enough to route the opportunity, but impact strength should be validated through the higher-detail endpoint."
  ]
 }
}
```

## More

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