Get Queue Analytics

Retrieve detailed analytics for an annotation queue.

Get Queue Analytics

Get throughput metrics, annotator performance, label distribution, and status breakdowns.

GET https://api.futureagi.com/model-hub/annotation-queues/{id}/analytics/
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
throughputobjectContains daily (array of date/count pairs), total_completed, and avg_per_day
annotator_performancearrayPer-annotator stats including completed count and average time
label_distributionobjectCount of annotations per label
status_breakdownobjectItem counts grouped by status
totalintegerTotal items in the queue

Code Examples

import requests

queue_id = "your-queue-uuid"
resp = requests.get(
    f"https://api.futureagi.com/model-hub/annotation-queues/{queue_id}/analytics/",
    headers={"X-Api-Key": "YOUR_KEY", "X-Secret-Key": "YOUR_SECRET"}
)
data = resp.json()
print(f"Avg per day: {data['throughput']['avg_per_day']}")
import axios from 'axios';

const queueId = 'your-queue-uuid';
const resp = await axios.get(
  `https://api.futureagi.com/model-hub/annotation-queues/${queueId}/analytics/`,
  { headers: { 'X-Api-Key': 'YOUR_KEY', 'X-Secret-Key': 'YOUR_SECRET' } }
);
console.log(`Avg per day: ${resp.data.throughput.avgPerDay}`);
curl "https://api.futureagi.com/model-hub/annotation-queues/your-queue-uuid/analytics/" \
  -H "X-Api-Key: YOUR_KEY" \
  -H "X-Secret-Key: YOUR_SECRET"
Was this page helpful?

Questions & Discussion