Skip to Content

Coverage

GET /v1/coverage

Get the current user’s ATT&CK technique coverage data. This powers the coverage heatmap in the web UI.

Authentication

Requires Bearer token (JWT or API key).

Example Request

curl https://cloudsigma.a13e.com/v1/coverage \ -H "Authorization: Bearer YOUR_API_KEY"

Response

{ "success": true, "data": { "techniques": [ { "techniqueId": "T1078.004", "count": 3, "providers": ["aws", "azure"], "lastGenerated": "2026-02-10T12:00:00Z" }, { "techniqueId": "T1098.001", "count": 5, "providers": ["aws", "gcp", "azure"], "lastGenerated": "2026-02-14T09:15:00Z" } ] } }

Response Fields

FieldTypeDescription
techniquesarrayATT&CK techniques with coverage data
techniques[].techniqueIdstringMITRE ATT&CK technique ID
techniques[].countintegerNumber of rules generated for this technique
techniques[].providersstring[]Platforms covered
techniques[].lastGeneratedstringISO 8601 timestamp of most recent generation

Errors

HTTPCodeDescription
401UnauthorizedInvalid or missing token
Last updated on