Amazon API Gateway UsagePlans API

Manage usage plans

Operations 2

GET /usageplans Amazon API Gateway List Usage Plans #
POST /usageplans Amazon API Gateway Create a Usage Plan #

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-usageplans-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-usageplans-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amazon API Gateway V1 (REST) Usage Plans 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: UsagePlans
  description: Manage usage plans
paths:
  /usageplans:
    get:
      operationId: getUsagePlans
      summary: Amazon API Gateway List Usage Plans
      description: Lists the usage plans for the caller's account.
      tags:
      - UsagePlans
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UsagePlans'
              examples:
                getUsagePlans200Example:
                  summary: Default getUsagePlans 200 response
                  x-microcks-default: true
                  value:
                    items:
                    - example-value
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      operationId: createUsagePlan
      summary: Amazon API Gateway Create a Usage Plan
      description: Creates a usage plan with throttle and quota configuration.
      tags:
      - UsagePlans
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateUsagePlanRequest'
            examples:
              createUsagePlanRequestExample:
                summary: Default createUsagePlan request
                x-microcks-default: true
                value:
                  name: my-resource
                  description: A description of this resource.
                  throttle:
                    burstLimit: 86
                    rateLimit: 27.41
                  quota:
                    limit: 68
                    period: DAY
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UsagePlan'
              examples:
                createUsagePlan201Example:
                  summary: Default createUsagePlan 201 response
                  x-microcks-default: true
                  value:
                    id: abc123
                    name: my-resource
                    throttle:
                      burstLimit: 7
                      rateLimit: 67.04
                    quota:
                      limit: 17
                      period: DAY
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    QuotaSettings:
      type: object
      properties:
        limit:
          type: integer
          description: Maximum number of requests in the period.
          example: 24
        period:
          type: string
          description: Time period (DAY, WEEK, MONTH).
          enum:
          - DAY
          - WEEK
          - MONTH
          example: DAY
    ThrottleSettings:
      type: object
      properties:
        burstLimit:
          type: integer
          description: Burst limit for requests.
          example: 49
        rateLimit:
          type: number
          description: Steady-state rate limit (requests per second).
          example: 69.99
    CreateUsagePlanRequest:
      type: object
      required:
      - name
      properties:
        name:
          type: string
          description: Name of the usage plan.
          example: my-resource
        description:
          type: string
          description: Description of the usage plan.
          example: A description of this resource.
        throttle:
          $ref: '#/components/schemas/ThrottleSettings'
        quota:
          $ref: '#/components/schemas/QuotaSettings'
    UsagePlans:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/UsagePlan'
          example:
          - example-value
    UsagePlan:
      type: object
      properties:
        id:
          type: string
          description: Usage plan identifier.
          example: abc123
        name:
          type: string
          description: Usage plan name.
          example: my-resource
        throttle:
          $ref: '#/components/schemas/ThrottleSettings'
        quota:
          $ref: '#/components/schemas/QuotaSettings'
  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