Get Annotate Detail
Retrieve a queue item with full source data for the annotation UI.
Get Annotate Detail
Retrieve a queue item along with the full source data needed for annotation. This endpoint is designed for rendering the annotation interface.
GET
https://api.futureagi.com/model-hub/annotation-queues/{queue_id}/items/{item_id}/annotate-detail/
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 the queue item object with an embedded source_data field containing the full source object (e.g., trace details, spans, inputs, and outputs).
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}/annotate-detail/",
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}/annotate-detail/`,
{ 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/annotate-detail/" \
-H "X-Api-Key: YOUR_KEY" \
-H "X-Secret-Key: YOUR_SECRET" Was this page helpful?