GET
/
api
/
v1
/
issues
Query and retrieve a paginated list of issues with filtering options.
Requires Bearer token authentication

Query Parameters

filter.class
string
Filter issues by class (network_exfiltration, crypto_miner)
filter.state
string
Filter issues by state (open, closed, ignored)
filter.priority
string
Filter issues by priority (low, medium, high, critical)
filter.agent_kind
string
Filter issues by agent kind
include_ignored
boolean
default:"false"
Whether to include ignored issues in the results

Example

curl -H "Authorization: Bearer $GARNET_API_TOKEN" \
  "https://api.garnet.ai/v1/issues?filter.state=open&filter.priority=high"