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
| 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 |
|---|---|---|
throughput | object | Contains daily (array of date/count pairs), total_completed, and avg_per_day |
annotator_performance | array | Per-annotator stats including completed count and average time |
label_distribution | object | Count of annotations per label |
status_breakdown | object | Item counts grouped by status |
total | integer | Total 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?