AWS Systems Manager Incident Manager
amazonaws · Cloud
Systems Manager Incident Manager is an incident management console designed to help users mitigate and recover from incidents affecting their Amazon Web Services-hosted applications. An incident is any unplanned interruption or reduction in quality of services. Incident Manager increases incident resolution by notifying responders of impact, highlighting relevant troubleshooting data, and providing collaboration tools to get services back up and running. To achieve the primary goal of
Authentication
Sample Requests
Returns the details for the specified incident record.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getIncidentRecord#arn?arn=example"
import requests
params = {
"arn": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getIncidentRecord#arn",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getIncidentRecord#arn');
url.searchParams.set('arn', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getIncidentRecord#arn")
q := baseURL.Query()
q.Set("arn", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getIncidentRecord#arn")
uri.query = URI.encode_www_form({
"arn" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getIncidentRecord#arn?" . http_build_query([
"arn" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Retrieve your Incident Manager replication set.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getReplicationSet#arn?arn=example"
import requests
params = {
"arn": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getReplicationSet#arn",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getReplicationSet#arn');
url.searchParams.set('arn', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getReplicationSet#arn")
q := baseURL.Query()
q.Set("arn", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getReplicationSet#arn")
uri.query = URI.encode_www_form({
"arn" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getReplicationSet#arn?" . http_build_query([
"arn" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Retrieves the details of the specified response plan.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getResponsePlan#arn?arn=example"
import requests
params = {
"arn": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getResponsePlan#arn",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getResponsePlan#arn');
url.searchParams.set('arn', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getResponsePlan#arn")
q := baseURL.Query()
q.Set("arn", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getResponsePlan#arn")
uri.query = URI.encode_www_form({
"arn" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/ssm-incidents/2018-05-10/getResponsePlan#arn?" . http_build_query([
"arn" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with AWS Systems Manager Incident Manager?
AWS Systems Manager Incident Manager is a Cloud API. Developers commonly use cloud APIs for:
- provisioning and managing cloud infrastructure
- automating deployments and container orchestration
- monitoring uptime and performance metrics
- managing storage buckets and databases
- setting up auto-scaling and load balancing
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. AWS Systems Manager Incident Manager is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?