Projects
Projects are the highest level abstraction in the Annotation Lab platform. They contain directories, source files, schemas, and annotation layers. They are also the scope at which work can be shared.
Create Project
POST
https://api.annolab.ai/v1/project/create
Create a new project within your group
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Where you put your api key. Creating a project requires a key with "Write" permissions.
|
Request Body
Name | Type | Description |
---|---|---|
name | string | Name of the project you wish to create. Must be unique for your group
|
Examples of how to make a project create request
Get Project
GET
https://api.annolab.ai/v1/project/{identifier}
Return details of a project given an identifier
Path Parameters
Name | Type | Description |
---|---|---|
identifier | string | Either the name or the id of a project
|
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Where you put your api key. Getting a project requires an key with "Read" permissions
|
Last updated