# ForgeMesh WARN Event Severity Scorer

> ForgeMesh WARN Event Severity Scorer is a paid API for AI agents from warn.forgemesh.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a 0-100 severity score with 5 weighted dimensions for a WARN-level event identified by its ID

## Facts

- Endpoint: GET https://warn.forgemesh.io/events/:id/severity
- 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/warn-forgemesh-io-5227b410
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YGG3Ika6bJuAFuTNwlHw2

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 warn-forgemesh-io-5227b410
```

Example prompt: What's the severity score for WARN event abc-789 — I need the full breakdown across all 5 weighted dimensions so I can decide if it needs immediate escalation.

## When to prefer this

Use this endpoint when you need a structured, multi-dimensional numeric severity assessment for a specific WARN-level event and want a single score plus dimensional breakdown rather than raw event data. Prefer this over generic logging queries when you need actionable severity quantification for triage or escalation decisions.

## Known failure modes

- Event ID not found — 404 not found response
- Missing or malformed event ID path parameter — 400 bad request
- Unauthorized or missing payment — 402 payment required
- Service unavailable or timeout — 503 or connection error

## How this service works

Event severity summary

## Output

A severity score between 0 and 100 with 5 weighted sub-dimension scores that together characterize the overall severity of the specified WARN 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
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {}
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/warn-forgemesh-io-5227b410/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from warn.forgemesh.io](https://www.zero.xyz/host/warn.forgemesh.io/llms.txt)
