Find an API

Search public APIs with auth details & Postman guides

← All APIs

AWSServerlessApplicationRepository

amazonaws · Cloud

Cloud No Auth Free & Open cloud

The AWS Serverless Application Repository makes it easy for developers and enterprises to quickly find and deploy serverless applications in the AWS Cloud. For more information about serverless applications, see Serverless Computing and Applications on the AWS website. The AWS Serverless Application Repository is deeply integrated with the AWS Lambda console, so that developers of all levels can get started with serverless computing without needing to learn anything new. You can use

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET ListApplications

Lists applications owned by the requester.

https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/applications?MaxItems=example&maxItems=1&NextToken=example&nextToken=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/applications?MaxItems=example&maxItems=1&NextToken=example&nextToken=example"
import requests
params = {
    "MaxItems": "example",
    "maxItems": "1",
    "NextToken": "example",
    "nextToken": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/applications",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/applications');
url.searchParams.set('MaxItems', 'example');
url.searchParams.set('maxItems', '1');
url.searchParams.set('NextToken', 'example');
url.searchParams.set('nextToken', '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/serverlessrepo/2017-09-08/applications")
	q := baseURL.Query()
	q.Set("MaxItems", "example")
	q.Set("maxItems", "1")
	q.Set("NextToken", "example")
	q.Set("nextToken", "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/serverlessrepo/2017-09-08/applications")
uri.query = URI.encode_www_form({
  "MaxItems" => "example",
  "maxItems" => "1",
  "NextToken" => "example",
  "nextToken" => "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/serverlessrepo/2017-09-08/applications?" . http_build_query([
    "MaxItems" => "example",
    "maxItems" => "1",
    "NextToken" => "example",
    "nextToken" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET GetApplication

Gets the specified application.

https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/applications/{applicationId}?semanticVersion=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/applications/{applicationId}?semanticVersion=example"
import requests
params = {
    "semanticVersion": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/applications/{applicationId}",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/applications/{applicationId}');
url.searchParams.set('semanticVersion', '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/serverlessrepo/2017-09-08/applications/{applicationId}")
	q := baseURL.Query()
	q.Set("semanticVersion", "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/serverlessrepo/2017-09-08/applications/{applicationId}")
uri.query = URI.encode_www_form({
  "semanticVersion" => "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/serverlessrepo/2017-09-08/applications/{applicationId}?" . http_build_query([
    "semanticVersion" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET ListApplicationDependencies

Retrieves the list of applications nested in the containing application.

https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/applications/{applicationId}/dependencies?MaxItems=example&maxItems=1&NextToken=example&nextToken=example&semanticVersion=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/applications/{applicationId}/dependencies?MaxItems=example&maxItems=1&NextToken=example&nextToken=example&semanticVersion=example"
import requests
params = {
    "MaxItems": "example",
    "maxItems": "1",
    "NextToken": "example",
    "nextToken": "example",
    "semanticVersion": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/applications/{applicationId}/dependencies",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/amazonaws.com/serverlessrepo/2017-09-08/applications/{applicationId}/dependencies');
url.searchParams.set('MaxItems', 'example');
url.searchParams.set('maxItems', '1');
url.searchParams.set('NextToken', 'example');
url.searchParams.set('nextToken', 'example');
url.searchParams.set('semanticVersion', '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/serverlessrepo/2017-09-08/applications/{applicationId}/dependencies")
	q := baseURL.Query()
	q.Set("MaxItems", "example")
	q.Set("maxItems", "1")
	q.Set("NextToken", "example")
	q.Set("nextToken", "example")
	q.Set("semanticVersion", "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/serverlessrepo/2017-09-08/applications/{applicationId}/dependencies")
uri.query = URI.encode_www_form({
  "MaxItems" => "example",
  "maxItems" => "1",
  "NextToken" => "example",
  "nextToken" => "example",
  "semanticVersion" => "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/serverlessrepo/2017-09-08/applications/{applicationId}/dependencies?" . http_build_query([
    "MaxItems" => "example",
    "maxItems" => "1",
    "NextToken" => "example",
    "nextToken" => "example",
    "semanticVersion" => "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

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

What can you build with AWSServerlessApplicationRepository?

AWSServerlessApplicationRepository 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. AWSServerlessApplicationRepository 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 ↗