Amazon API Gateway ApiKeys API

Manage API keys

Operations 2

GET /apikeys Amazon API Gateway List API Keys #
POST /apikeys Amazon API Gateway Create an API Key #

Documentation

Specifications

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/aws-api-gateway-apikeys-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

aws-api-gateway-apikeys-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amazon API Gateway V1 (REST) API Keys API
  description: The API Gateway V1 control plane API is used to create, deploy, and manage REST APIs in Amazon API Gateway.
  version: '2015-07-09'
  contact:
    name: AWS Support
    url: https://aws.amazon.com/premiumsupport/
  termsOfService: https://aws.amazon.com/service-terms/
servers:
- url: https://apigateway.{region}.amazonaws.com
  description: Amazon API Gateway regional endpoint
  variables:
    region:
      default: us-east-1
      description: AWS region
security:
- sigv4: []
tags:
- name: ApiKeys
  description: Manage API keys
paths:
  /apikeys:
    get:
      operationId: getApiKeys
      summary: Amazon API Gateway List API Keys
      description: Lists the ApiKeys for the caller's account.
      tags:
      - ApiKeys
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiKeys'
              examples:
                getApiKeys200Example:
                  summary: Default getApiKeys 200 response
                  x-microcks-default: true
                  value:
                    items:
                    - example-value
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      operationId: createApiKey
      summary: Amazon API Gateway Create an API Key
      description: Creates a new ApiKey resource.
      tags:
      - ApiKeys
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateApiKeyRequest'
            examples:
              createApiKeyRequestExample:
                summary: Default createApiKey request
                x-microcks-default: true
                value:
                  name: my-resource
                  description: A description of this resource.
                  enabled: true
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiKey'
              examples:
                createApiKey201Example:
                  summary: Default createApiKey 201 response
                  x-microcks-default: true
                  value:
                    id: abc123
                    value: example-value
                    name: my-resource
                    enabled: true
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    ApiKeys:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/ApiKey'
          example:
          - example-value
    CreateApiKeyRequest:
      type: object
      properties:
        name:
          type: string
          description: Name of the ApiKey.
          example: my-resource
        description:
          type: string
          description: Description of the ApiKey.
          example: A description of this resource.
        enabled:
          type: boolean
          description: Whether the ApiKey should be enabled.
          example: true
    ApiKey:
      type: object
      properties:
        id:
          type: string
          description: ApiKey identifier.
          example: abc123
        value:
          type: string
          description: Value of the ApiKey.
          example: example-value
        name:
          type: string
          description: Name of the ApiKey.
          example: my-resource
        enabled:
          type: boolean
          description: Whether the ApiKey is enabled.
          example: true
  securitySchemes:
    sigv4:
      type: apiKey
      in: header
      name: Authorization
      description: AWS Signature Version 4 signed request.
externalDocs:
  description: Amazon API Gateway V1 API Reference
  url: https://docs.aws.amazon.com/apigateway/latest/api/Welcome.html