Yugabyte pitr-info API

APIs for getting Point-in-Time Recovery (PITR) schedules

Operations 1

GET /pitr Get PITR Schedules #

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/yugabyte-pitr-info-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

yugabyte-pitr-info-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: support@yugabyte.com
    name: Yugabyte Cloud Support
    url: https://support.yugabyte.com/
  description: YugabyteDB as a Service
  license:
    name: Properietary (TBD)
    url: https://www.yugabyte.com/yugabyte-cloud-terms-of-service
  termsOfService: https://www.yugabyte.com/yugabyte-cloud-terms-of-service
  title: Yugabyte Cloud backup-info Pitr Info API
  version: v1
servers:
- description: Endpoint of the API server
  url: '{protocol}://{host_port}/api'
  variables:
    protocol:
      default: http
      enum:
      - http
      - https
    host_port:
      default: localhost:1323
security:
- BearerAuthToken: []
tags:
- description: APIs for getting Point-in-Time Recovery (PITR) schedules
  name: pitr-info
paths:
  /pitr:
    get:
      description: Retrieve the list of PITR schedules in the YugabyteDB cluster.
      operationId: getPITRSchedules
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PITR_Schedule_Response'
          description: List of PITR Schedules in the cluster
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
          description: API Error
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
          description: API Error
      summary: Get PITR Schedules
      tags:
      - pitr-info
components:
  schemas:
    PITR_Schedule_Response:
      example:
        schedules:
        - databaseKeyspace: databaseKeyspace
          interval: interval
          id: 0
          retention: retention
          earliestRecoverableTime: earliestRecoverableTime
        - databaseKeyspace: databaseKeyspace
          interval: interval
          id: 0
          retention: retention
          earliestRecoverableTime: earliestRecoverableTime
      properties:
        schedules:
          items:
            $ref: '#/components/schemas/PITRSchedule'
          type: array
          uniqueItems: true
      required:
      - schedules
      title: PITR Schedule Response
      type: object
    PITRSchedule:
      description: Details of a Point-in-Time Recovery (PITR) schedule
      example:
        databaseKeyspace: databaseKeyspace
        interval: interval
        id: 0
        retention: retention
        earliestRecoverableTime: earliestRecoverableTime
      properties:
        id:
          type: integer
        databaseKeyspace:
          type: string
        interval:
          type: string
        retention:
          type: string
        earliestRecoverableTime:
          type: string
      required:
      - databaseKeyspace
      - earliestRecoverableTime
      - id
      - interval
      - retention
      title: List of PITR Schedules in the cluster
      type: object
    ApiError_error:
      properties:
        detail:
          description: Error message
          type: string
        status:
          description: Error code
          type: integer
      type: object
    ApiError:
      properties:
        error:
          $ref: '#/components/schemas/ApiError_error'
      title: API Error
      type: object
  securitySchemes:
    BearerAuthToken:
      bearerFormat: JWT
      scheme: bearer
      type: http