List Remediations
curl --request GET \
--url http://{host}:{port}/{basePath}/remediations \
--header 'Authorization: <api-key>'import requests
url = "http://{host}:{port}/{basePath}/remediations"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('http://{host}:{port}/{basePath}/remediations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "62437",
CURLOPT_URL => "http://{host}:{port}/{basePath}/remediations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://{host}:{port}/{basePath}/remediations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://{host}:{port}/{basePath}/remediations")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("http://{host}:{port}/{basePath}/remediations")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"apiVersion": "v1",
"kind": "RemediationPlanList",
"metadata": {
"totalCount": 3,
"page": 1,
"pageSize": 20
},
"items": [
{
"name": "remediation-inc-20260319-001-1",
"namespace": "production",
"issueRef": "INC-20260319-001",
"attempt": 1,
"strategy": "Runbook: oomkill-standard (Tier 1 match: oom_kill + critical + Deployment)",
"state": "Completed",
"startedAt": "2026-03-19T14:35:00Z",
"completedAt": "2026-03-19T14:38:00Z",
"result": "All actions completed successfully. Resource healthy after verification.",
"agenticMode": false,
"agenticStepCount": 0,
"actions": [
{"type": "AdjustResources", "params": {"memoryLimit": "1Gi"}},
{"type": "RestartDeployment", "params": {"deployment": "payment-service"}}
],
"creationTimestamp": "2026-03-19T14:34:00Z"
},
{
"name": "remediation-inc-20260319-002-1",
"namespace": "production",
"issueRef": "INC-20260319-002",
"attempt": 1,
"strategy": "Agentic mode: no matching runbook found",
"state": "Executing",
"startedAt": "2026-03-19T15:10:00Z",
"result": "",
"agenticMode": true,
"agenticStepCount": 3,
"actions": [],
"creationTimestamp": "2026-03-19T15:09:00Z"
}
]
}
Remediations
List Remediations
Returns all remediation plans with execution state, actions, and agentic mode details
GET
/
remediations
List Remediations
curl --request GET \
--url http://{host}:{port}/{basePath}/remediations \
--header 'Authorization: <api-key>'import requests
url = "http://{host}:{port}/{basePath}/remediations"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('http://{host}:{port}/{basePath}/remediations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "62437",
CURLOPT_URL => "http://{host}:{port}/{basePath}/remediations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://{host}:{port}/{basePath}/remediations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://{host}:{port}/{basePath}/remediations")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("http://{host}:{port}/{basePath}/remediations")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"apiVersion": "v1",
"kind": "RemediationPlanList",
"metadata": {
"totalCount": 3,
"page": 1,
"pageSize": 20
},
"items": [
{
"name": "remediation-inc-20260319-001-1",
"namespace": "production",
"issueRef": "INC-20260319-001",
"attempt": 1,
"strategy": "Runbook: oomkill-standard (Tier 1 match: oom_kill + critical + Deployment)",
"state": "Completed",
"startedAt": "2026-03-19T14:35:00Z",
"completedAt": "2026-03-19T14:38:00Z",
"result": "All actions completed successfully. Resource healthy after verification.",
"agenticMode": false,
"agenticStepCount": 0,
"actions": [
{"type": "AdjustResources", "params": {"memoryLimit": "1Gi"}},
{"type": "RestartDeployment", "params": {"deployment": "payment-service"}}
],
"creationTimestamp": "2026-03-19T14:34:00Z"
},
{
"name": "remediation-inc-20260319-002-1",
"namespace": "production",
"issueRef": "INC-20260319-002",
"attempt": 1,
"strategy": "Agentic mode: no matching runbook found",
"state": "Executing",
"startedAt": "2026-03-19T15:10:00Z",
"result": "",
"agenticMode": true,
"agenticStepCount": 3,
"actions": [],
"creationTimestamp": "2026-03-19T15:09:00Z"
}
]
}
string
Filter by Kubernetes namespace
string
Filter by state:
Pending, Executing, Verifying, Completed, Failed, RolledBackstring
Filter by incident name (e.g.,
INC-20260319-001)integer
default:"1"
Page number for pagination
integer
default:"20"
Items per page (max 100)
Remediation Modes
Each plan operates in one of two modes:- Runbook mode (
agenticMode: false): Executes a pre-defined sequence of actions from a matched runbook - Agentic mode (
agenticMode: true): AI-driven step-by-step remediation where the LLM proposes actions, observes results, and decides next steps
{
"apiVersion": "v1",
"kind": "RemediationPlanList",
"metadata": {
"totalCount": 3,
"page": 1,
"pageSize": 20
},
"items": [
{
"name": "remediation-inc-20260319-001-1",
"namespace": "production",
"issueRef": "INC-20260319-001",
"attempt": 1,
"strategy": "Runbook: oomkill-standard (Tier 1 match: oom_kill + critical + Deployment)",
"state": "Completed",
"startedAt": "2026-03-19T14:35:00Z",
"completedAt": "2026-03-19T14:38:00Z",
"result": "All actions completed successfully. Resource healthy after verification.",
"agenticMode": false,
"agenticStepCount": 0,
"actions": [
{"type": "AdjustResources", "params": {"memoryLimit": "1Gi"}},
{"type": "RestartDeployment", "params": {"deployment": "payment-service"}}
],
"creationTimestamp": "2026-03-19T14:34:00Z"
},
{
"name": "remediation-inc-20260319-002-1",
"namespace": "production",
"issueRef": "INC-20260319-002",
"attempt": 1,
"strategy": "Agentic mode: no matching runbook found",
"state": "Executing",
"startedAt": "2026-03-19T15:10:00Z",
"result": "",
"agenticMode": true,
"agenticStepCount": 3,
"actions": [],
"creationTimestamp": "2026-03-19T15:09:00Z"
}
]
}
Authorizations
Bearer token issued by the operator. Format: Authorization: Bearer <token>.
Query Parameters
Filter by Kubernetes namespace.
Filter by execution state.
Available options:
Pending, Executing, Verifying, Completed, Failed, RolledBack Filter by incident name.
Page number.
Items per page (max 100).
Required range:
x <= 100⌘I