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

HeaderDescription
X-Api-KeyYour API key
X-Secret-KeyYour secret key

Path Parameters

ParameterTypeRequiredDescription
idUUIDYesThe annotation queue ID

Response

FieldTypeDescription
totalintegerTotal items in the queue
pendingintegerItems not yet started
in_progressintegerItems currently being annotated
completedintegerFully annotated items
skippedintegerSkipped items
progress_pctfloatCompletion percentage (0-100)
annotator_statsarrayPer-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?

Questions & Discussion