# County Disruption Summary

> County Disruption Summary 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 disruption and risk activity summary for a specific county within a given US state

## Facts

- Endpoint: GET https://disruption.forgemesh.io/regions/:state/:county
- 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-forgemesh-io-5301b5df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oq2RTBOKKvx8-pkRucSd5

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-5301b5df
```

Example prompt: Can you pull the disruption summary for Travis County in Texas — I want to know what events or risks are currently active there?

## When to prefer this

Use this endpoint when you need county-level granularity for disruption intelligence within a US state — ideal for supply chain monitoring, risk assessments, or business continuity planning where you need to drill down below the state level to a specific county jurisdiction.

## Known failure modes

- Invalid or unrecognized state abbreviation or name returns a 404 or empty result
- Invalid county name for the given state returns an error
- Payment not attached or insufficient USDC balance triggers 402 Payment Required
- Rate limiting or quota exhaustion may return 429
- Network or server errors return 5xx responses

## How this service works

County disruption summary

## Output

A structured summary of disruption events, severity indicators, and risk activity for the specified county, including relevant event types, their impact level, and any notable activity affecting the jurisdiction.

## 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-5301b5df/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)
