Aptible Maintenances API

The Maintenances API from Aptible — 2 operation(s) for maintenances.

Operations 2

GET /maintenances/apps list apps with maintenance info #
GET /maintenances/databases list databases with maintenance info #

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/aptible-maintenances-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

aptible-maintenances-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aptible Maintenances API
  version: v1
  contact:
    email: support@aptible.com
  description: 'Operations tagged Maintenances across 2 of this provider''s published API definitions: aptible-deploy-openapi-original.yml, aptible-maintenances-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: '{baseUrl}'
  variables:
    baseUrl:
      default: https://api.aptible.com
      description: Override for local or test environments
security:
- token: []
tags:
- name: Maintenances
paths:
  /maintenances/apps:
    get:
      description: Returns a paginated list of apps with their maintenance deadline info.
      operationId: GetMaintenanceApps
      parameters:
      - description: Current page of paginated results
        explode: true
        in: query
        name: page
        required: false
        schema:
          type: integer
        style: form
      - description: Number of results to return per page
        explode: true
        in: query
        name: per_page
        required: false
        schema:
          type: integer
        style: form
      responses:
        '200':
          content:
            application/hal+json:
              schema:
                $ref: '#/components/schemas/GetMaintenanceApps_200_response'
          description: successful
        default:
          content:
            application/hal+json:
              schema:
                $ref: '#/components/schemas/error'
          description: Error response. Often a 4xx or 5xx status code
      summary: list apps with maintenance info
      tags:
      - Maintenances
    servers:
    - url: '{baseUrl}'
      variables:
        baseUrl:
          default: https://api.aptible.com
          description: Override for local or test environments
  /maintenances/databases:
    get:
      description: Returns a paginated list of databases with their maintenance deadline info.
      operationId: GetMaintenanceDatabases
      parameters:
      - description: Current page of paginated results
        explode: true
        in: query
        name: page
        required: false
        schema:
          type: integer
        style: form
      - description: Number of results to return per page
        explode: true
        in: query
        name: per_page
        required: false
        schema:
          type: integer
        style: form
      responses:
        '200':
          content:
            application/hal+json:
              schema:
                $ref: '#/components/schemas/GetMaintenanceDatabases_200_response'
          description: successful
        default:
          content:
            application/hal+json:
              schema:
                $ref: '#/components/schemas/error'
          description: Error response. Often a 4xx or 5xx status code
      summary: list databases with maintenance info
      tags:
      - Maintenances
    servers:
    - url: '{baseUrl}'
      variables:
        baseUrl:
          default: https://api.aptible.com
          description: Override for local or test environments
components:
  schemas:
    GetMaintenanceDatabases_200_response__embedded_databases_inner:
      properties:
        id:
          type: integer
        handle:
          type: string
        type:
          type: string
          x-nullable: true
        provisioned:
          type: boolean
        _type:
          type: string
        created_at:
          type: string
        updated_at:
          type: string
        deleted_at:
          type: string
          x-nullable: true
        status:
          type: string
        maintenance_deadline:
          items:
            format: date-time
            type: string
          type: array
          x-nullable: true
        _links:
          type: object
      type: object
    GetMaintenanceApps_200_response__embedded_apps_inner:
      properties:
        id:
          type: integer
        handle:
          type: string
        _type:
          type: string
        created_at:
          type: string
        updated_at:
          type: string
        status:
          type: string
        maintenance_deadline:
          items:
            format: date-time
            type: string
          type: array
          x-nullable: true
        account_id:
          type: integer
        _links:
          type: object
      type: object
    GetMaintenanceApps_200_response__embedded:
      properties:
        apps:
          items:
            $ref: '#/components/schemas/GetMaintenanceApps_200_response__embedded_apps_inner'
          type: array
      type: object
    GetMaintenanceDatabases_200_response__embedded:
      properties:
        databases:
          items:
            $ref: '#/components/schemas/GetMaintenanceDatabases_200_response__embedded_databases_inner'
          type: array
      type: object
    GetMaintenanceApps_200_response:
      properties:
        _embedded:
          $ref: '#/components/schemas/GetMaintenanceApps_200_response__embedded'
        total_count:
          type: integer
        per_page:
          type: integer
        current_page:
          type: integer
        _links:
          type: object
      type: object
    GetMaintenanceDatabases_200_response:
      properties:
        _embedded:
          $ref: '#/components/schemas/GetMaintenanceDatabases_200_response__embedded'
        total_count:
          type: integer
        per_page:
          type: integer
        current_page:
          type: integer
        _links:
          type: object
      type: object
    error:
      properties:
        code:
          type: integer
        error:
          type: string
        message:
          type: string
      required:
      - code
      - error
      - message
      type: object
  securitySchemes:
    token:
      in: header
      name: Authorization
      type: apiKey
x-refined-from:
- aptible-deploy-openapi-original.yml
- aptible-maintenances-api-openapi.yml