Returns the org's streams, name-ordered, with their live state.
Returns the org's streams, name-ordered, with their live state.
GET /v1/mq/stream
| Address | https://api.hanzo.ai/v1/mq/stream |
| Method | GET |
| Operation | get_mq_stream |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns the org's streams, name-ordered, with their live state.
Request
2 fields.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
limit | query | integer | — | Limit caps the streams returned (1–1000, default 100). |
offset | query | integer | — | Offset skips that many streams, name-ordered. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | Streams | ok |
200 body — 24 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
streams | body | Stream[] | — | Streams is the page, ordered by name. |
streams[].config | body | Config | — | |
streams[].config.max_age | body | string | — | MaxAge caps message age, e.g. |
streams[].config.max_bytes | body | integer | — | MaxBytes caps the stream's total stored bytes; -1 (default) is unlimited. |
streams[].config.max_msg_size | body | integer | — | MaxMsgSize caps one message's size in bytes; -1 (default) is the broker's limit. |
streams[].config.max_msgs | body | integer | — | MaxMsgs caps the number of stored messages; -1 (default) is unlimited. |
streams[].config.name | body | string | — | Name is the stream name, unique within the org (alphanumeric, hyphens, underscores). |
streams[].config.num_replicas | body | integer | — | Replicas is the number of stream replicas (1–5); this plane runs 1. |
streams[].config.retention | body | string | — | Retention is the retention policy: limits (default), interest, or workqueue. |
streams[].config.storage | body | string | — | Storage is the storage backend: file (default) or memory. |
streams[].config.subjects | body | string[] | — | Subjects are the org-relative subjects bound to this stream (wildcards supported). |
streams[].created | body | string (date-time) | — | Created is when the stream was created. |
streams[].name | body | string | — | Name is the stream name within the org. |
streams[].state | body | State | — | |
streams[].state.bytes | body | integer | — | Bytes is the total stored size. |
streams[].state.consumer_count | body | integer | — | Consumers is the number of consumers attached to this stream. |
streams[].state.first_seq | body | integer | — | FirstSeq is the sequence of the first stored message. |
streams[].state.first_ts | body | string (date-time) | — | FirstTS is the timestamp of the first stored message. |
streams[].state.last_seq | body | integer | — | LastSeq is the sequence of the last stored message. |
streams[].state.last_ts | body | string (date-time) | — | LastTS is the timestamp of the last stored message. |
streams[].state.messages | body | integer | — | Messages is the number of messages currently stored. |
streams[].state.num_deleted | body | integer | — | Deleted is the number of deleted messages (sequence gaps). |
streams[].state.num_subjects | body | integer | — | Subjects is the number of distinct subjects stored. |
total | body | integer | — | Total is the org's stream count before paging. |
Failure carries the platform error shape — see Errors.
Examples
hanzo has no subcommand for this operation — the CLI serves only what cloud's live route table confirms. Use HTTP or an SDK.
import { Configuration, MqApi } from 'hanzoai';
const api = new MqApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getMqStream();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import MqApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = MqApi(client).get_mq_stream()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.MqAPI.GetMqStream(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, mq_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = mq_api::get_mq_stream(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.MqApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new MqApi(client).getMqStream();The method above is the one at the current release of the document. [email protected] (npm) and [email protected] (PyPI) were generated from an earlier release, where this operation carried a different id, so it spells the method differently — regenerating the clients is what makes the two agree. SDKs →
curl https://api.hanzo.ai/v1/mq/stream \
-H "Authorization: Bearer $HANZO_API_KEY"Tool mq, op get_mq_stream — POST the JSON-RPC envelope to https://api.hanzo.ai/v1/mcp.
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "mq",
"arguments": {
"op": "get_mq_stream",
"input": {}
}
}
}'How is this guide?