Find an API

Search public APIs with auth details & Postman guides

← All APIs

AWS Support

amazonaws · Cloud

Cloud No Auth Free & Open cloud

Amazon Web Services Support The Amazon Web Services Support API Reference is intended for programmers who need detailed information about the Amazon Web Services Support operations and data types. You can use the API to manage your support cases programmatically. The Amazon Web Services Support API uses HTTP methods that return results in JSON format. You must have a Business, Enterprise On-Ramp, or Enterprise Support plan to use the Amazon

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

POST DescribeCases

Returns a list of cases that you specify by passing one or more case IDs. You can use the afterTime and beforeTime parameters to filter the cases by date. You can set values for the includeResolvedCases and includeCommunications parameters to sp

https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.DescribeCases?nextToken=example&maxResults=example

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
X-Amz-Target AWSSupport_20130415.DescribeCases
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.DescribeCases?nextToken=example&maxResults=example" \
  -H "X-Amz-Target: AWSSupport_20130415.DescribeCases"
import requests
params = {
    "nextToken": "example",
    "maxResults": "example"
}
headers = {
    "X-Amz-Target": "AWSSupport_20130415.DescribeCases"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.DescribeCases",
    params=params,
    headers=headers,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.DescribeCases');
url.searchParams.set('nextToken', 'example');
url.searchParams.set('maxResults', 'example');

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'X-Amz-Target': 'AWSSupport_20130415.DescribeCases'
  },
}); 
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/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.DescribeCases")
	q := baseURL.Query()
	q.Set("nextToken", "example")
	q.Set("maxResults", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("X-Amz-Target", "AWSSupport_20130415.DescribeCases")

	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/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.DescribeCases")
uri.query = URI.encode_www_form({
  "nextToken" => "example",
  "maxResults" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Post.new(uri)
req["X-Amz-Target"] = "AWSSupport_20130415.DescribeCases"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.DescribeCases?" . http_build_query([
    "nextToken" => "example",
    "maxResults" => "example"
]);
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "X-Amz-Target: AWSSupport_20130415.DescribeCases"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST DescribeCommunications

Returns communications and attachments for one or more support cases. Use the afterTime and beforeTime parameters to filter by date. You can use the caseId parameter to restrict the results to a specific case. Case data is available for 12 months afte

https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.DescribeCommunications?nextToken=example&maxResults=example

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
X-Amz-Target AWSSupport_20130415.DescribeCommunications
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.DescribeCommunications?nextToken=example&maxResults=example" \
  -H "X-Amz-Target: AWSSupport_20130415.DescribeCommunications"
import requests
params = {
    "nextToken": "example",
    "maxResults": "example"
}
headers = {
    "X-Amz-Target": "AWSSupport_20130415.DescribeCommunications"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.DescribeCommunications",
    params=params,
    headers=headers,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.DescribeCommunications');
url.searchParams.set('nextToken', 'example');
url.searchParams.set('maxResults', 'example');

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'X-Amz-Target': 'AWSSupport_20130415.DescribeCommunications'
  },
}); 
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/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.DescribeCommunications")
	q := baseURL.Query()
	q.Set("nextToken", "example")
	q.Set("maxResults", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("X-Amz-Target", "AWSSupport_20130415.DescribeCommunications")

	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/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.DescribeCommunications")
uri.query = URI.encode_www_form({
  "nextToken" => "example",
  "maxResults" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Post.new(uri)
req["X-Amz-Target"] = "AWSSupport_20130415.DescribeCommunications"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.DescribeCommunications?" . http_build_query([
    "nextToken" => "example",
    "maxResults" => "example"
]);
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "X-Amz-Target: AWSSupport_20130415.DescribeCommunications"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
POST AddAttachmentsToSet

Adds one or more attachments to an attachment set. An attachment set is a temporary container for attachments that you add to a case or case communication. The set is available for 1 hour after it's created. The expiryTime returned in the response is when the set expires. </p

https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.AddAttachmentsToSet

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
X-Amz-Target AWSSupport_20130415.AddAttachmentsToSet
curl -X POST "https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.AddAttachmentsToSet" \
  -H "X-Amz-Target: AWSSupport_20130415.AddAttachmentsToSet"
import requests
headers = {
    "X-Amz-Target": "AWSSupport_20130415.AddAttachmentsToSet"
}
response = requests.post(
    "https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.AddAttachmentsToSet",
    headers=headers,
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.AddAttachmentsToSet';

const response = await fetch(url, {
  method: 'POST',
  headers: {
    'X-Amz-Target': 'AWSSupport_20130415.AddAttachmentsToSet'
  },
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.AddAttachmentsToSet"
	req, _ := http.NewRequest("POST", targetURL, nil)
	req.Header.Set("X-Amz-Target", "AWSSupport_20130415.AddAttachmentsToSet")

	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/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.AddAttachmentsToSet")

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Post.new(uri)
req["X-Amz-Target"] = "AWSSupport_20130415.AddAttachmentsToSet"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/amazonaws.com/support/2013-04-15/#X-Amz-Target=AWSSupport_20130415.AddAttachmentsToSet";
$opts = ["http" => [
    "method" => "POST",
    "header" => implode("\r\n", [
        "X-Amz-Target: AWSSupport_20130415.AddAttachmentsToSet"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with AWS Support?

AWS Support 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 Support 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?

Open documentation ↗