HiveMQ Data Hub API

The Data Hub API from HiveMQ — 4 operation(s) for data hub.

Operations 9

GET /data-hub/schemas List Data Hub schemas #
POST /data-hub/schemas Create a Data Hub schema #
GET /data-hub/schemas/{schemaId} Get a Data Hub schema #
DELETE /data-hub/schemas/{schemaId} Delete a Data Hub schema #
GET /data-hub/policies List Data Hub policies #
POST /data-hub/policies Create a Data Hub policy #
GET /data-hub/policies/{policyId} Get a Data Hub policy #
PUT /data-hub/policies/{policyId} Update a Data Hub policy #
DELETE /data-hub/policies/{policyId} Delete a Data Hub policy #

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/hivemq-data-hub-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

hivemq-data-hub-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: HiveMQ REST Data Hub API
  description: 'REST API for administering a HiveMQ broker. Endpoints cover MQTT

    client listing, search, disconnect; session invalidation; backups;

    diagnostic archives; trace recordings; and Data Hub schemas, policies,

    and modules. Endpoint shapes inferred from the public HiveMQ REST API

    documentation at docs.hivemq.com/hivemq/latest/rest-api/.

    '
  version: '1.0'
  contact:
    name: HiveMQ Documentation
    url: https://docs.hivemq.com/hivemq/latest/rest-api/index.html
servers:
- url: http://127.0.0.1:8888/api/v1
  description: Default HiveMQ REST API listener
security:
- BearerAuth: []
tags:
- name: Data Hub
paths:
  /data-hub/schemas:
    get:
      summary: List Data Hub schemas
      operationId: listDataHubSchemas
      responses:
        '200':
          description: OK
      tags:
      - Data Hub
    post:
      summary: Create a Data Hub schema
      operationId: createDataHubSchema
      responses:
        '201':
          description: Created
      tags:
      - Data Hub
  /data-hub/schemas/{schemaId}:
    parameters:
    - name: schemaId
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Get a Data Hub schema
      operationId: getDataHubSchema
      responses:
        '200':
          description: OK
      tags:
      - Data Hub
    delete:
      summary: Delete a Data Hub schema
      operationId: deleteDataHubSchema
      responses:
        '204':
          description: Deleted
      tags:
      - Data Hub
  /data-hub/policies:
    get:
      summary: List Data Hub policies
      operationId: listDataHubPolicies
      responses:
        '200':
          description: OK
      tags:
      - Data Hub
    post:
      summary: Create a Data Hub policy
      operationId: createDataHubPolicy
      responses:
        '201':
          description: Created
      tags:
      - Data Hub
  /data-hub/policies/{policyId}:
    parameters:
    - name: policyId
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Get a Data Hub policy
      operationId: getDataHubPolicy
      responses:
        '200':
          description: OK
      tags:
      - Data Hub
    put:
      summary: Update a Data Hub policy
      operationId: updateDataHubPolicy
      responses:
        '200':
          description: OK
      tags:
      - Data Hub
    delete:
      summary: Delete a Data Hub policy
      operationId: deleteDataHubPolicy
      responses:
        '204':
          description: Deleted
      tags:
      - Data Hub
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: 'Authentication is disabled by default. When enabled via the

        HiveMQ Enterprise Security Extension or Enterprise Extension SDK

        REST Service, a bearer token is required.

        '