Get Item Annotations
Retrieve all annotations submitted for a specific queue item.
Get Item Annotations
Retrieve all annotations and notes that have been submitted for a queue item.
GET
https://api.futureagi.com/model-hub/annotation-queues/{queue_id}/items/{item_id}/annotations/
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 |
|---|---|---|---|
queue_id | UUID | Yes | The annotation queue ID |
item_id | UUID | Yes | The queue item ID |
Response
Returns an array of annotation objects, each containing id, label_id, label_name, value, annotator, created_at, and any associated notes.
Code Examples
import requests
queue_id = "your-queue-uuid"
item_id = "your-item-uuid"
resp = requests.get(
f"https://api.futureagi.com/model-hub/annotation-queues/{queue_id}/items/{item_id}/annotations/",
headers={"X-Api-Key": "YOUR_KEY", "X-Secret-Key": "YOUR_SECRET"}
)
print(resp.json())import axios from 'axios';
const queueId = 'your-queue-uuid';
const itemId = 'your-item-uuid';
const resp = await axios.get(
`https://api.futureagi.com/model-hub/annotation-queues/${queueId}/items/${itemId}/annotations/`,
{ 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/items/your-item-uuid/annotations/" \
-H "X-Api-Key: YOUR_KEY" \
-H "X-Secret-Key: YOUR_SECRET" Was this page helpful?