For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Copy to LLMGithubGo to App
DocumentationIntegrationsBuilding Self-Improving AgentsSelf-hosting OpikSDK & API reference
DocumentationIntegrationsBuilding Self-Improving AgentsSelf-hosting OpikSDK & API reference
    • Overview
  • Python SDK
    • Reference
    • REST API Client
  • Typescript SDK
    • Overview
    • Opik TS
    • Prompts
    • Opik Query Language (OQL)
  • Rest API
    • Overview
        • POSTAdd items to annotation queue
        • GETFind annotation queues
        • POSTCreate annotation queue
        • POSTCreate annotation queue batch
        • POSTDelete annotation queue batch
        • GETGet annotation queue by id
        • PATCHUpdate annotation queue
        • POSTRemove items from annotation queue
LogoLogo
Copy to LLMGithubGo to App
Rest APIAPI ReferenceAnnotation Queues

Create annotation queue batch

POST
/v1/private/annotation-queues/batch
POST
/api/v1/private/annotation-queues/batch
$curl -X POST http://localhost:5173/api/v1/private/annotation-queues/batch \
> -H "Content-Type: application/json" \
> -d '{
> "annotation_queues": [
> {
> "project_id": "string",
> "name": "string",
> "scope": "trace"
> }
> ]
>}'
Create multiple annotation queues for human annotation workflows
Was this page helpful?
Previous

Delete annotation queue batch

Next
Built with

Request

This endpoint expects an object.
annotation_queueslist of objectsRequired
List of annotation queues to create

Errors

400
Bad Request Error
409
Conflict Error
422
Unprocessable Entity Error