Apache Helix Clusters API

Cluster management operations

Operations 4

GET /clusters Apache Helix List Clusters #
POST /clusters Apache Helix Create Cluster #
GET /clusters/{clusterId} Apache Helix Get Cluster #
DELETE /clusters/{clusterId} Apache Helix Delete Cluster #

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/apache-helix-clusters-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

apache-helix-clusters-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache Helix REST Clusters API
  version: 1.0.0
  description: REST API for managing Apache Helix clusters, instances, resources, and partition state assignments in distributed systems.
  contact:
    email: dev@helix.apache.org
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://localhost:9100
  description: Helix REST Service
tags:
- name: Clusters
  description: Cluster management operations
paths:
  /clusters:
    get:
      operationId: listClusters
      summary: Apache Helix List Clusters
      description: List all Helix clusters managed by this controller.
      tags:
      - Clusters
      responses:
        '200':
          description: Clusters listed successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  clusters:
                    type: array
                    items:
                      type: string
    post:
      operationId: createCluster
      summary: Apache Helix Create Cluster
      description: Create a new Helix cluster.
      tags:
      - Clusters
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Cluster'
      responses:
        '201':
          description: Cluster created
        '400':
          description: Invalid cluster configuration
  /clusters/{clusterId}:
    get:
      operationId: getCluster
      summary: Apache Helix Get Cluster
      description: Get configuration and status of a specific Helix cluster.
      tags:
      - Clusters
      parameters:
      - name: clusterId
        in: path
        required: true
        schema:
          type: string
        description: Cluster name
      responses:
        '200':
          description: Cluster retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Cluster'
        '404':
          description: Cluster not found
    delete:
      operationId: deleteCluster
      summary: Apache Helix Delete Cluster
      description: Delete a Helix cluster and all its associated ZooKeeper data.
      tags:
      - Clusters
      parameters:
      - name: clusterId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Cluster deleted
        '404':
          description: Cluster not found
components:
  schemas:
    Cluster:
      type: object
      description: Helix cluster configuration and state
      properties:
        id:
          type: string
          description: Cluster name
          example: my-cluster
        controller:
          type: string
          description: Active controller node
          example: controller_host_12345
        paused:
          type: boolean
          description: Whether the cluster is paused
          example: false
        disabledInstances:
          type: array
          items:
            type: string
          description: List of disabled instances
        liveInstances:
          type: array
          items:
            type: string
          description: List of live instances