# disruption.forgemesh.io Event Severity Summary

> disruption.forgemesh.io Event Severity 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-15).

Returns a severity summary for a specific disruption event identified by its ID

## Facts

- Endpoint: GET https://disruption.forgemesh.io/events/:id/severity
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/disruption-forgemesh-io-e6e21b5d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yLyDh6M9Dir_ClyK8ap63

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-e6e21b5d
```

Example prompt: Can you pull the severity summary for disruption event ID 7839 from ForgeMesh so I know how critical it is?

## When to prefer this

Use this endpoint when you have a specific disruption event ID and need to quickly assess its severity classification without retrieving the full event record. Ideal for triage workflows, alerting pipelines, or monitoring dashboards where severity is the primary signal needed.

## Known failure modes

- Event ID not found — returns 404 if the specified event does not exist
- Invalid event ID format — returns 400 if the path parameter is malformed
- Unauthorized — returns 401 or 402 if payment or authentication is missing
- Service unavailable — returns 503 if the ForgeMesh disruption service is down

## How this service works

Event severity summary

## Output

A severity summary object for the specified event, indicating the assessed severity level (e.g. low, medium, high, critical) and associated summary details about the disruption event.

## 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-e6e21b5d/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)
