List Forms
GEThttps://api.confident-ai.com/v2/annotation-forms
Lists the annotation forms in your Confident AI project, oldest first. Each form is returned as a summary with its field and queue counts; retrieve a form by id for its questions.
curl -X GET "https://api.confident-ai.com/v2/annotation-forms" \
-H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"{
"success": true,
"data": {
"annotationForms": [
{
"id": "<ANNOTATION-FORM-ID>",
"name": "Answer quality review",
"fieldCount": 3,
"queueCount": 2,
"createdAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-16T09:00:00.000Z"
}
]
},
"link": "https://app.confident-ai.com/project/<PROJECT-ID>/project-settings/annotation",
"deprecated": false
}Headers
CONFIDENT_API_KEYstringRequiredThe API key of your Confident AI project.
Response
List Forms succeeded.
successbooleanIndicates if the request was successful.
dataobjectThe annotation forms in the project.
Show 1 propertyHide 1 property
annotationFormslist of objectsThe forms in this project, oldest first.
Show 6 propertiesHide 6 properties
idstringThe id of the form, generated by Confident AI.
namestringThe name of the form, shown wherever a queue offers it.
fieldCountintegerHow many questions the form carries.
queueCountintegerHow many annotation queues currently use this form.
createdAtstringWhen the form was created.
updatedAtstringWhen the form was last changed.
linkstringThis is the URL of the resource on the Confident AI platform.
deprecatedbooleanIndicates if this endpoint is deprecated.