← Back to changelog
Marc Klingen
March 13, 2025
Public API for Annotation Queues

Access and manage your annotation queues programmatically with our new Public API endpoints.
Annotation queues help to label and review LLM Traces in Langfuse and are often a baseline for any LLM evaluation. This change adds a new public API to manage annotation queues programmatically. Thereby, you can now scale and automate your annotation workflows.
Check out our API docs for detailed information on how to use these new endpoints.
Endpoints:
GET /api/public/annotation-queues
- Get all annotation queuesGET /api/public/annotation-queues/{queueId}
- Get an annotation queue by IDGET /api/public/annotation-queues/{queueId}/items
- Get items for a specific annotation queuePOST /api/public/annotation-queues/{queueId}/items
- Add an item to an annotation queueGET /api/public/annotation-queues/{queueId}/items/{itemId}
- Get a specific item from an annotation queuePATCH /api/public/annotation-queues/{queueId}/items/{itemId}
- Update an annotation queue itemDELETE /api/public/annotation-queues/{queueId}/items/{itemId}
- Remove an item from an annotation queue
Last updated on