Concept

Get label candidates

GET
Get images and keyframes to label in order to improve the concept

Path parameters

concept_idstringRequired
The concept id to get candidates to label

Query parameters

limitintegerOptional
Max number of items to return

Response

This endpoint returns an object
data
list of unions
Images and video keyframes to label
GET
1curl https://app.coactive.ai/api/v1/concepts/string/candidates \
2 -H "Authorization: Bearer <token>"
200
Retrieved
1{
2 "data": [
3 {
4 "createdUserId": "user_example",
5 "createdDt": "2018-09-11T15:11:45.456777",
6 "updatedUserId": "user_example",
7 "updatedDt": "2018-09-11T15:11:45.456777",
8 "coactiveImageId": "a6894d72-612d-4c20-b4d0-8f3f21c2bb10",
9 "path": "s3://your-s3-bucket/path/to/video.mp4",
10 "id": "some-id",
11 "metadata": {
12 "artist": "Marc Simonetti"
13 }
14 }
15 ]
16}