Annotation Jobs
View information about annotation jobs and create an annotation job.
You can use the jobs endpoint to get info about your annotation jobs, their current status or assign images for labeling by creating a new Annotation Job with images from one of your batches.
Retrieve Annotation Job Data from the API
To retrieve annotation job data from the REST API, make a request to the following endpoint:
This will return data in the following format:
To retrieve information about a specific job, specify the job ID:
Here is the response format from this request:
Create a New Annotation Job
You can make a POST request to the /jobs endpoint of your project to create a new Annotation Job in your project. To create a new job the you need to provide some JSON encoded data in the body of your POST request.
You need to set both reviewer and labeler to an email that belong to a user in your workspace.
If your workspace does not have the advanced Review Mode feature enabled, you won't see the reviewer in the app UI (but you still need to set one as part of the API request; in the web UI this automatically gets set to the user creating the job in the UI. You can pass any user that is an admin member of the workspace as a reviewer)
To create a new Annotation Job in a project, that assigns 10 images from one of the batches in the project to be annotated by [email protected] you can make a POST request like this:
This request returns the following data:
Last updated