GET /api/queues
curl --request GET \
--url https://app.sluice.sh/api/api/queuesimport requests
url = "https://app.sluice.sh/api/api/queues"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.sluice.sh/api/api/queues', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.sluice.sh/api/api/queues",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.sluice.sh/api/api/queues"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.sluice.sh/api/api/queues")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.sluice.sh/api/api/queues")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyQueues & Workers
GET /api/queues
List queues with depth, throughput, failure rate, and health bar data.
GET
/
api
/
queues
GET /api/queues
curl --request GET \
--url https://app.sluice.sh/api/api/queuesimport requests
url = "https://app.sluice.sh/api/api/queues"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://app.sluice.sh/api/api/queues', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.sluice.sh/api/api/queues",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.sluice.sh/api/api/queues"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.sluice.sh/api/api/queues")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.sluice.sh/api/api/queues")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyReturns a paginated list of queues with real-time metrics and health bar data.
Authentication
Session cookie (dashboard).Query parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
page | integer | 1 | Page number (1-indexed). |
limit | integer | 50 | Results per page (1–100). |
connectionId | string | — | Filter by connection UUID. |
framework | string | — | Filter by framework: celery, bullmq, sidekiq. |
sortBy | string | name | Sort field: name, depth, consumers, throughput, failureRate. |
sortOrder | string | asc | Sort direction: asc or desc. |
timeRange | string | 24h | Time range for metrics: 1h, 6h, 24h, 7d. |
Response
{
"data": [
{
"id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
"name": "default",
"framework": "celery",
"connectionId": "550e8400-e29b-41d4-a716-446655440000",
"depth": 42,
"consumers": 4,
"throughput": 12.5,
"avgLatencyMs": 340.0,
"failureRate": 0.02,
"healthBar": {
"timeRange": "24h",
"buckets": [
{
"start": "2026-02-26T10:00:00.000Z",
"end": "2026-02-26T11:00:00.000Z",
"succeeded": 450,
"failed": 3
}
]
},
"extensions": {},
"createdAt": "2026-02-20T08:00:00.000Z"
}
],
"pagination": {
"page": 1,
"limit": 50,
"total": 3,
"totalPages": 1
}
}
Queue fields
| Field | Type | Description |
|---|---|---|
id | string | Sluice-generated UUID. |
name | string | Queue name (e.g., default, payments, notifications). |
framework | string | Always celery in V0. |
connectionId | string | Connection this queue belongs to. |
depth | integer | Current number of pending jobs in the queue. |
consumers | integer | Number of workers consuming from this queue. |
throughput | number? | Jobs per second over the selected time range. |
avgLatencyMs | number? | Average time a job waits in the queue before execution, in milliseconds. |
failureRate | number? | Ratio of failed jobs to total jobs (0.0–1.0) over the selected time range. |
healthBar | object? | Time-bucketed success/failure counts for the health bar visualization. |
extensions | object | Framework-specific data. |
createdAt | string | ISO 8601 — when this queue was first seen. |
⌘I