Get Queue Progress
Retrieve progress statistics for an annotation queue.
Get Queue Progress
Get a summary of annotation progress including item counts by status and per-annotator statistics.
GET
https://api.futureagi.com/model-hub/annotation-queues/{id}/progress/
Bearer
Click "Try It" to send a request
Authentication
| Header | Description |
|---|---|
X-Api-Key | Your API key |
X-Secret-Key | Your secret key |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | UUID | Yes | The annotation queue ID |
Response
| Field | Type | Description |
|---|---|---|
total | integer | Total items in the queue |
pending | integer | Items not yet started |
in_progress | integer | Items currently being annotated |
completed | integer | Fully annotated items |
skipped | integer | Skipped items |
progress_pct | float | Completion percentage (0-100) |
annotator_stats | array | Per-annotator breakdown with user_id, completed, and in_progress counts |
Code Examples
import requests
queue_id = "your-queue-uuid"
resp = requests.get(
f"https://api.futureagi.com/model-hub/annotation-queues/{queue_id}/progress/",
headers={"X-Api-Key": "YOUR_KEY", "X-Secret-Key": "YOUR_SECRET"}
)
print(resp.json())import axios from 'axios';
const queueId = 'your-queue-uuid';
const resp = await axios.get(
`https://api.futureagi.com/model-hub/annotation-queues/${queueId}/progress/`,
{ headers: { 'X-Api-Key': 'YOUR_KEY', 'X-Secret-Key': 'YOUR_SECRET' } }
);
console.log(resp.data);curl "https://api.futureagi.com/model-hub/annotation-queues/your-queue-uuid/progress/" \
-H "X-Api-Key: YOUR_KEY" \
-H "X-Secret-Key: YOUR_SECRET" Was this page helpful?