# Disruption Intelligence Ripple API – Event Severity Scoring

> Disruption Intelligence Ripple API – Event Severity Scoring 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 composite severity score and risk tier for a specific disruption event, derived from WARN filings, labor signals, and regional economic data.

## Facts

- Endpoint: GET https://disruption.forgemesh.io/events/%7Bid%7D/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/disruption-intelligence-ripple-api-event-severity-scoring-9aed758d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FyBd-givUY6RLr2TQdWfe

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-api-event-severity-scoring-9aed758d
```

Example prompt: What's the severity score and risk tier for disruption event ID 9823 — I need to know whether it's in the moderate or high tier and what industry it falls under.

## When to prefer this

Use this endpoint when you have a specific disruption event ID and need its risk severity tier, composite score, and industry classification in a single call. Prefer this over broader search endpoints when you already know the event identifier and need downstream ripple-effect risk intelligence for supply chain, credit, or workforce planning decisions.

## Known failure modes

- Event ID not found returns 404 or empty result
- Malformed or missing event ID returns validation error
- Payment not completed in USDC on Base results in 402 Payment Required
- Unscored or very recent events may return composite_score of 0 with no scored_at
- NAICS classification confidence may be low for events without explicit sector data

## How this service works

Paid layoff risk and WARN filing intelligence via x402. Company risk scores, ripple effects, and geographic disruption data.

## Output

A JSON object containing: risk_tier (e.g. 'moderate'), composite_score (numeric), scored_at timestamp, and industry_classification with label, NAICS sector code, inference method, and confidence level.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "risk_tier": "moderate",
  "scored_at": "",
  "composite_score": 0,
  "industry_classification": {
   "label": "Health Care and Social Assistance",
   "method": "explicit_naics",
   "confidence": "high",
   "naics_sector": "62",
   "coverage_note": "Industry derived from source-provided NAICS code."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/disruption-intelligence-ripple-api-event-severity-scoring-9aed758d/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)
