Asset

Get image detail

GET
Get image detail by coactive image id or dataset id and image path. Either coactive image id or or a combination of dataset id and image path can be used to uniquely identify an image.

Query parameters

dataset_idstringOptional
The dataset id of the image
pathstringOptional
The path of the image
coactive_image_idstringOptional
The coactive image id of the image

Response

This endpoint returns a union
Imageobject
OR
Keyframeobject
GET
1curl https://app.coactive.ai/api/v1/assets/image-detail \
2 -H "Authorization: Bearer <token>"
200
Retrieved
1{
2 "createdUserId": "user_example",
3 "createdDt": "2018-09-11T15:11:45.456777",
4 "updatedUserId": "user_example",
5 "updatedDt": "2018-09-11T15:11:45.456777",
6 "coactiveImageId": "a6894d72-612d-4c20-b4d0-8f3f21c2bb10",
7 "path": "s3://your-s3-bucket/path/to/video.mp4",
8 "id": "some-id",
9 "metadata": {
10 "artist": "Marc Simonetti"
11 }
12}