← Back to Agent Chain
🕵️ AC-4 · Threat Intel
Crowdsourced AI threat database — VirusTotal for AI agents — STIX 2.1 format
Overview

Threat Intel is the VirusTotal for AI agents. It maintains a crowdsourced database of known malicious agents, attack patterns, and compromise indicators in STIX 2.1 format. Feeds are enriched automatically from AC-7 Shadow Network honeypot captures.

Threat Categories
CategoryDescriptionIndicators
ImpersonationAgents pretending to be something they're notSpoofed DIDs, cloned behavior
InjectionAgents distributing prompt injection payloadsKnown injection patterns
Supply ChainCompromised agent packages or dependenciesPackage hashes, version conflicts
Data HarvestAgents designed to exfiltrate dataExfil patterns, beacon domains
API Endpoints
Free
MethodEndpointDescriptionAuth
GET/v1/intel/summaryThreat intel summary🔓 Free
GET/v1/intel/check/:didCheck DID against threats🔓 Free
Billable
MethodEndpointDescriptionAuth
POST/v1/intel/indicatorsSubmit a threat indicator🔑
GET/v1/intel/indicatorsSearch threat indicators🔑
GET/v1/intel/indicators/:idGet indicator details🔑
POST/v1/intel/reportsSubmit a threat report🔑
GET/v1/intel/reportsSearch threat reports🔑
GET/v1/intel/reports/:idGet report details🔑
Quick Start
// Check if a DID is flagged (free) curl https://api.agent-chain.io/v1/intel/check/did:agent:ac:suspicious123 // Submit a threat indicator curl -X POST https://api.agent-chain.io/v1/intel/indicators \ -H "Authorization: Bearer ac_live_xxx" \ -d '{ "type": "injection", "target_did": "did:agent:ac:bad456", "evidence": "Distributed prompt injection payload via A2A protocol", "severity": "high" }'