Skip to main content
GET
/
api
/
v1
/
attack-graph
/
paths
Attack Graph Paths
curl --request GET \
  --url http://localhost:8000/api/v1/attack-graph/paths
{
  "paths": [
    {
      "path_id": "<string>",
      "rule_id": "<string>",
      "severity": "<string>",
      "owasp_tag": "<string>",
      "title": "<string>",
      "description": "<string>",
      "agent_id": "<string>",
      "path_nodes": [
        "<string>"
      ],
      "path_edges": [
        "<string>"
      ],
      "risk_score": 123,
      "detected_at": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.tracectrl.ai/llms.txt

Use this file to discover all available pages before exploring further.

Returns detailed attack-path rows from the attack_paths table, ordered by risk_score descending. Unlike /risk/attack-paths, this endpoint exposes the raw node/edge lists and the rule metadata used to render the findings panel.

Response

paths
object[]
Array of path objects: