# CyberPulse Threat Intelligence Brief

> CyberPulse Threat Intelligence Brief is a paid API for AI agents from cyberpulse.theaslangroupllc.com, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-13).

Returns a sector- and region-specific threat-intelligence brief covering active threat-actor campaigns, TTPs, nation-state APTs, ransomware operators, MITRE ATT&CK mappings, CISA KEV alerts, and GDELT-scored news coverage.

## Facts

- Endpoint: GET https://cyberpulse.theaslangroupllc.com/api/cyber/threat-intel
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cyberpulse-threat-intelligence-brief-b75dd58f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__yByoNhOTi5yUrRmbvrax

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 cyberpulse-threat-intelligence-brief-b75dd58f
```

Example prompt: Pull a threat-intel brief for the financial services sector in Western Europe — I need active threat-actor campaigns, any nation-state APTs, ransomware operators, their TTPs with MITRE ATT&CK mappings, and recent CISA KEV alerts relevant to that region and industry.

## When to prefer this

Use this endpoint when an AI agent or SOC analyst needs a comprehensive, cross-source threat-intelligence brief scoped to a specific industry vertical and geographic region — especially when MITRE ATT&CK context, nation-state APT tracking, ransomware operator profiling, and CISA KEV correlation are all needed in a single response. Prefer it over the CVE-specific or ransomware-specific sibling endpoints when the goal is broad situational awareness rather than a deep dive on a single vulnerability or threat group.

## Known failure modes

- Missing or unsupported industry/sector parameter returns 400 with validation error
- Unsupported or unrecognized region returns empty results or 400
- No current threat data available for niche sector/region combination returns sparse brief
- Rate limiting or payment failure returns 402 or 429
- Upstream data source latency may result in 504 timeout for complex queries

## How this service works

Threat-intelligence brief for any industry and region — active threat-actor campaigns, TTPs, nation-state APTs, eCrime/ransomware operators, and MITRE ATT&CK mapping, with recent CISA KEV and GDELT-scored news coverage. Worldwide sector-specific context, for threat-intel and SOC agents.

## Output

A structured threat-intelligence brief containing: active threat-actor campaign summaries targeting the specified sector and region, nation-state APT profiles and current objectives, eCrime and ransomware operator activity, MITRE ATT&CK technique mappings for observed TTPs, flagged CISA KEV vulnerabilities under active exploitation, and GDELT-scored news coverage for contextual situational awareness.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | ja | zh | ko | pt | ar | hi (default: en)"
      },
      "region": {
       "type": "string",
       "description": "Geographic focus — e.g. \"North America\" | \"Europe\" | \"Southeast Asia\" | \"Middle East\" | \"Sub-Saharan Africa\" | \"Latin America\" | \"APAC\" | \"Global\""
      },
      "industry": {
       "type": "string",
       "description": "Target sector — e.g. \"healthcare\" | \"finance\" | \"energy\" | \"manufacturing\" | \"government\" | \"education\" | \"defense\" | \"telecommunications\""
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "region": "Europe",
  "industry": "healthcare",
  "threat_level": "HIGH",
  "active_campaigns": [
   {
    "severity": "CRITICAL",
    "targeting": "Hospital networks, NHS suppliers, pharma firms",
    "actor_origin": "eCrime (Russia-linked)",
    "threat_actor": "Cl0p",
    "attack_vector": "MOVEit file transfer exploitation"
   }
  ],
  "executive_summary": "European healthcare faces escalating ransomware and espionage threats. Cl0p and LockBit 3.0 are actively targeting NHS and hospital supply chains.",
  "top_threat_actors": [
   {
    "name": "Cl0p",
    "origin": "eCrime",
    "recent_activity": "Mass exploitation of MOVEit Transfer affecting 2,500+ organizations globally"
   }
  ],
  "threat_level_trend": "escalating"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cyberpulse-threat-intelligence-brief-b75dd58f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cyberpulse.theaslangroupllc.com](https://www.zero.xyz/host/cyberpulse.theaslangroupllc.com/llms.txt)
