Apache RocketMQ Brokers API

The Brokers API from Apache RocketMQ — 1 operation(s) for brokers.

Operations 1

GET /brokers Apache RocketMQ List Brokers #

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-rocketmq-brokers-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-rocketmq-brokers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache RocketMQ REST Brokers API
  description: Apache RocketMQ is a cloud-native messaging and streaming platform. This API provides REST endpoints for sending and receiving messages, managing topics and subscriptions, and monitoring brokers and consumer groups.
  version: 5.1.0
  contact:
    name: Apache RocketMQ
    url: https://rocketmq.apache.org/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: https://rocketmq.example.com/api/v1
  description: Apache RocketMQ REST API
tags:
- name: Brokers
paths:
  /brokers:
    get:
      operationId: listBrokers
      summary: Apache RocketMQ List Brokers
      description: List all brokers in the RocketMQ cluster.
      tags:
      - Brokers
      x-microcks-operation:
        dispatcher: RANDOM
      responses:
        '200':
          description: List of brokers
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrokerList'
components:
  schemas:
    Broker:
      type: object
      description: RocketMQ broker
      properties:
        brokerName:
          type: string
          description: Broker name
        clusterId:
          type: string
          description: Cluster identifier
        brokerId:
          type: integer
          description: Broker ID (0=master, >0=slave)
        brokerAddr:
          type: string
          description: Broker address (host:port)
        version:
          type: string
          description: Broker version
    BrokerList:
      type: object
      description: List of RocketMQ brokers
      properties:
        brokers:
          type: array
          items:
            $ref: '#/components/schemas/Broker'