Apache HBase Rows API

Row and cell operations

Operations 4

GET /{tableName}/{rowKey} Apache HBase Get Row #
PUT /{tableName}/{rowKey} Apache HBase Put Row #
DELETE /{tableName}/{rowKey} Apache HBase Delete Row #
GET /{tableName}/{rowKey}/{column} Apache HBase Get Cell #

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-rows-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-rows-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache HBase REST Regions Rows 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: Rows
  description: Row and cell operations
paths:
  /{tableName}/{rowKey}:
    get:
      operationId: getRow
      summary: Apache HBase Get Row
      description: Get all cells for a specific row key from an HBase table.
      tags:
      - Rows
      parameters:
      - name: tableName
        in: path
        required: true
        schema:
          type: string
      - name: rowKey
        in: path
        required: true
        schema:
          type: string
        description: URL-encoded row key
      responses:
        '200':
          description: Row retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CellSet'
        '404':
          description: Row not found
    put:
      operationId: putRow
      summary: Apache HBase Put Row
      description: Write one or more cells to a specific row key in an HBase table.
      tags:
      - Rows
      parameters:
      - name: tableName
        in: path
        required: true
        schema:
          type: string
      - name: rowKey
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CellSet'
      responses:
        '200':
          description: Row written successfully
        '400':
          description: Invalid data
    delete:
      operationId: deleteRow
      summary: Apache HBase Delete Row
      description: Delete a row and all its cells from an HBase table.
      tags:
      - Rows
      parameters:
      - name: tableName
        in: path
        required: true
        schema:
          type: string
      - name: rowKey
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Row deleted
        '404':
          description: Row not found
  /{tableName}/{rowKey}/{column}:
    get:
      operationId: getCell
      summary: Apache HBase Get Cell
      description: Get a specific cell value identified by table, row key, and column (family:qualifier).
      tags:
      - Rows
      parameters:
      - name: tableName
        in: path
        required: true
        schema:
          type: string
      - name: rowKey
        in: path
        required: true
        schema:
          type: string
      - name: column
        in: path
        required: true
        schema:
          type: string
        description: Column in family:qualifier format (URL-encoded)
      responses:
        '200':
          description: Cell retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CellSet'
        '404':
          description: Cell not found
components:
  schemas:
    Cell:
      type: object
      description: Single HBase cell with column and value
      properties:
        column:
          type: string
          description: Base64-encoded column (family:qualifier)
          example: Y2YxOnF1YWw=
        timestamp:
          type: integer
          format: int64
          description: Cell timestamp in milliseconds
          example: 1718153645993
        $:
          type: string
          description: Base64-encoded cell value
          example: dmFsdWU=
    CellSet:
      type: object
      description: Set of HBase cells grouped by row
      properties:
        Row:
          type: array
          description: Array of row objects
          items:
            type: object
            properties:
              key:
                type: string
                description: Base64-encoded row key
                example: cm93a2V5MQ==
              Cell:
                type: array
                description: Array of cells in the row
                items:
                  $ref: '#/components/schemas/Cell'