Skip to main content
POST
/
v1
/
threats
/
scan
Trigger scan
curl --request POST \
  --url https://api.intrace.ai/v1/threats/scan \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "asset_ids": [
    "<string>"
  ],
  "lookback_hours": 2
}
'
{
  "status": "<string>"
}
Starts an immediate scan for the tenant or monitored portfolio.

Suggested request shape

{
  "asset_ids": ["lagos-hq", "abuja-residence-1"],
  "lookback_hours": 24
}

Response

{
  "status": "scan_started"
}

Authorizations

X-API-Key
string
header
required

Body

application/json
asset_ids
string[]
lookback_hours
integer
Required range: x >= 1

Response

202 - application/json

Scan accepted.

status
string
required