Apache Helix Resources API

Resource management operations

Operations 2

GET /clusters/{clusterId}/resources Apache Helix List Resources #
GET /clusters/{clusterId}/resources/{resourceName} Apache Helix Get Resource #

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-resources-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-resources-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache Helix REST Clusters Resources 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: Resources
  description: Resource management operations
paths:
  /clusters/{clusterId}/resources:
    get:
      operationId: listResources
      summary: Apache Helix List Resources
      description: List all resources managed in a Helix cluster.
      tags:
      - Resources
      parameters:
      - name: clusterId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Resources listed
          content:
            application/json:
              schema:
                type: object
                properties:
                  resources:
                    type: array
                    items:
                      type: string
  /clusters/{clusterId}/resources/{resourceName}:
    get:
      operationId: getResource
      summary: Apache Helix Get Resource
      description: Get configuration and ideal state of a specific Helix resource.
      tags:
      - Resources
      parameters:
      - name: clusterId
        in: path
        required: true
        schema:
          type: string
      - name: resourceName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Resource retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Resource'
        '404':
          description: Resource not found
components:
  schemas:
    Resource:
      type: object
      description: Helix resource configuration
      properties:
        id:
          type: string
          description: Resource name
          example: my-resource
        stateModelDefRef:
          type: string
          description: State model definition reference
          example: MasterSlave
        numPartitions:
          type: integer
          description: Number of partitions
          example: 16
        replicas:
          type: string
          description: Replication factor
          example: '3'
        rebalanceMode:
          type: string
          description: Rebalance strategy
          example: FULL_AUTO