get
https://{yourinstance}.makaira.io/stream
List all Streams
Returns a list of all streams configured for the current instance. Streams define collections of documents (e.g. products) with optional boost factors, used for category boosting and product listings.
Requires authentication.
Request
GET /stream
Headers
| Header | Value |
|---|---|
Authorization | Bearer <token> |
Response
Returns a JSON array of stream objects.
Response Body
| Field | Type | Description |
|---|---|---|
id | integer | Unique stream ID. |
title | string | Display title of the stream. |
boostFactor | number | Boost factor applied to items in this stream. Range: -99 to 99. 0 means no boosting. |
Example Response
[
{
"id": 1,
"title": "Featured Products",
"boostFactor": 50
},
{
"id": 2,
"title": "Clearance Items",
"boostFactor": -20
}
] 200OK

