Amazon EC2 Launch Templates API

Operations for managing reusable instance launch configurations

Documentation

Specifications

Schemas & Data

Other Resources

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-ec2-launch-templates-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 email required.

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

OpenAPI Specification

amazon-ec2-launch-templates-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Amazon EC2 AMIs Launch Templates API
  description: Amazon Elastic Compute Cloud (EC2) provides resizable compute capacity in the cloud. This API enables you to launch and manage virtual server instances, configure networking and security, and manage storage volumes with complete control over your computing resources.
  version: '2016-11-15'
  contact:
    name: Amazon Web Services
    url: https://aws.amazon.com/contact-us/
  termsOfService: https://aws.amazon.com/service-terms/
servers:
- url: https://ec2.{region}.amazonaws.com
  description: Amazon EC2 Regional Endpoint
  variables:
    region:
      default: us-east-1
      description: AWS Region
security:
- sigv4Auth: []
tags:
- name: Launch Templates
  description: Operations for managing reusable instance launch configurations
paths:
  /?Action=CreateLaunchTemplate:
    get:
      operationId: createLaunchTemplate
      summary: Amazon EC2 Create a Launch Template
      description: Creates a launch template. A launch template contains the parameters to launch an instance. When you launch an instance using RunInstances, you can specify a launch template instead of providing the launch parameters in the request.
      tags:
      - Launch Templates
      parameters:
      - name: LaunchTemplateName
        in: query
        required: true
        description: A name for the launch template
        schema:
          type: string
        example: example-resource-name
      - name: VersionDescription
        in: query
        description: A description for the first version of the launch template
        schema:
          type: string
        example: 5.0.0
      responses:
        '200':
          description: Successfully created launch template
        '400':
          description: Invalid request parameters
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /?Action=DescribeLaunchTemplates:
    get:
      operationId: describeLaunchTemplates
      summary: Amazon EC2 Describe Launch Templates
      description: Describes one or more launch templates.
      tags:
      - Launch Templates
      parameters:
      - name: LaunchTemplateId
        in: query
        description: The IDs of the launch templates
        schema:
          type: array
          items:
            type: string
        example:
        - example-id-1234
      - name: LaunchTemplateName
        in: query
        description: The names of the launch templates
        schema:
          type: array
          items:
            type: string
        example:
        - example-resource-name
      responses:
        '200':
          description: Successfully described launch templates
        '400':
          description: Invalid request parameters
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  securitySchemes:
    sigv4Auth:
      type: apiKey
      name: Authorization
      in: header
      description: AWS Signature Version 4 authentication
externalDocs:
  description: Amazon EC2 API Reference
  url: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/