Render Maintenance API

The `Maintenance` endpoints allow you to retrieve the latest maintenance runs for your Render services. You can also reschedule maintenance or trigger it to start immediately.

Operations 4

GET /maintenance List maintenance runs #
GET /maintenance/{maintenanceRunParam} Retrieve maintenance run #
PATCH /maintenance/{maintenanceRunParam} Update maintenance run #
POST /maintenance/{maintenanceRunParam}/trigger Trigger maintenance run #

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/render-maintenance-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

render-maintenance-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Render Public Audit Logs Maintenance API
  description: Manage everything about your Render services
  version: 1.0.0
  contact:
    name: Render API
    url: https://community.render.com
    email: support@render.com
servers:
- url: https://api.render.com/v1
security:
- BearerAuth: []
tags:
- name: Maintenance
  description: The `Maintenance` endpoints allow you to retrieve the latest maintenance runs for your Render services. You can also reschedule maintenance or trigger it to start immediately.
paths:
  /maintenance:
    get:
      tags:
      - Maintenance
      summary: List maintenance runs
      description: 'List scheduled and/or recent maintenance runs for specified resources.

        '
      operationId: list-maintenance
      parameters:
      - name: resourceId
        in: query
        schema:
          type: array
          items:
            type: string
            description: The Id of a resource that can undergo maintenance (Id of a service, a Postgres instance, or a Redis instance)
        style: form
        explode: false
        required: false
      - $ref: '#/components/parameters/ownerIdParam'
      - name: state
        in: query
        required: false
        schema:
          type: array
          items:
            type: string
            enum:
            - scheduled
            - in_progress
            - user_fix_required
            - cancelled
            - succeeded
            - failed
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/paths/~1maintenance~1%7BmaintenanceRunParam%7D/get/responses/200/content/application~1json/schema'
        '400':
          $ref: '#/components/responses/400BadRequest'
        '401':
          $ref: '#/components/responses/401Unauthorized'
        '404':
          $ref: '#/components/responses/404NotFound'
        '429':
          $ref: '#/components/responses/429RateLimit'
        '500':
          $ref: '#/components/responses/500InternalServerError'
        '503':
          $ref: '#/components/responses/503ServiceUnavailable'
  /maintenance/{maintenanceRunParam}:
    get:
      tags:
      - Maintenance
      summary: Retrieve maintenance run
      description: Retrieve the maintenance run with the provided ID.
      operationId: retrieve-maintenance
      parameters:
      - name: maintenanceRunParam
        in: path
        required: true
        schema:
          type: string
          pattern: ^mrn-[0-9a-z]{20}$
          example: mrn-cph1rs3idesc73a2b2mg
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                required:
                - id
                - type
                - scheduledAt
                - state
                - resourceId
                properties:
                  id:
                    $ref: '#/paths/~1maintenance~1%7BmaintenanceRunParam%7D/get/parameters/0/schema'
                  type:
                    type: string
                  scheduledAt:
                    type: string
                    format: date-time
                  pendingMaintenanceBy:
                    type: string
                    format: date-time
                    description: If present, the maintenance run cannot be scheduled for later than this date-time.
                  state:
                    $ref: '#/paths/~1maintenance/get/parameters/2/schema/items'
                  resourceId:
                    $ref: '#/paths/~1maintenance/get/parameters/0/schema/items'
        '400':
          $ref: '#/components/responses/400BadRequest'
        '401':
          $ref: '#/components/responses/401Unauthorized'
        '404':
          $ref: '#/components/responses/404NotFound'
        '429':
          $ref: '#/components/responses/429RateLimit'
        '500':
          $ref: '#/components/responses/500InternalServerError'
        '503':
          $ref: '#/components/responses/503ServiceUnavailable'
    patch:
      tags:
      - Maintenance
      summary: Update maintenance run
      description: 'Update the maintenance run with the provided ID.


        Updates from this endpoint are asynchronous. To check your update''s status, use the [Retrieve maintenance run](https://api-docs.render.com/reference/retrieve-maintenance) endpoint.

        '
      operationId: update-maintenance
      parameters:
      - $ref: '#/paths/~1maintenance~1%7BmaintenanceRunParam%7D/get/parameters/0'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                scheduledAt:
                  description: The date-time at which the maintenance is scheduled to start. This must be before the pendingMaintenanceBy date-time.
                  type: string
                  format: date-time
      responses:
        '202':
          description: Maintenance run updated
        '400':
          $ref: '#/components/responses/400BadRequest'
        '401':
          $ref: '#/components/responses/401Unauthorized'
        '404':
          $ref: '#/components/responses/404NotFound'
        '429':
          $ref: '#/components/responses/429RateLimit'
        '500':
          $ref: '#/components/responses/500InternalServerError'
        '503':
          $ref: '#/components/responses/503ServiceUnavailable'
  /maintenance/{maintenanceRunParam}/trigger:
    post:
      tags:
      - Maintenance
      summary: Trigger maintenance run
      description: 'Trigger the scheduled maintenance run with the provided ID.


        Triggering maintenance is asynchronous. To check whether maintenance has started, use the [Retrieve maintenance run](https://api-docs.render.com/reference/retrieve-maintenance) endpoint.


        As maintenance progresses, the run''s `state` will change from `scheduled` to other values, such as `in_progress` and `succeeded`.

        '
      operationId: trigger-maintenance
      parameters:
      - $ref: '#/paths/~1maintenance~1%7BmaintenanceRunParam%7D/get/parameters/0'
      responses:
        '202':
          description: Maintenance run triggered
        '400':
          $ref: '#/components/responses/400BadRequest'
        '401':
          $ref: '#/components/responses/401Unauthorized'
        '404':
          $ref: '#/components/responses/404NotFound'
        '429':
          $ref: '#/components/responses/429RateLimit'
        '500':
          $ref: '#/components/responses/500InternalServerError'
        '503':
          $ref: '#/components/responses/503ServiceUnavailable'
components:
  parameters:
    ownerIdParam:
      name: ownerId
      in: query
      description: The ID of the workspaces to return resources for
      schema:
        type: array
        items:
          type: string
      style: form
      explode: false
      required: false
  responses:
    400BadRequest:
      description: The request could not be understood by the server.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/error'
    503ServiceUnavailable:
      description: Server currently unavailable.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/error'
    500InternalServerError:
      description: An unexpected server error has occurred.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/error'
    404NotFound:
      description: Unable to find the requested resource.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/error'
    429RateLimit:
      description: Rate limit has been surpassed.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/error'
    401Unauthorized:
      description: Authorization information is missing or invalid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/error'
  schemas:
    error:
      type: object
      properties:
        id:
          type: string
        message:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
x-readme:
  metrics-enabled: false