# OT Intel API – LinkedIn Post Generator

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

Generates a LinkedIn-ready social post about an OT/ICS threat actor or CVE, formatted with hashtags and character count, drawing on AI-enriched OT threat intelligence.

## Facts

- Endpoint: GET https://ot-intel-api.onrender.com/ot/linkedin
- Price: $0.15/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-api-linkedin-post-generator-f5887f8e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aCmcqRv0rOs3-nkUr8uLF

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-api-linkedin-post-generator-f5887f8e
```

Example prompt: Write me a LinkedIn post about VOLTZITE (Volt Typhoon) — I want to share what's happening with their latest pre-positioning activity in critical infrastructure, with relevant ICS security hashtags ready to go.

## When to prefer this

Use this endpoint when you need a ready-to-publish LinkedIn post specifically about OT/ICS/SCADA threats — either a named ICS threat actor (SANDWORM, VOLTZITE, XENOTIME) or a CVE with industrial cyber-physical impact. Prefer this over generic social media generators when OT-specific hashtags, MITRE ATT&CK ICS context, and industrial SOC audience framing are required.

## Known failure modes

- Missing both 'cve' and 'actor' query params returns a 400-style error — exactly one is required
- Unknown or misspelled actor name (e.g. 'VOLTZIT') may return empty or low-quality output
- CVE not indexed in OT/ICS context may produce generic rather than OT-specific post content
- Payment failure or insufficient USDC balance on Base mainnet blocks the call via x402
- Render.com cold-start latency on first call may cause timeout for the free-tier hosted service

## How this service works

LinkedIn post for CTI/ICS security audience. Pass ?actor=VOLTZITE or ?cve=CVE-XXXX-XXXX. Fans out to actor or cve + advisory. Returns hook line, 3-5 intelligence bullets, call to action, hashtags. Ready to publish. Ideal for security practitioners and threat intelligence teams sharing findings.

## Output

Returns a formatted LinkedIn post (post_text), a list of relevant hashtags (e.g. #ICS, #OTSecurity, #VOLTZITE), a character count, and metadata listing which OT intel sources (ot/actor, ot/advisory, etc.) were composed to produce the post.

## 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",
     "properties": {
      "cve": {
       "type": "string",
       "description": "CVE ID (required if no actor)"
      },
      "actor": {
       "type": "string",
       "description": "Actor name e.g. VOLTZITE (required if no cve)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "hook": "⚡ VOLTZITE (Volt Typhoon) update",
  "hashtags": [
   "#ICS",
   "#OTSecurity",
   "#ThreatIntel",
   "#CriticalInfrastructure",
   "#VOLTZITE"
  ],
  "post_text": "⚡ VOLTZITE (Volt Typhoon) update: new pre-positioning activity confirmed...",
  "_composed_from": [
   "ot/actor",
   "ot/advisory"
  ],
  "character_count": 1240
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ot-intel-api-linkedin-post-generator-f5887f8e/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)
