Skip to main content
GET
/
issues
/
{id}
/
results
JavaScript
import Antimetal from '@antimetal/sdk';

const client = new Antimetal({
  apiKey: process.env['ANTIMETAL_API_KEY'], // This is the default and can be omitted
});

const result = await client.issues.results.retrieve('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');

console.log(result.sessionUuid);
{
  "sessionUuid": "<string>",
  "rootCause": {
    "id": "<string>",
    "incidentOverview": "<string>",
    "rootCauseSummary": "<string>",
    "relevantEvidence": [
      {
        "title": "<string>",
        "status": "relevant",
        "description": "<string>",
        "confidence": "unknown",
        "artifacts": [
          {
            "documentId": "<string>",
            "title": "<string>",
            "description": "<string>",
            "dataType": "<string>"
          }
        ]
      }
    ],
    "irrelevantEvidence": [
      {
        "title": "<string>",
        "status": "relevant",
        "description": "<string>",
        "confidence": "unknown",
        "artifacts": [
          {
            "documentId": "<string>",
            "title": "<string>",
            "description": "<string>",
            "dataType": "<string>"
          }
        ]
      }
    ]
  },
  "causalTree": {
    "nodes": [
      {
        "id": "<string>",
        "type": "validated",
        "title": "<string>",
        "description": "<string>",
        "expandedContent": "<string>"
      }
    ],
    "edges": [
      {
        "id": "<string>",
        "source": "<string>",
        "target": "<string>"
      }
    ]
  },
  "causalTreeV2": {
    "nodes": [
      {
        "id": "<string>",
        "title": "<string>",
        "description": "<string>",
        "confidence": "unknown",
        "nodeType": "outcome",
        "evidence": [
          {
            "documentId": "<string>",
            "title": "<string>",
            "description": "<string>",
            "dataType": "<string>"
          }
        ]
      }
    ],
    "edges": [
      {
        "from": "<string>",
        "to": "<string>",
        "confidence": 0.5
      }
    ]
  },
  "remediation": {
    "actions": [
      {
        "id": "<string>",
        "uuid": "<string>",
        "title": "<string>",
        "steps": [
          {
            "id": "<string>",
            "title": "<string>",
            "required": true,
            "type": "info",
            "content": "<string>",
            "helpMarkdown": "<string>",
            "label": "<string>"
          }
        ],
        "description": "<string>",
        "category": "immediate",
        "markdownPrompt": "<string>"
      }
    ]
  },
  "timeline": [
    {
      "id": "<string>",
      "type": "outcome",
      "timestamp": "2023-11-07T05:31:56Z",
      "title": "<string>",
      "description": "<string>",
      "evidence": [
        {
          "artifactId": "<string>",
          "timestamp": "2023-11-07T05:31:56Z",
          "title": "<string>",
          "description": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

API key authentication via Bearer token

Headers

Antimetal-Version
string
default:2026-03-17

The API version to use. Defaults to the latest stable version if omitted. Pin to the version string in this document's info.version field to opt into exactly this version's schema.

Example:

"2026-03-17"

Path Parameters

id
string<uuid>
required

Issue unique identifier (UUID)

Pattern: ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$

Query Parameters

version
integer<int32>

Issue version for workflow results (defaults to latest)

Required range: x >= 1

Response

Investigation results

sessionUuid
string | null
required

Session UUID for live investigation

rootCause
object
required

Root cause information

causalTree
object
required

Causal tree analysis

causalTreeV2
object
required

Causal graph V2 with enriched evidence

remediation
object
required

Remediation actions and steps

timeline
object[]
required

Timeline events