Apache HBase Tables API

Table management operations

Operations 5

GET /version/cluster Apache HBase Get Cluster Version #
GET / Apache HBase List Tables #
GET /{tableName}/schema Apache HBase Get Table Schema #
PUT /{tableName}/schema Apache HBase Create Or Update Table Schema #
DELETE /{tableName}/schema Apache HBase Delete Table #

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-hbase-tables-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-hbase-tables-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache HBase REST Regions Tables API
  version: 1.0.0
  description: REST API (Stargate) for Apache HBase distributed NoSQL database, providing table management, row and cell operations, and table scanning via HTTP.
  contact:
    email: dev@hbase.apache.org
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://localhost:8080
  description: HBase REST Gateway (Stargate)
tags:
- name: Tables
  description: Table management operations
paths:
  /version/cluster:
    get:
      operationId: getClusterVersion
      summary: Apache HBase Get Cluster Version
      description: Get the version information of the HBase cluster.
      tags:
      - Tables
      responses:
        '200':
          description: Version info retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClusterVersion'
  /:
    get:
      operationId: listTables
      summary: Apache HBase List Tables
      description: List all tables in the HBase cluster.
      tags:
      - Tables
      responses:
        '200':
          description: Tables listed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TableList'
  /{tableName}/schema:
    get:
      operationId: getTableSchema
      summary: Apache HBase Get Table Schema
      description: Get the schema (column families) for an HBase table.
      tags:
      - Tables
      parameters:
      - name: tableName
        in: path
        required: true
        schema:
          type: string
        description: HBase table name
      responses:
        '200':
          description: Schema retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TableSchema'
        '404':
          description: Table not found
    put:
      operationId: createOrUpdateTableSchema
      summary: Apache HBase Create Or Update Table Schema
      description: Create or update an HBase table with the provided column family schema.
      tags:
      - Tables
      parameters:
      - name: tableName
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TableSchema'
      responses:
        '201':
          description: Table created or updated
        '400':
          description: Invalid schema
    delete:
      operationId: deleteTable
      summary: Apache HBase Delete Table
      description: Delete an HBase table.
      tags:
      - Tables
      parameters:
      - name: tableName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Table deleted
        '404':
          description: Table not found
components:
  schemas:
    TableList:
      type: object
      description: List of HBase tables
      properties:
        table:
          type: array
          description: Array of table names
          items:
            type: object
            properties:
              name:
                type: string
                description: Table name
                example: my-table
    ColumnFamily:
      type: object
      description: HBase column family configuration
      properties:
        name:
          type: string
          description: Column family name
          example: cf1
        VERSIONS:
          type: string
          description: Max cell versions to retain
          example: '3'
        COMPRESSION:
          type: string
          description: Compression algorithm
          example: SNAPPY
        BLOOMFILTER:
          type: string
          description: Bloom filter type
          example: ROW
        TTL:
          type: string
          description: Time-to-live in seconds
          example: '2147483647'
    TableSchema:
      type: object
      description: HBase table schema with column family definitions
      properties:
        name:
          type: string
          description: Table name
          example: my-table
        ColumnSchema:
          type: array
          description: Column family definitions
          items:
            $ref: '#/components/schemas/ColumnFamily'
    ClusterVersion:
      type: object
      description: HBase cluster version information
      properties:
        Server:
          type: string
          description: HBase server version
          example: 2.5.7
        JVM:
          type: string
          description: JVM version
          example: Oracle Corporation 11.0.20
        OS:
          type: string
          description: Operating system
          example: Linux 5.15.0
        REST:
          type: string
          description: REST API version
          example: 0.0.3
        Jersey:
          type: string
          description: Jersey framework version
          example: '1.19'