Skip to content

Results API

Maintained by: Aether365 Team Audience: Developers Scope: Results API endpoints - retrieving scan findings

Get Scan Results

Returns the individual check results for a completed scan.

GET /scans/{scanId}/results

Query Parameters

ParameterTypeDescription
pageintegerPage number (default: 1)
limitintegerResults per page (default: 50, max: 200)
resultstringFilter: passed, failed, skipped
severitystringFilter: critical, high, medium, low
frameworkstringFilter by framework: cis, eidsca, cisa, nis2

Example Request

bash
curl "https://api.aether365.io/scans/scan_abc123/results?result=failed&severity=critical" \
  -H "Authorization: Bearer <token>"

Example Response

json
{
  "success": true,
  "data": [
    {
      "id": "result_001",
      "scan_id": "scan_abc123",
      "test_id": "CIS.M365.1.1.1",
      "title": "Ensure multifactor authentication is enabled for all users in administrative roles",
      "result": "failed",
      "severity": "critical",
      "framework": "cis",
      "help_url": "https://www.cisecurity.org/benchmark/microsoft_365",
      "remediation_steps": "1. Sign in to the Azure portal...",
      "source_tool": "compliance"
    }
  ],
  "meta": {
    "total": 12,
    "page": 1,
    "limit": 50
  }
}

Get Single Result

Returns the detail of one individual check result.

GET /scans/{scanId}/results/{testId}

Example Request

bash
curl https://api.aether365.io/scans/scan_abc123/results/CIS.M365.1.1.1 \
  -H "Authorization: Bearer <token>"

Example Response

json
{
  "success": true,
  "data": {
    "id": "result_001",
    "scan_id": "scan_abc123",
    "test_id": "CIS.M365.1.1.1",
    "title": "Ensure multifactor authentication is enabled for all users in administrative roles",
    "result": "failed",
    "severity": "critical",
    "framework": "cis",
    "help_url": "https://www.cisecurity.org/benchmark/microsoft_365",
    "remediation_steps": "1. Sign in to the Azure portal as a Global Administrator.\n2. Navigate to Microsoft Entra ID > Security > Conditional Access.\n3. Create or update a policy requiring MFA for all administrator roles.",
    "raw_output": {},
    "source_tool": "compliance"
  }
}

Field Reference

FieldTypeDescription
test_idstringUnique check identifier (e.g., CIS.M365.1.1.1)
titlestringHuman-readable check name
resultstringpassed, failed, or skipped
severitystringcritical, high, medium, or low
frameworkstringFramework that defines this check (cis, eidsca, cisa, nis2)
help_urlstringLink to official documentation or benchmark reference
remediation_stepsstringStep-by-step fix instructions
source_toolstringScan engine type (compliance or exposure)
raw_outputobjectRaw evaluation output (may be null for some checks)
Was this page helpful?