AWS Backup Backup Plans API

The Backup Plans API from AWS Backup — 2 operation(s) for backup plans.

Operations 5

GET /backup/plans List backup plans #
POST /backup/plans Create a backup plan #
GET /backup/plans/{backupPlanId} Get a backup plan #
POST /backup/plans/{backupPlanId} Update a backup plan #
DELETE /backup/plans/{backupPlanId} Delete a backup plan #

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-backup-backup-plans-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-backup-backup-plans-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AWS Backup Backup Jobs Backup Plans API
  version: '2018-11-15'
  description: 'AWS Backup is a fully managed, policy-based data protection service that

    centralizes and automates backup of data across AWS services. The AWS

    Backup API exposes REST operations for managing backup plans, backup

    selections, backup vaults, recovery points, restore jobs, and audit

    frameworks. All requests are signed with AWS Signature Version 4 (SigV4).


    See https://docs.aws.amazon.com/aws-backup/latest/devguide/api-reference.html

    for the full reference.

    '
  contact:
    name: AWS Backup Documentation
    url: https://docs.aws.amazon.com/aws-backup/
servers:
- url: https://backup.{region}.amazonaws.com
  description: AWS Backup regional endpoint
  variables:
    region:
      default: us-east-1
      description: AWS region
security:
- SigV4: []
tags:
- name: Backup Plans
paths:
  /backup/plans:
    get:
      tags:
      - Backup Plans
      summary: List backup plans
      operationId: ListBackupPlans
      parameters:
      - $ref: '#/components/parameters/MaxResults'
      - $ref: '#/components/parameters/NextToken'
      responses:
        '200':
          $ref: '#/components/responses/OK'
    post:
      tags:
      - Backup Plans
      summary: Create a backup plan
      operationId: CreateBackupPlan
      requestBody:
        $ref: '#/components/requestBodies/JsonBody'
      responses:
        '200':
          $ref: '#/components/responses/OK'
  /backup/plans/{backupPlanId}:
    get:
      tags:
      - Backup Plans
      summary: Get a backup plan
      operationId: GetBackupPlan
      parameters:
      - $ref: '#/components/parameters/BackupPlanId'
      responses:
        '200':
          $ref: '#/components/responses/OK'
    post:
      tags:
      - Backup Plans
      summary: Update a backup plan
      operationId: UpdateBackupPlan
      parameters:
      - $ref: '#/components/parameters/BackupPlanId'
      requestBody:
        $ref: '#/components/requestBodies/JsonBody'
      responses:
        '200':
          $ref: '#/components/responses/OK'
    delete:
      tags:
      - Backup Plans
      summary: Delete a backup plan
      operationId: DeleteBackupPlan
      parameters:
      - $ref: '#/components/parameters/BackupPlanId'
      responses:
        '200':
          $ref: '#/components/responses/OK'
components:
  responses:
    OK:
      description: Successful response
      content:
        application/json:
          schema:
            type: object
            additionalProperties: true
  parameters:
    BackupPlanId:
      name: backupPlanId
      in: path
      required: true
      schema:
        type: string
    NextToken:
      name: nextToken
      in: query
      schema:
        type: string
    MaxResults:
      name: maxResults
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 1000
  requestBodies:
    JsonBody:
      required: true
      content:
        application/json:
          schema:
            type: object
            additionalProperties: true
  securitySchemes:
    SigV4:
      type: apiKey
      in: header
      name: Authorization
      description: AWS Signature Version 4 signed Authorization header