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
Headers
Name
Type
Description
Request Body
Name
Type
Description
{
"name": "New NER Project",
"id": 22,
"groupId": 14
}{
"message": "Information about why creation failed"
}import requests
ANNO_LAB_API_KEY = 'XXXXXXX-XXXXXXX-XXXXXXX-XXXXXXX'
project = {
'name': 'New NER Project'
}
headers = {
'Authorization': 'Api-Key '+ANNO_LAB_API_KEY,
}
url = 'https://api.annolab.ai/v1/project/create'
response = requests.post(url, headers=headers, json=project)
print(response.json())Get Project
Path Parameters
Name
Type
Description
Headers
Name
Type
Description
Last updated
Was this helpful?