List Queues
List annotation queues with optional filtering and pagination.
List Queues
Retrieve a paginated list of annotation queues, optionally filtered by status or search term.
GET
https://api.futureagi.com/model-hub/annotation-queues/
Bearer
Click "Try It" to send a request
Authentication
| Header | Description |
|---|---|
X-Api-Key | Your API key |
X-Secret-Key | Your secret key |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
status | string | No | Filter by queue status |
search | string | No | Search queues by name |
include_counts | boolean | No | Include item status counts (default: true) |
page | integer | No | Page number for pagination |
page_size | integer | No | Number of results per page |
Response
Paginated response with count, next, previous, and results array of queue objects.
Code Examples
import requests
resp = requests.get(
"https://api.futureagi.com/model-hub/annotation-queues/",
headers={"X-Api-Key": "YOUR_KEY", "X-Secret-Key": "YOUR_SECRET"},
params={"status": "active", "include_counts": True, "page_size": 10}
)
print(resp.json())import axios from 'axios';
const resp = await axios.get(
'https://api.futureagi.com/model-hub/annotation-queues/',
{
headers: { 'X-Api-Key': 'YOUR_KEY', 'X-Secret-Key': 'YOUR_SECRET' },
params: { status: 'active', includeCounts: true, pageSize: 10 }
}
);
console.log(resp.data);curl "https://api.futureagi.com/model-hub/annotation-queues/?status=active&include_counts=true&page_size=10" \
-H "X-Api-Key: YOUR_KEY" \
-H "X-Secret-Key: YOUR_SECRET" Was this page helpful?