Couchbase Cluster API

Endpoints for managing cluster-level backup configuration.

Operations 3

GET /api/v1/cluster/self Get backup cluster information #
GET /pools Get cluster information #
GET /pools/default Get default pool details #

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/couchbase-cluster-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

couchbase-cluster-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Couchbase Cluster API
  version: '7.6'
  contact:
    name: Couchbase Support
    url: https://support.couchbase.com
  termsOfService: https://www.couchbase.com/terms-of-use
  description: 'Operations tagged Cluster across 2 of this provider''s published API definitions: couchbase-backup-service-rest-api-openapi.yml, couchbase-server-rest-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://localhost:8097
  description: Backup Service (default port)
- url: https://localhost:18097
  description: Backup Service (SSL)
- url: https://localhost:8091
  description: Couchbase Server (default port)
- url: https://localhost:18091
  description: Couchbase Server (SSL)
security:
- basicAuth: []
tags:
- name: Cluster
  description: Endpoints for managing cluster-level backup configuration.
paths:
  /api/v1/cluster/self:
    get:
      operationId: getBackupClusterInfo
      summary: Get backup cluster information
      description: Returns information about the current cluster from the perspective of the Backup Service, including the list of repositories and plans.
      tags:
      - Cluster
      responses:
        '200':
          description: Successful retrieval of cluster backup information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BackupClusterInfo'
        '401':
          description: Unauthorized access
    servers:
    - url: https://localhost:8097
      description: Backup Service (default port)
    - url: https://localhost:18097
      description: Backup Service (SSL)
  /pools:
    get:
      operationId: getPools
      summary: Get cluster information
      description: Returns basic information about the cluster including the list of pools, UUID, and implementation version.
      tags:
      - Cluster
      responses:
        '200':
          description: Successful retrieval of cluster pool information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Pools'
        '401':
          description: Unauthorized access
    servers:
    - url: https://localhost:8091
      description: Couchbase Server (default port)
    - url: https://localhost:18091
      description: Couchbase Server (SSL)
  /pools/default:
    get:
      operationId: getPoolDefault
      summary: Get default pool details
      description: Returns detailed information about the default pool including cluster name, storage totals, RAM quotas, node list, and bucket information.
      tags:
      - Cluster
      responses:
        '200':
          description: Successful retrieval of default pool details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PoolDetails'
        '401':
          description: Unauthorized access
    servers:
    - url: https://localhost:8091
      description: Couchbase Server (default port)
    - url: https://localhost:18091
      description: Couchbase Server (SSL)
components:
  schemas:
    BackupClusterInfo:
      type: object
      description: Cluster backup information
      properties:
        name:
          type: string
          description: Cluster name
        repositories:
          type: array
          description: List of repository names
          items:
            type: string
        plans:
          type: array
          description: List of plan names
          items:
            type: string
    PoolDetails:
      type: object
      description: Detailed information about the default pool
      properties:
        name:
          type: string
          description: Name of the pool
        clusterName:
          type: string
          description: Human-readable cluster name
        nodes:
          type: array
          description: List of nodes in the cluster
          items:
            $ref: '#/components/schemas/Node'
        storageTotals:
          type: object
          description: Aggregate storage statistics
          properties:
            ram:
              type: object
              properties:
                total:
                  type: integer
                  description: Total RAM in bytes
                used:
                  type: integer
                  description: Used RAM in bytes
            hdd:
              type: object
              properties:
                total:
                  type: integer
                  description: Total disk space in bytes
                used:
                  type: integer
                  description: Used disk space in bytes
        rebalanceStatus:
          type: string
          description: Current rebalance status
    Pools:
      type: object
      description: Cluster pool information
      properties:
        isAdminCreds:
          type: boolean
          description: Whether admin credentials are being used
        isROAdminCreds:
          type: boolean
          description: Whether read-only admin credentials are being used
        isEnterprise:
          type: boolean
          description: Whether this is an Enterprise Edition cluster
        implementationVersion:
          type: string
          description: The version of the Couchbase Server implementation
        uuid:
          type: string
          description: The unique identifier for the cluster
        pools:
          type: array
          description: List of available pools
          items:
            type: object
            properties:
              name:
                type: string
                description: Pool name
              uri:
                type: string
                description: URI to access pool details
              streamingUri:
                type: string
                description: URI for streaming pool updates
    Node:
      type: object
      description: Information about a cluster node
      properties:
        hostname:
          type: string
          description: Node hostname and port
        status:
          type: string
          description: Node status
          enum:
          - healthy
          - unhealthy
          - warmup
        clusterMembership:
          type: string
          description: Cluster membership status
          enum:
          - active
          - inactiveAdded
          - inactiveFailed
        services:
          type: array
          description: List of services running on the node
          items:
            type: string
            enum:
            - kv
            - n1ql
            - index
            - fts
            - cbas
            - eventing
            - backup
        os:
          type: string
          description: Operating system of the node
        version:
          type: string
          description: Couchbase Server version on the node
        memoryTotal:
          type: integer
          description: Total memory on the node in bytes
        memoryFree:
          type: integer
          description: Free memory on the node in bytes
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Authentication. Requires the Full Admin role.
x-refined-from:
- couchbase-backup-service-rest-api-openapi.yml
- couchbase-server-rest-api-openapi.yml