Amazon Lambda Functions API

Lambda function management

Operations 7

POST /functions Amazon Lambda Create Function #
GET /functions Amazon Lambda List Functions #
GET /functions/{FunctionName} Amazon Lambda Get Function #
DELETE /functions/{FunctionName} Amazon Lambda Delete Function #
PUT /functions/{FunctionName}/code Amazon Lambda Update Function Code #
PUT /functions/{FunctionName}/configuration Amazon Lambda Update Function Configuration #
POST /functions/{FunctionName}/invocations Amazon Lambda Invoke Function #

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-lambda-functions-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-lambda-functions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amazon Lambda Event Source Mappings Functions API
  description: The Amazon Lambda API provides programmatic access to manage Lambda resources.
  version: '2024-01-01'
  contact:
    name: AWS Support
    url: https://aws.amazon.com/premiumsupport/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
  x-logo:
    url: https://a0.awsstatic.com/libra-css/images/logos/aws_logo_smile_1200x630.png
servers:
- url: https://lambda.us-east-1.amazonaws.com
  description: Amazon Lambda endpoint
security:
- sigv4: []
tags:
- name: Functions
  description: Lambda function management
paths:
  /functions:
    post:
      operationId: CreateFunction
      summary: Amazon Lambda Create Function
      description: Creates a Lambda function.
      tags:
      - Functions
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    get:
      operationId: ListFunctions
      summary: Amazon Lambda List Functions
      description: Returns a list of Lambda functions, with the version-specific configuration of each.
      tags:
      - Functions
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /functions/{FunctionName}:
    get:
      operationId: GetFunction
      summary: Amazon Lambda Get Function
      description: Returns information about the function or function version.
      tags:
      - Functions
      parameters:
      - name: FunctionName
        in: path
        required: true
        schema:
          type: string
        description: The name of the Lambda function.
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    delete:
      operationId: DeleteFunction
      summary: Amazon Lambda Delete Function
      description: Deletes a Lambda function.
      tags:
      - Functions
      parameters:
      - name: FunctionName
        in: path
        required: true
        schema:
          type: string
        description: The name of the Lambda function.
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /functions/{FunctionName}/code:
    put:
      operationId: UpdateFunctionCode
      summary: Amazon Lambda Update Function Code
      description: Updates a Lambda function's code.
      tags:
      - Functions
      parameters:
      - name: FunctionName
        in: path
        required: true
        schema:
          type: string
        description: The name of the Lambda function.
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /functions/{FunctionName}/configuration:
    put:
      operationId: UpdateFunctionConfiguration
      summary: Amazon Lambda Update Function Configuration
      description: Modify the version-specific settings of a Lambda function.
      tags:
      - Functions
      parameters:
      - name: FunctionName
        in: path
        required: true
        schema:
          type: string
        description: The name of the Lambda function.
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /functions/{FunctionName}/invocations:
    post:
      operationId: InvokeFunction
      summary: Amazon Lambda Invoke Function
      description: Invokes a Lambda function.
      tags:
      - Functions
      parameters:
      - name: FunctionName
        in: path
        required: true
        schema:
          type: string
        description: The name of the Lambda function.
      responses:
        '200':
          description: Success
        '400':
          description: Bad request
        '403':
          description: Access denied
        '500':
          description: Internal server error
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  securitySchemes:
    sigv4:
      type: apiKey
      name: Authorization
      in: header
      description: AWS Signature Version 4 authentication