Amazon Serverless Application Repository Applications API

Serverless application management

Operations 5

GET /applications Amazon Serverless Application Repository List Applications #
POST /applications Amazon Serverless Application Repository Create Application #
GET /applications/{applicationId} Amazon Serverless Application Repository Get Application #
PATCH /applications/{applicationId} Amazon Serverless Application Repository Update Application #
DELETE /applications/{applicationId} Amazon Serverless Application Repository Delete Application #

Documentation

Specifications

Schemas & Data

Other Resources

🔗
APIsJSON
https://raw.githubusercontent.com/api-evangelist/amazon-serverless-application-repository/refs/heads/main/apis.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-serverless-application-repository/refs/heads/main/arazzo/amazon-serverless-application-repository-browse-applications-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-serverless-application-repository/refs/heads/main/arazzo/amazon-serverless-application-repository-decommission-application-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-serverless-application-repository/refs/heads/main/arazzo/amazon-serverless-application-repository-deploy-via-change-set-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-serverless-application-repository/refs/heads/main/arazzo/amazon-serverless-application-repository-provision-and-share-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-serverless-application-repository/refs/heads/main/arazzo/amazon-serverless-application-repository-publish-application-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-serverless-application-repository/refs/heads/main/arazzo/amazon-serverless-application-repository-publish-multiple-versions-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-serverless-application-repository/refs/heads/main/arazzo/amazon-serverless-application-repository-set-application-policy-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/amazon-serverless-application-repository/refs/heads/main/arazzo/amazon-serverless-application-repository-update-application-metadata-workflow.yml

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/amazon-serverless-application-repository-applications-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

amazon-serverless-application-repository-applications-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amazon Serverless Application Repository Applications API
  description: The AWS Serverless Application Repository enables teams, organizations, and individual developers to find, deploy, and publish serverless applications. It provides programmatic access to create, manage, and deploy SAM-based serverless applications and manage their versions and policies.
  version: 2017-09-08
  contact:
    name: Amazon Web Services
    url: https://aws.amazon.com/serverless/serverlessrepo/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
  x-generated-from: documentation
servers:
- url: https://serverlessrepo.{region}.amazonaws.com
  variables:
    region:
      default: us-east-1
      description: The AWS region.
security:
- AWSSignatureV4: []
tags:
- name: Applications
  description: Serverless application management
paths:
  /applications:
    get:
      operationId: ListApplications
      summary: Amazon Serverless Application Repository List Applications
      description: Lists applications owned by the requester.
      tags:
      - Applications
      parameters:
      - name: maxItems
        in: query
        description: The total number of items to return.
        schema:
          type: integer
      - name: nextToken
        in: query
        description: A token to specify where to start paginating.
        schema:
          type: string
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  applications:
                    type: array
                    items:
                      $ref: '#/components/schemas/ApplicationSummary'
                  nextToken:
                    type: string
              examples:
                ListApplications200Example:
                  summary: Default ListApplications 200 response
                  x-microcks-default: true
                  value:
                    applications:
                    - applicationId: arn:aws:serverlessrepo:us-east-1:123456789012:applications/MyApp
                      name: MyApp
                      author: developer@example.com
                      description: A sample serverless application
                    nextToken: null
        '400':
          description: Bad request.
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      operationId: CreateApplication
      summary: Amazon Serverless Application Repository Create Application
      description: Creates an application, optionally including an AWS SAM file to create the first application version in the same call.
      tags:
      - Applications
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateApplicationRequest'
      responses:
        '201':
          description: Application created successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Application'
              examples:
                CreateApplication201Example:
                  summary: Default CreateApplication 201 response
                  x-microcks-default: true
                  value:
                    applicationId: arn:aws:serverlessrepo:us-east-1:123456789012:applications/MyApp
                    name: MyApp
                    author: developer@example.com
                    description: A sample serverless application
        '400':
          description: Bad request.
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /applications/{applicationId}:
    get:
      operationId: GetApplication
      summary: Amazon Serverless Application Repository Get Application
      description: Gets the specified application.
      tags:
      - Applications
      parameters:
      - name: applicationId
        in: path
        required: true
        description: The Amazon Resource Name (ARN) of the application.
        schema:
          type: string
      - name: semanticVersion
        in: query
        description: The semantic version of the application to get.
        schema:
          type: string
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Application'
              examples:
                GetApplication200Example:
                  summary: Default GetApplication 200 response
                  x-microcks-default: true
                  value:
                    applicationId: arn:aws:serverlessrepo:us-east-1:123456789012:applications/MyApp
                    name: MyApp
                    author: developer@example.com
                    description: A sample serverless application
        '404':
          description: Application not found.
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    patch:
      operationId: UpdateApplication
      summary: Amazon Serverless Application Repository Update Application
      description: Updates the specified application.
      tags:
      - Applications
      parameters:
      - name: applicationId
        in: path
        required: true
        description: The Amazon Resource Name (ARN) of the application.
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                author:
                  type: string
                  description: The name of the author publishing the app.
                description:
                  type: string
                  description: The description of the application.
                homePageUrl:
                  type: string
                  description: A URL with more information about the application.
                labels:
                  type: array
                  items:
                    type: string
                  description: Labels to improve discovery of apps in search results.
                readmeBody:
                  type: string
                  description: A text readme file that contains a more detailed description of the application.
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Application'
              examples:
                UpdateApplication200Example:
                  summary: Default UpdateApplication 200 response
                  x-microcks-default: true
                  value:
                    applicationId: arn:aws:serverlessrepo:us-east-1:123456789012:applications/MyApp
                    name: MyApp
                    description: Updated description
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    delete:
      operationId: DeleteApplication
      summary: Amazon Serverless Application Repository Delete Application
      description: Deletes the specified application.
      tags:
      - Applications
      parameters:
      - name: applicationId
        in: path
        required: true
        description: The Amazon Resource Name (ARN) of the application.
        schema:
          type: string
      responses:
        '204':
          description: Application deleted successfully.
        '404':
          description: Application not found.
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    VersionSummary:
      type: object
      description: Summary of details about an application version.
      properties:
        applicationId:
          type: string
          description: The application ARN.
          example: arn:aws:serverlessrepo:us-east-1:123456789012:applications/MyApp
        semanticVersion:
          type: string
          description: The semantic version of the application.
          example: 1.0.0
        creationTime:
          type: string
          format: date-time
          description: The date and time when this version was created.
        sourceCodeUrl:
          type: string
          description: A link to a public repository for the source code.
    CreateApplicationRequest:
      type: object
      required:
      - author
      - description
      - name
      properties:
        author:
          type: string
          description: The name of the author publishing the app.
        description:
          type: string
          description: The description of the application.
        homePageUrl:
          type: string
          description: A URL with more information about the application.
        labels:
          type: array
          items:
            type: string
          description: Labels to improve discovery.
        licenseBody:
          type: string
          description: A text file that contains the license of the app.
        name:
          type: string
          description: The name of the application.
        readmeBody:
          type: string
          description: A text readme file for the application.
        spdxLicenseId:
          type: string
          description: A valid identifier from https://spdx.org/licenses/.
        templateBody:
          type: string
          description: The local packaged AWS SAM template file of your application.
    Application:
      type: object
      description: Information about the application.
      properties:
        applicationId:
          type: string
          description: The application Amazon Resource Name (ARN).
          example: arn:aws:serverlessrepo:us-east-1:123456789012:applications/MyApp
        name:
          type: string
          description: The name of the application.
          example: MyApp
        author:
          type: string
          description: The name of the author publishing the app.
          example: developer@example.com
        description:
          type: string
          description: The description of the application.
          example: A sample serverless application
        creationTime:
          type: string
          format: date-time
          description: The date and time this resource was created.
        homePageUrl:
          type: string
          description: A URL with more information about the application.
        labels:
          type: array
          items:
            type: string
          description: Labels to improve discovery of apps in search results.
        licenseUrl:
          type: string
          description: A link to a license file of the app.
        readmeUrl:
          type: string
          description: A link to the readme file in Markdown language.
        spdxLicenseId:
          type: string
          description: A valid identifier from https://spdx.org/licenses/.
        version:
          $ref: '#/components/schemas/VersionSummary'
    ApplicationSummary:
      type: object
      description: Summary of details about the application.
      properties:
        applicationId:
          type: string
          description: The application ARN.
          example: arn:aws:serverlessrepo:us-east-1:123456789012:applications/MyApp
        name:
          type: string
          description: The name of the application.
          example: MyApp
        author:
          type: string
          description: The name of the author.
          example: developer@example.com
        description:
          type: string
          description: The description of the application.
        creationTime:
          type: string
          format: date-time
          description: The date and time when created.
        labels:
          type: array
          items:
            type: string
          description: Labels for discovery.
  securitySchemes:
    AWSSignatureV4:
      type: apiKey
      in: header
      name: Authorization
      description: AWS Signature Version 4 authentication