Couchbase Analytics Settings API

Endpoints for configuring Analytics service settings.

Operations 2

GET /settings/analytics Get analytics settings #
POST /settings/analytics Update analytics settings #

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-analytics-settings-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-analytics-settings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Couchbase Analytics Service REST Analytics Settings API
  description: The Couchbase Analytics Service REST API provides access to the Analytics service for running complex analytical queries on operational data without impacting performance of key-value operations. It supports SQL++ queries for analytics, management of links to external data sources, and configuration of user-defined libraries. The service enables real-time analytics on JSON data alongside transactional workloads.
  version: '7.6'
  contact:
    name: Couchbase Support
    url: https://support.couchbase.com
  termsOfService: https://www.couchbase.com/terms-of-use
servers:
- url: https://localhost:8095
  description: Analytics Service (default port)
- url: https://localhost:18095
  description: Analytics Service (SSL)
security:
- basicAuth: []
tags:
- name: Analytics Settings
  description: Endpoints for configuring Analytics service settings.
paths:
  /settings/analytics:
    get:
      operationId: getAnalyticsSettings
      summary: Get analytics settings
      description: Returns the current cluster-level Analytics service settings.
      tags:
      - Analytics Settings
      responses:
        '200':
          description: Successful retrieval of analytics settings
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnalyticsSettings'
        '401':
          description: Unauthorized access
    post:
      operationId: updateAnalyticsSettings
      summary: Update analytics settings
      description: Updates the cluster-level Analytics service settings.
      tags:
      - Analytics Settings
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AnalyticsSettings'
      responses:
        '200':
          description: Analytics settings updated successfully
        '400':
          description: Invalid settings
        '401':
          description: Unauthorized access
components:
  schemas:
    AnalyticsSettings:
      type: object
      description: Cluster-level analytics settings
      properties:
        numReplicas:
          type: integer
          description: Number of Analytics replicas
          minimum: 0
          maximum: 3
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Authentication using Couchbase Server credentials.
externalDocs:
  description: Couchbase Analytics Service REST API Documentation
  url: https://docs.couchbase.com/server/current/analytics/rest-analytics.html