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.
Trust CenterStatusSupportGet a demoPlatform
DocumentationEvals API ReferenceIntegrations & OTELPlatform SettingsSelf-HostingChangelog
DocumentationEvals API ReferenceIntegrations & OTELPlatform SettingsSelf-HostingChangelog
  • Get Started
    • Introduction
    • Quickstart
    • Authentication
    • Data Models
    • API Conventions
  • Metrics
    • GETList Metrics
    • POSTCreate Metrics
    • PUTUpdate Metrics
    • POSTBatch Create
  • Metric Collections
    • GETList Metric Collections
    • POSTAdd Collection
    • PUTUpdate Collection
  • Datasets
    • GETList Datasets
    • GETPull Dataset
    • POSTPush Dataset
    • DELDelete Dataset
  • Evaluation
    • POSTRun LLM Evals
    • POSTSimulate Conversation
    • POSTEvaluate Span
    • POSTEvaluate Trace
    • POSTEvaluate Thread
    • GETRetrieve Test Run
    • GETList Test Runs
  • Tracing
    • GETList Traces
    • POSTTrace Ingestion
    • GETRetrieve Trace
    • GETList Spans
    • GETRetrieve Span
  • Threads
    • GETList Threads
    • GETRetrieve Thread
  • Prompt
    • GETList Prompts
    • POSTPush Prompts
    • GETPull Prompts By Label
    • GETPull Prompts By Version
    • GETPull Prompts By Commit
    • GETList Versions
    • POSTCreate Version
    • GETList Commits
    • GETList Branches
    • POSTCreate Branch
    • PUTUpdate Branch
    • DELDelete Branch
  • Metric Data
    • GETList Metrics Data
  • Annotations
    • GETList Annotations
    • POSTCreate Annotation
    • GETGet Annotation
    • PUTUpdate Annotation
  • Annotation Queues
    • GETList Annotation Queues
    • POSTCreate Annotation Queue
    • GETGet Annotation Queue
    • DELDelete Annotation Queue
    • GETList Queue Items
    • POSTAnnotate Queue Item
  • Projects
    • GETList Projects
    • POSTCreate Project
    • PUTUpdate Project
LogoLogo
Trust CenterStatusSupportGet a demoPlatform
Annotation Queues

Create Annotation Queue

POST
https://api.confident-ai.com/v1/annotation-queues
POST
/v1/annotation-queues
$curl -X POST https://api.confident-ai.com/v1/annotation-queues \
> -H "CONFIDENT_API_KEY: <PROJECT-API-KEY>" \
> -H "Content-Type: application/json" \
> -d '{
> "name": "string",
> "type": "TRACE"
>}'
200Successful
1{
2 "success": true,
3 "data": {
4 "id": "queue-uuid"
5 }
6}
Creates a new annotation queue for organizing traces, spans, threads, golden datasets, or test runs for systematic review and annotation. **Queue types:** - `TRACE`: Queue for reviewing complete trace executions - `SPAN`: Queue for reviewing individual spans within traces - `THREAD`: Queue for reviewing conversation threads - `GOLDEN`: Queue for creating golden datasets - `TEST_RUN`: Queue for reviewing test run results Queue names must be unique within your project.
Was this page helpful?
Previous

Get Annotation Queue

Next
Built with

Creates a new annotation queue for organizing traces, spans, threads, golden datasets, or test runs for systematic review and annotation.

Queue types:

  • TRACE: Queue for reviewing complete trace executions
  • SPAN: Queue for reviewing individual spans within traces
  • THREAD: Queue for reviewing conversation threads
  • GOLDEN: Queue for creating golden datasets
  • TEST_RUN: Queue for reviewing test run results

Queue names must be unique within your project.

Headers

CONFIDENT_API_KEYstringRequired
The API key of your Confident AI project.

Request

This endpoint expects an object.
namestringRequired
The name of the annotation queue
typeenumRequired
The type of items this queue will contain
Allowed values:

Response

Successfully created annotation queue
successboolean
Indicates if the annotation queue was successfully created.
dataobject
Contains the created annotation queue information.