# OT Intel Analyst Brief

> OT Intel Analyst Brief is a paid API for AI agents from ot-intel-api.onrender.com, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-14).

Generates a DeepSeek-synthesised, decision-ready analyst brief (BLUF, key judgments, ICD-203 confidence) for a named ICS/OT threat actor, optionally scoped to a sector.

## Facts

- Endpoint: GET https://ot-intel-api.onrender.com/ot/analyst-brief
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ot-intel-analyst-brief-6753eb15
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5K3bMSVSIy1AXHEkaflPi

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 ot-intel-analyst-brief-6753eb15
```

Example prompt: Give me a decision-ready analyst brief on SANDWORM, scoped to the energy sector — I need a BLUF, key judgments, and an ICD-203 confidence assessment.

## When to prefer this

Prefer this endpoint over /ot/report when you need a concise, decision-ready brief rather than a full detailed report — ideal for executive briefings, rapid triage, or when you need ICD-203 confidence levels explicitly stated. Use /ot/report when you need the full structured fan-out data (actor, campaign, malware, advisory details) for deep analysis.

## Known failure modes

- Missing required 'actor' parameter returns an error
- Unknown or unrecognised threat actor name may return sparse or low-confidence output
- DeepSeek synthesis latency may vary under load
- Sector not matching known ICS verticals may reduce scoping precision
- Render.com cold-start delays if the service has been idle

## How this service works

Human-readable analyst brief: BLUF, key judgments, and ICD-203 confidence assessment for a threat actor (optionally scoped to a sector). Same fan-out data as /ot/report (actor, campaign, malware, advisory) but DeepSeek-synthesised into a short decision-ready brief instead of a full report. Pass actor (required), sector (optional).

## Output

A concise, human-readable analyst brief containing: a BLUF (Bottom Line Up Front) statement, key analytical judgments about the threat actor's capabilities and targeting, and an ICD-203 confidence assessment — all synthesised from actor, campaign, malware, and advisory data by DeepSeek.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "actor"
     ],
     "properties": {
      "actor": {
       "type": "string",
       "description": "ICS threat actor name e.g. SANDWORM, VOLTZITE, XENOTIME"
      },
      "sector": {
       "type": "string",
       "description": "Optional target sector e.g. energy, water, manufacturing"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ot-intel-analyst-brief-6753eb15/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ot-intel-api.onrender.com](https://www.zero.xyz/host/ot-intel-api.onrender.com/llms.txt)
