# ForgeMesh Regional Disruption Summaries

> ForgeMesh Regional Disruption Summaries is a paid API for AI agents from disruption.forgemesh.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns a disruption summary for a given US state, covering regional events, risk levels, and activity context.

## Facts

- Endpoint: GET https://disruption.forgemesh.io/regions/:state
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/disruption-forgemesh-io-85f953a3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OCSUX-UctTUQxwn-PcWkn

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-forgemesh-io-85f953a3
```

Example prompt: Give me a disruption summary for California — I want to know what events and risks are currently affecting that state.

## When to prefer this

Use this endpoint when you need a high-level disruption and risk summary scoped to a specific US state. Prefer this over county-level or company-level endpoints when you want a broad regional overview rather than granular geographic or entity-specific detail.

## Known failure modes

- Invalid or unrecognized state identifier returns an error or empty result
- State path parameter missing causes a 400 or routing error
- No disruption data available for a low-activity state may return empty summary
- Payment not completed via x402 protocol returns 402 Payment Required
- Service unavailability returns 5xx error

## How this service works

Regional disruption summaries

## Output

A structured summary of disruption activity for the specified US state, likely including active events, severity indicators, risk context, and regional activity highlights.

## 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": {},
     "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/disruption-forgemesh-io-85f953a3/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)
