Apache RocketMQ Messages API

The Messages API from Apache RocketMQ — 3 operation(s) for messages.

Operations 3

POST /messages Apache RocketMQ Send Message #
POST /messages/receive Apache RocketMQ Receive Messages #
POST /messages/ack Apache RocketMQ Acknowledge Message #

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-messages-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-messages-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache RocketMQ REST Brokers Messages 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: Messages
paths:
  /messages:
    post:
      operationId: sendMessage
      summary: Apache RocketMQ Send Message
      description: Send a message to a RocketMQ topic.
      tags:
      - Messages
      x-microcks-operation:
        dispatcher: RANDOM
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MessageRequest'
      responses:
        '200':
          description: Message sent successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SendResult'
  /messages/receive:
    post:
      operationId: receiveMessages
      summary: Apache RocketMQ Receive Messages
      description: Pull messages from a topic for a consumer group.
      tags:
      - Messages
      x-microcks-operation:
        dispatcher: RANDOM
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReceiveRequest'
      responses:
        '200':
          description: Messages received
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReceiveResult'
  /messages/ack:
    post:
      operationId: acknowledgeMessage
      summary: Apache RocketMQ Acknowledge Message
      description: Acknowledge message consumption to commit the offset.
      tags:
      - Messages
      x-microcks-operation:
        dispatcher: RANDOM
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AckRequest'
      responses:
        '200':
          description: Message acknowledged
components:
  schemas:
    SendResult:
      type: object
      description: Result of sending a message
      properties:
        msgId:
          type: string
          description: Message identifier
        offsetMsgId:
          type: string
          description: Physical offset message ID
        queueOffset:
          type: integer
          format: int64
          description: Queue offset of the message
        queueId:
          type: integer
          description: Queue ID the message was sent to
        sendStatus:
          type: string
          enum:
          - SEND_OK
          - FLUSH_DISK_TIMEOUT
          - FLUSH_SLAVE_TIMEOUT
          - SLAVE_NOT_AVAILABLE
    Message:
      type: object
      description: Received RocketMQ message
      properties:
        msgId:
          type: string
          description: Message identifier
        topic:
          type: string
          description: Topic name
        body:
          type: string
          description: Message body
        tag:
          type: string
          description: Message tag
        keys:
          type: array
          items:
            type: string
        properties:
          type: object
          additionalProperties:
            type: string
        bornTimestamp:
          type: integer
          format: int64
          description: Message creation timestamp in milliseconds
        receiptHandle:
          type: string
          description: Handle for acknowledging the message
    MessageRequest:
      type: object
      description: Request to send a message to RocketMQ
      required:
      - topic
      - body
      properties:
        topic:
          type: string
          description: Target topic name
        body:
          type: string
          description: Message body content
        tag:
          type: string
          description: Message tag for filtering
        keys:
          type: array
          items:
            type: string
          description: Message keys for lookup
        properties:
          type: object
          additionalProperties:
            type: string
          description: User-defined message properties
        delayLevel:
          type: integer
          description: Delay level for scheduled messages (0=no delay)
    AckRequest:
      type: object
      description: Request to acknowledge a message
      required:
      - receiptHandle
      - topic
      - consumerGroup
      properties:
        receiptHandle:
          type: string
          description: Receipt handle from receive response
        topic:
          type: string
          description: Topic name
        consumerGroup:
          type: string
          description: Consumer group
    ReceiveRequest:
      type: object
      description: Request to receive messages from a topic
      required:
      - topic
      - consumerGroup
      properties:
        topic:
          type: string
          description: Topic to consume from
        consumerGroup:
          type: string
          description: Consumer group identifier
        maxMessages:
          type: integer
          description: Maximum messages to pull
        invisibleDuration:
          type: integer
          description: Invisible duration in milliseconds
    ReceiveResult:
      type: object
      description: Result of receiving messages
      properties:
        messages:
          type: array
          items:
            $ref: '#/components/schemas/Message'