List Assets
You can get a list of assets from a specific application by making a GET to this endpoint.NB: This endpoint can deliver authenticated and unauthentcicated responses based on your Application's security settings. To see the full authenticated and unauthenticated asset object JSON please see the Video Object Documentation , Photo Object Documentation or the Audio Object Documentation
Request
GET https://www.cameratag.com/api/v15/apps/[YOUR_APP_UUID]/assets.json
Parameters
Below is a list of parameters that this endpoint accepts.
| Parameter | Accepted Values | Description | Required |
|---|---|---|---|
| api_key | valid user api_key | Use your account's api_key to authenticate. Depending on your app's security settings you may be required to authenticate to get a list of assets. You may also need to autheticate to get a non-redacted version of the asset data. | Required for authenticated requests |
| state | published, processed, approved, rejected, featured | limit results to assets in a specific sate. ("published" assets are waiting to be processed) | Optional |
| name | * | find assets whose name contains the specific string. This query will match substrings | Optional |
| description | * | find assets whose description contains the specific string. This query will match substrings | Optional |
| metadata | * | find assets whose metadata contains the specific string. This query will match substrings | Optional |
| created_before | integer (number of seconds from the Linux Epoch) | limit results to assets created before a specific time | Optional |
| created_after | Optional | integer (number of seconds from the Linux Epoch) | limit results to assets created after a specific time |
| type | Video, Photo, Audio | filter assets based on their media type. (if blank all assets are returned) | Optional |
| page | integer (starts at 1) | return a specific page number in paginated results | Optional |
Example Response
Please note that this is an example of an unauthenticated response. If you include an api_key you will get beack extra information in each asset. For more detail on the different asset object responses please check out the Video Object Documentation , Photo Object Documentation or the Audio Object Documentation
{
"assets": [
{
"uuid": "v-5d86272e-169c-4b36-b74b-631dbd663e56",
"preview_thumbnail_url": "https://www.cameratag.com/assets/v-5d86272e-169c-4b36-b74b-631dbd663e56/vga_thumb.jpg",
"preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-5d86272e-169c-4b36-b74b-631dbd663e56/vga_thumb.jpg",
"preview_mp4_url": "https://www.cameratag.com/assets/v-5d86272e-169c-4b36-b74b-631dbd663e56/720p.mp4",
"preview_webm_url": "http://static.cameratag.com/processing.mp4",
"state": "approved",
"name": "Demo Recording",
"description": "Thank you for looking at CameraTag",
"type": "Video",
"ad_server_type": null,
"ad_server_url": null,
"params": "[{\"start_time\":0,\"end_time\":4.323,\"text\":\"What is your name\"},{\"start_time\":4.323,\"end_time\":4.897,\"text\":\"What is your vocation\"},{\"start_time\":4.323,\"end_time\":5.391,\"text\":\"What is your vocation\"},{\"start_time\":4.323,\"end_time\":7.064,\"text\":\"What is your vocation\"}]",
"app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
"medias": {
"720p": {
"width": 1280,
"height": 720,
"length": 7,
"media_type": "mp4",
"name": "720p",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-5d86272e-169c-4b36-b74b-631dbd663e56/720p.mp4"
}
},
"vga_thumb": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "thumb",
"name": "vga_thumb",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-5d86272e-169c-4b36-b74b-631dbd663e56/vga_thumb.jpg"
}
},
"vga_filmstrip": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "filmstrip",
"name": "vga_filmstrip",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-5d86272e-169c-4b36-b74b-631dbd663e56/vga_filmstrip.jpg"
}
},
"vertical": {
"width": 720,
"height": 1280,
"length": 7,
"media_type": "mp4",
"name": "vertical",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-5d86272e-169c-4b36-b74b-631dbd663e56/vertical.mp4"
}
},
"Giphy": {
"width": 640,
"height": 480,
"length": null,
"media_type": "thumb",
"name": "Giphy",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-5d86272e-169c-4b36-b74b-631dbd663e56/Giphy.gif"
}
},
"Original": {
"width": null,
"height": null,
"length": null,
"media_type": "original",
"name": "Original",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-5d86272e-169c-4b36-b74b-631dbd663e56/Original.flv"
}
}
}
},
{
"uuid": "v-cd37a870-bcf5-4dcd-aec1-5df520966865",
"preview_thumbnail_url": "https://www.cameratag.com/assets/v-cd37a870-bcf5-4dcd-aec1-5df520966865/vga_thumb.jpg",
"preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-cd37a870-bcf5-4dcd-aec1-5df520966865/vga_thumb.jpg",
"preview_mp4_url": "https://www.cameratag.com/assets/v-cd37a870-bcf5-4dcd-aec1-5df520966865/720p.mp4",
"preview_webm_url": "http://static.cameratag.com/processing.mp4",
"state": "approved",
"name": "Demo Recording",
"description": "Thank you for looking at CameraTag",
"type": "Video",
"ad_server_type": null,
"ad_server_url": null,
"params": "[{\"start_time\":0,\"end_time\":3.856,\"text\":\"What is your name\"},{\"start_time\":3.856,\"end_time\":5.039,\"text\":\"What is your vocation\"}]",
"app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
"medias": {
"720p": {
"width": 1280,
"height": 720,
"length": 5,
"media_type": "mp4",
"name": "720p",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-cd37a870-bcf5-4dcd-aec1-5df520966865/720p.mp4"
}
},
"vga_thumb": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "thumb",
"name": "vga_thumb",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-cd37a870-bcf5-4dcd-aec1-5df520966865/vga_thumb.jpg"
}
},
"vga_filmstrip": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "filmstrip",
"name": "vga_filmstrip",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-cd37a870-bcf5-4dcd-aec1-5df520966865/vga_filmstrip.jpg"
}
},
"vertical": {
"width": 720,
"height": 1280,
"length": 5,
"media_type": "mp4",
"name": "vertical",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-cd37a870-bcf5-4dcd-aec1-5df520966865/vertical.mp4"
}
},
"Giphy": {
"width": 640,
"height": 480,
"length": null,
"media_type": "thumb",
"name": "Giphy",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-cd37a870-bcf5-4dcd-aec1-5df520966865/Giphy.gif"
}
},
"Original": {
"width": null,
"height": null,
"length": null,
"media_type": "original",
"name": "Original",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-cd37a870-bcf5-4dcd-aec1-5df520966865/Original.flv"
}
}
}
},
{
"uuid": "v-42a2ed0c-a751-437f-a007-5fe103a1db52",
"preview_thumbnail_url": "https://www.cameratag.com/assets/v-42a2ed0c-a751-437f-a007-5fe103a1db52/vga_thumb.jpg",
"preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-42a2ed0c-a751-437f-a007-5fe103a1db52/vga_thumb.jpg",
"preview_mp4_url": "https://www.cameratag.com/assets/v-42a2ed0c-a751-437f-a007-5fe103a1db52/720p.mp4",
"preview_webm_url": "http://static.cameratag.com/processing.mp4",
"state": "approved",
"name": "",
"description": "",
"type": "Video",
"ad_server_type": null,
"ad_server_url": null,
"params": "[]",
"app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
"medias": {
"720p": {
"width": 720,
"height": 1280,
"length": 9,
"media_type": "mp4",
"name": "720p",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-42a2ed0c-a751-437f-a007-5fe103a1db52/720p.mp4"
}
},
"vga_thumb": {
"width": 720,
"height": 1280,
"length": null,
"media_type": "thumb",
"name": "vga_thumb",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-42a2ed0c-a751-437f-a007-5fe103a1db52/vga_thumb.jpg"
}
},
"vga_filmstrip": {
"width": 720,
"height": 1280,
"length": null,
"media_type": "filmstrip",
"name": "vga_filmstrip",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-42a2ed0c-a751-437f-a007-5fe103a1db52/vga_filmstrip.jpg"
}
},
"vertical": {
"width": 720,
"height": 1280,
"length": 9,
"media_type": "mp4",
"name": "vertical",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-42a2ed0c-a751-437f-a007-5fe103a1db52/vertical.mp4"
}
},
"Giphy": {
"width": 480,
"height": 640,
"length": null,
"media_type": "thumb",
"name": "Giphy",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-42a2ed0c-a751-437f-a007-5fe103a1db52/Giphy.gif"
}
},
"Original": {
"width": null,
"height": null,
"length": null,
"media_type": "original",
"name": "Original",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-42a2ed0c-a751-437f-a007-5fe103a1db52/Original.flv"
}
}
}
},
{
"uuid": "v-970be23b-c56e-4bdb-983c-e0c0ee18e23f",
"preview_thumbnail_url": "https://www.cameratag.com/assets/v-970be23b-c56e-4bdb-983c-e0c0ee18e23f/vga_thumb.jpg",
"preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-970be23b-c56e-4bdb-983c-e0c0ee18e23f/vga_thumb.jpg",
"preview_mp4_url": "https://www.cameratag.com/assets/v-970be23b-c56e-4bdb-983c-e0c0ee18e23f/720p.mp4",
"preview_webm_url": "http://static.cameratag.com/processing.mp4",
"state": "approved",
"name": null,
"description": null,
"type": "Video",
"ad_server_type": null,
"ad_server_url": null,
"params": null,
"app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
"medias": {
"720p": {
"width": 1280,
"height": 720,
"length": 5,
"media_type": "mp4",
"name": "720p",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-970be23b-c56e-4bdb-983c-e0c0ee18e23f/720p.mp4"
}
},
"vga_thumb": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "thumb",
"name": "vga_thumb",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-970be23b-c56e-4bdb-983c-e0c0ee18e23f/vga_thumb.jpg"
}
},
"vga_filmstrip": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "filmstrip",
"name": "vga_filmstrip",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-970be23b-c56e-4bdb-983c-e0c0ee18e23f/vga_filmstrip.jpg"
}
},
"vertical": {
"width": 720,
"height": 1280,
"length": 5,
"media_type": "mp4",
"name": "vertical",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-970be23b-c56e-4bdb-983c-e0c0ee18e23f/vertical.mp4"
}
},
"Giphy": {
"width": 640,
"height": 480,
"length": null,
"media_type": "thumb",
"name": "Giphy",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-970be23b-c56e-4bdb-983c-e0c0ee18e23f/Giphy.gif"
}
},
"Original": {
"width": null,
"height": null,
"length": null,
"media_type": "original",
"name": "Original",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-970be23b-c56e-4bdb-983c-e0c0ee18e23f/Original.mp4"
}
}
}
},
{
"uuid": "v-86426dee-a34c-47a9-a737-559fa2ccc6cf",
"preview_thumbnail_url": "https://www.cameratag.com/assets/v-86426dee-a34c-47a9-a737-559fa2ccc6cf/vga_thumb.jpg",
"preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-86426dee-a34c-47a9-a737-559fa2ccc6cf/vga_thumb.jpg",
"preview_mp4_url": "https://www.cameratag.com/assets/v-86426dee-a34c-47a9-a737-559fa2ccc6cf/720p.mp4",
"preview_webm_url": "http://static.cameratag.com/processing.mp4",
"state": "approved",
"name": "Demo Recording",
"description": "Thank you for looking at CameraTag",
"type": "Video",
"ad_server_type": null,
"ad_server_url": null,
"params": "[{\"start_time\":0,\"end_time\":10.015,\"text\":\"What is your name\"},{\"start_time\":10.015,\"end_time\":14.814,\"text\":\"What is your vocation\"}]",
"app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
"medias": {
"720p": {
"width": 1280,
"height": 720,
"length": 14,
"media_type": "mp4",
"name": "720p",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-86426dee-a34c-47a9-a737-559fa2ccc6cf/720p.mp4"
}
},
"vga_thumb": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "thumb",
"name": "vga_thumb",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-86426dee-a34c-47a9-a737-559fa2ccc6cf/vga_thumb.jpg"
}
},
"vga_filmstrip": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "filmstrip",
"name": "vga_filmstrip",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-86426dee-a34c-47a9-a737-559fa2ccc6cf/vga_filmstrip.jpg"
}
},
"vertical": {
"width": 720,
"height": 1280,
"length": 14,
"media_type": "mp4",
"name": "vertical",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-86426dee-a34c-47a9-a737-559fa2ccc6cf/vertical.mp4"
}
},
"Giphy": {
"width": 640,
"height": 480,
"length": null,
"media_type": "thumb",
"name": "Giphy",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-86426dee-a34c-47a9-a737-559fa2ccc6cf/Giphy.gif"
}
},
"Original": {
"width": null,
"height": null,
"length": null,
"media_type": "original",
"name": "Original",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-86426dee-a34c-47a9-a737-559fa2ccc6cf/Original.flv"
}
}
}
},
{
"uuid": "v-b646cd4c-c27c-4c85-8c53-9eef38f1ef8f",
"preview_thumbnail_url": "https://www.cameratag.com/assets/v-b646cd4c-c27c-4c85-8c53-9eef38f1ef8f/vga_thumb.jpg",
"preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-b646cd4c-c27c-4c85-8c53-9eef38f1ef8f/vga_thumb.jpg",
"preview_mp4_url": "https://www.cameratag.com/assets/v-b646cd4c-c27c-4c85-8c53-9eef38f1ef8f/720p.mp4",
"preview_webm_url": "http://static.cameratag.com/processing.mp4",
"state": "approved",
"name": "",
"description": "",
"type": "Video",
"ad_server_type": null,
"ad_server_url": null,
"params": "[]",
"app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
"medias": {
"720p": {
"width": 1280,
"height": 720,
"length": 8,
"media_type": "mp4",
"name": "720p",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-b646cd4c-c27c-4c85-8c53-9eef38f1ef8f/720p.mp4"
}
},
"vga_thumb": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "thumb",
"name": "vga_thumb",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-b646cd4c-c27c-4c85-8c53-9eef38f1ef8f/vga_thumb.jpg"
}
},
"vga_filmstrip": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "filmstrip",
"name": "vga_filmstrip",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-b646cd4c-c27c-4c85-8c53-9eef38f1ef8f/vga_filmstrip.jpg"
}
},
"vertical": {
"width": 720,
"height": 1280,
"length": 8,
"media_type": "mp4",
"name": "vertical",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-b646cd4c-c27c-4c85-8c53-9eef38f1ef8f/vertical.mp4"
}
},
"Giphy": {
"width": 640,
"height": 480,
"length": null,
"media_type": "thumb",
"name": "Giphy",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-b646cd4c-c27c-4c85-8c53-9eef38f1ef8f/Giphy.gif"
}
},
"Original": {
"width": null,
"height": null,
"length": null,
"media_type": "original",
"name": "Original",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-b646cd4c-c27c-4c85-8c53-9eef38f1ef8f/Original.mp4"
}
},
"Captions": {
"width": null,
"height": null,
"length": null,
"media_type": "caption",
"name": "Captions",
"state": "ERROR",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-b646cd4c-c27c-4c85-8c53-9eef38f1ef8f/Captions.VTT"
}
}
}
},
{
"uuid": "v-defc86d9-9a4e-4f6f-8fbe-c73ded6557d3",
"preview_thumbnail_url": "https://www.cameratag.com/assets/v-defc86d9-9a4e-4f6f-8fbe-c73ded6557d3/vga_thumb.jpg",
"preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-defc86d9-9a4e-4f6f-8fbe-c73ded6557d3/vga_thumb.jpg",
"preview_mp4_url": "https://www.cameratag.com/assets/v-defc86d9-9a4e-4f6f-8fbe-c73ded6557d3/720p.mp4",
"preview_webm_url": "http://static.cameratag.com/processing.mp4",
"state": "approved",
"name": "",
"description": "",
"type": "Video",
"ad_server_type": null,
"ad_server_url": null,
"params": "[]",
"app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
"medias": {
"720p": {
"width": 1280,
"height": 720,
"length": 8,
"media_type": "mp4",
"name": "720p",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-defc86d9-9a4e-4f6f-8fbe-c73ded6557d3/720p.mp4"
}
},
"vga_thumb": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "thumb",
"name": "vga_thumb",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-defc86d9-9a4e-4f6f-8fbe-c73ded6557d3/vga_thumb.jpg"
}
},
"vga_filmstrip": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "filmstrip",
"name": "vga_filmstrip",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-defc86d9-9a4e-4f6f-8fbe-c73ded6557d3/vga_filmstrip.jpg"
}
},
"vertical": {
"width": 720,
"height": 1280,
"length": 8,
"media_type": "mp4",
"name": "vertical",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-defc86d9-9a4e-4f6f-8fbe-c73ded6557d3/vertical.mp4"
}
},
"Giphy": {
"width": 640,
"height": 480,
"length": null,
"media_type": "thumb",
"name": "Giphy",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-defc86d9-9a4e-4f6f-8fbe-c73ded6557d3/Giphy.gif"
}
},
"Original": {
"width": null,
"height": null,
"length": null,
"media_type": "original",
"name": "Original",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-defc86d9-9a4e-4f6f-8fbe-c73ded6557d3/Original.mp4"
}
},
"Captions": {
"width": null,
"height": null,
"length": null,
"media_type": "caption",
"name": "Captions",
"state": "ERROR",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-defc86d9-9a4e-4f6f-8fbe-c73ded6557d3/Captions.VTT"
}
}
}
},
{
"uuid": "v-4c7efe74-2c47-4296-ad20-306cd49e9b1b",
"preview_thumbnail_url": "https://www.cameratag.com/assets/v-4c7efe74-2c47-4296-ad20-306cd49e9b1b/vga_thumb.jpg",
"preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-4c7efe74-2c47-4296-ad20-306cd49e9b1b/vga_thumb.jpg",
"preview_mp4_url": "https://www.cameratag.com/assets/v-4c7efe74-2c47-4296-ad20-306cd49e9b1b/720p.mp4",
"preview_webm_url": "http://static.cameratag.com/processing.mp4",
"state": "approved",
"name": "",
"description": "",
"type": "Video",
"ad_server_type": null,
"ad_server_url": null,
"params": "[]",
"app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
"medias": {
"720p": {
"width": 1280,
"height": 720,
"length": 8,
"media_type": "mp4",
"name": "720p",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-4c7efe74-2c47-4296-ad20-306cd49e9b1b/720p.mp4"
}
},
"vga_thumb": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "thumb",
"name": "vga_thumb",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-4c7efe74-2c47-4296-ad20-306cd49e9b1b/vga_thumb.jpg"
}
},
"vga_filmstrip": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "filmstrip",
"name": "vga_filmstrip",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-4c7efe74-2c47-4296-ad20-306cd49e9b1b/vga_filmstrip.jpg"
}
},
"vertical": {
"width": 720,
"height": 1280,
"length": 8,
"media_type": "mp4",
"name": "vertical",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-4c7efe74-2c47-4296-ad20-306cd49e9b1b/vertical.mp4"
}
},
"Giphy": {
"width": 640,
"height": 480,
"length": null,
"media_type": "thumb",
"name": "Giphy",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-4c7efe74-2c47-4296-ad20-306cd49e9b1b/Giphy.gif"
}
},
"Original": {
"width": null,
"height": null,
"length": null,
"media_type": "original",
"name": "Original",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-4c7efe74-2c47-4296-ad20-306cd49e9b1b/Original.mp4"
}
},
"Captions": {
"width": null,
"height": null,
"length": null,
"media_type": "caption",
"name": "Captions",
"state": "ERROR",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-4c7efe74-2c47-4296-ad20-306cd49e9b1b/Captions.VTT"
}
}
}
},
{
"uuid": "v-e7d0d7d4-b55d-494c-b031-5d9064bc9f5b",
"preview_thumbnail_url": "https://www.cameratag.com/assets/v-e7d0d7d4-b55d-494c-b031-5d9064bc9f5b/vga_thumb.jpg",
"preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-e7d0d7d4-b55d-494c-b031-5d9064bc9f5b/vga_thumb.jpg",
"preview_mp4_url": "https://www.cameratag.com/assets/v-e7d0d7d4-b55d-494c-b031-5d9064bc9f5b/720p.mp4",
"preview_webm_url": "http://static.cameratag.com/processing.mp4",
"state": "approved",
"name": "",
"description": "",
"type": "Video",
"ad_server_type": null,
"ad_server_url": null,
"params": "[]",
"app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
"medias": {
"720p": {
"width": 1280,
"height": 720,
"length": 8,
"media_type": "mp4",
"name": "720p",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-e7d0d7d4-b55d-494c-b031-5d9064bc9f5b/720p.mp4"
}
},
"vga_thumb": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "thumb",
"name": "vga_thumb",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-e7d0d7d4-b55d-494c-b031-5d9064bc9f5b/vga_thumb.jpg"
}
},
"vga_filmstrip": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "filmstrip",
"name": "vga_filmstrip",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-e7d0d7d4-b55d-494c-b031-5d9064bc9f5b/vga_filmstrip.jpg"
}
},
"vertical": {
"width": 720,
"height": 1280,
"length": 8,
"media_type": "mp4",
"name": "vertical",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-e7d0d7d4-b55d-494c-b031-5d9064bc9f5b/vertical.mp4"
}
},
"Giphy": {
"width": 640,
"height": 480,
"length": null,
"media_type": "thumb",
"name": "Giphy",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-e7d0d7d4-b55d-494c-b031-5d9064bc9f5b/Giphy.gif"
}
},
"Original": {
"width": null,
"height": null,
"length": null,
"media_type": "original",
"name": "Original",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-e7d0d7d4-b55d-494c-b031-5d9064bc9f5b/Original.mp4"
}
},
"Captions": {
"width": null,
"height": null,
"length": null,
"media_type": "caption",
"name": "Captions",
"state": "ERROR",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-e7d0d7d4-b55d-494c-b031-5d9064bc9f5b/Captions.VTT"
}
}
}
},
{
"uuid": "v-495a5449-324a-4eb5-bfda-dd59f791f3b1",
"preview_thumbnail_url": "https://www.cameratag.com/assets/v-495a5449-324a-4eb5-bfda-dd59f791f3b1/vga_thumb.jpg",
"preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-495a5449-324a-4eb5-bfda-dd59f791f3b1/vga_thumb.jpg",
"preview_mp4_url": "https://www.cameratag.com/assets/v-495a5449-324a-4eb5-bfda-dd59f791f3b1/720p.mp4",
"preview_webm_url": "http://static.cameratag.com/processing.mp4",
"state": "approved",
"name": "",
"description": "",
"type": "Video",
"ad_server_type": null,
"ad_server_url": null,
"params": "[]",
"app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
"medias": {
"720p": {
"width": 1280,
"height": 720,
"length": 8,
"media_type": "mp4",
"name": "720p",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-495a5449-324a-4eb5-bfda-dd59f791f3b1/720p.mp4"
}
},
"vga_thumb": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "thumb",
"name": "vga_thumb",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-495a5449-324a-4eb5-bfda-dd59f791f3b1/vga_thumb.jpg"
}
},
"vga_filmstrip": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "filmstrip",
"name": "vga_filmstrip",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-495a5449-324a-4eb5-bfda-dd59f791f3b1/vga_filmstrip.jpg"
}
},
"vertical": {
"width": 720,
"height": 1280,
"length": 8,
"media_type": "mp4",
"name": "vertical",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-495a5449-324a-4eb5-bfda-dd59f791f3b1/vertical.mp4"
}
},
"Giphy": {
"width": 640,
"height": 480,
"length": null,
"media_type": "thumb",
"name": "Giphy",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-495a5449-324a-4eb5-bfda-dd59f791f3b1/Giphy.gif"
}
},
"Original": {
"width": null,
"height": null,
"length": null,
"media_type": "original",
"name": "Original",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-495a5449-324a-4eb5-bfda-dd59f791f3b1/Original.mp4"
}
},
"Captions": {
"width": null,
"height": null,
"length": null,
"media_type": "caption",
"name": "Captions",
"state": "ERROR",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-495a5449-324a-4eb5-bfda-dd59f791f3b1/Captions.VTT"
}
}
}
},
{
"uuid": "v-5e6391eb-cb39-4751-9cb4-49d52cbe1ab1",
"preview_thumbnail_url": "https://www.cameratag.com/assets/v-5e6391eb-cb39-4751-9cb4-49d52cbe1ab1/vga_thumb.jpg",
"preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-5e6391eb-cb39-4751-9cb4-49d52cbe1ab1/vga_thumb.jpg",
"preview_mp4_url": "https://www.cameratag.com/assets/v-5e6391eb-cb39-4751-9cb4-49d52cbe1ab1/720p.mp4",
"preview_webm_url": "http://static.cameratag.com/processing.mp4",
"state": "approved",
"name": "",
"description": "",
"type": "Video",
"ad_server_type": null,
"ad_server_url": null,
"params": "[]",
"app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
"medias": {
"720p": {
"width": 1280,
"height": 720,
"length": 8,
"media_type": "mp4",
"name": "720p",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-5e6391eb-cb39-4751-9cb4-49d52cbe1ab1/720p.mp4"
}
},
"vga_thumb": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "thumb",
"name": "vga_thumb",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-5e6391eb-cb39-4751-9cb4-49d52cbe1ab1/vga_thumb.jpg"
}
},
"vga_filmstrip": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "filmstrip",
"name": "vga_filmstrip",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-5e6391eb-cb39-4751-9cb4-49d52cbe1ab1/vga_filmstrip.jpg"
}
},
"vertical": {
"width": 720,
"height": 1280,
"length": 8,
"media_type": "mp4",
"name": "vertical",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-5e6391eb-cb39-4751-9cb4-49d52cbe1ab1/vertical.mp4"
}
},
"Giphy": {
"width": 640,
"height": 480,
"length": null,
"media_type": "thumb",
"name": "Giphy",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-5e6391eb-cb39-4751-9cb4-49d52cbe1ab1/Giphy.gif"
}
},
"Original": {
"width": null,
"height": null,
"length": null,
"media_type": "original",
"name": "Original",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-5e6391eb-cb39-4751-9cb4-49d52cbe1ab1/Original.mp4"
}
},
"Captions": {
"width": null,
"height": null,
"length": null,
"media_type": "caption",
"name": "Captions",
"state": "ERROR",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-5e6391eb-cb39-4751-9cb4-49d52cbe1ab1/Captions.VTT"
}
}
}
},
{
"uuid": "v-7b5df133-1f49-43a2-88ab-9472a2ae0099",
"preview_thumbnail_url": "https://www.cameratag.com/assets/v-7b5df133-1f49-43a2-88ab-9472a2ae0099/vga_thumb.jpg",
"preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-7b5df133-1f49-43a2-88ab-9472a2ae0099/vga_thumb.jpg",
"preview_mp4_url": "https://www.cameratag.com/assets/v-7b5df133-1f49-43a2-88ab-9472a2ae0099/720p.mp4",
"preview_webm_url": "http://static.cameratag.com/processing.mp4",
"state": "approved",
"name": "",
"description": "",
"type": "Video",
"ad_server_type": null,
"ad_server_url": null,
"params": "[]",
"app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
"medias": {
"720p": {
"width": 1280,
"height": 720,
"length": 8,
"media_type": "mp4",
"name": "720p",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-7b5df133-1f49-43a2-88ab-9472a2ae0099/720p.mp4"
}
},
"vga_thumb": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "thumb",
"name": "vga_thumb",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-7b5df133-1f49-43a2-88ab-9472a2ae0099/vga_thumb.jpg"
}
},
"vga_filmstrip": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "filmstrip",
"name": "vga_filmstrip",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-7b5df133-1f49-43a2-88ab-9472a2ae0099/vga_filmstrip.jpg"
}
},
"vertical": {
"width": 720,
"height": 1280,
"length": 8,
"media_type": "mp4",
"name": "vertical",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-7b5df133-1f49-43a2-88ab-9472a2ae0099/vertical.mp4"
}
},
"Giphy": {
"width": 640,
"height": 480,
"length": null,
"media_type": "thumb",
"name": "Giphy",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-7b5df133-1f49-43a2-88ab-9472a2ae0099/Giphy.gif"
}
},
"Original": {
"width": null,
"height": null,
"length": null,
"media_type": "original",
"name": "Original",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-7b5df133-1f49-43a2-88ab-9472a2ae0099/Original.mp4"
}
},
"Captions": {
"width": null,
"height": null,
"length": null,
"media_type": "caption",
"name": "Captions",
"state": "ERROR",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-7b5df133-1f49-43a2-88ab-9472a2ae0099/Captions.VTT"
}
}
}
},
{
"uuid": "v-bedf9ca3-6c6e-4c20-b86c-312f4d71fd80",
"preview_thumbnail_url": "https://www.cameratag.com/assets/v-bedf9ca3-6c6e-4c20-b86c-312f4d71fd80/vga_thumb.jpg",
"preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-bedf9ca3-6c6e-4c20-b86c-312f4d71fd80/vga_thumb.jpg",
"preview_mp4_url": "https://www.cameratag.com/assets/v-bedf9ca3-6c6e-4c20-b86c-312f4d71fd80/720p.mp4",
"preview_webm_url": "http://static.cameratag.com/processing.mp4",
"state": "approved",
"name": "",
"description": "",
"type": "Video",
"ad_server_type": null,
"ad_server_url": null,
"params": "[]",
"app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
"medias": {
"720p": {
"width": 1280,
"height": 720,
"length": 8,
"media_type": "mp4",
"name": "720p",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-bedf9ca3-6c6e-4c20-b86c-312f4d71fd80/720p.mp4"
}
},
"vga_thumb": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "thumb",
"name": "vga_thumb",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-bedf9ca3-6c6e-4c20-b86c-312f4d71fd80/vga_thumb.jpg"
}
},
"vga_filmstrip": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "filmstrip",
"name": "vga_filmstrip",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-bedf9ca3-6c6e-4c20-b86c-312f4d71fd80/vga_filmstrip.jpg"
}
},
"vertical": {
"width": 720,
"height": 1280,
"length": 8,
"media_type": "mp4",
"name": "vertical",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-bedf9ca3-6c6e-4c20-b86c-312f4d71fd80/vertical.mp4"
}
},
"Giphy": {
"width": 640,
"height": 480,
"length": null,
"media_type": "thumb",
"name": "Giphy",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-bedf9ca3-6c6e-4c20-b86c-312f4d71fd80/Giphy.gif"
}
},
"Original": {
"width": null,
"height": null,
"length": null,
"media_type": "original",
"name": "Original",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-bedf9ca3-6c6e-4c20-b86c-312f4d71fd80/Original.mp4"
}
},
"Captions": {
"width": null,
"height": null,
"length": null,
"media_type": "caption",
"name": "Captions",
"state": "ERROR",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-bedf9ca3-6c6e-4c20-b86c-312f4d71fd80/Captions.VTT"
}
}
}
},
{
"uuid": "v-4f138091-1787-42b8-95a2-3440a10d8a50",
"preview_thumbnail_url": "https://www.cameratag.com/assets/v-4f138091-1787-42b8-95a2-3440a10d8a50/vga_thumb.jpg",
"preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-4f138091-1787-42b8-95a2-3440a10d8a50/vga_thumb.jpg",
"preview_mp4_url": "https://www.cameratag.com/assets/v-4f138091-1787-42b8-95a2-3440a10d8a50/720p.mp4",
"preview_webm_url": "http://static.cameratag.com/processing.mp4",
"state": "approved",
"name": "",
"description": "",
"type": "Video",
"ad_server_type": null,
"ad_server_url": null,
"params": "[]",
"app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
"medias": {
"720p": {
"width": 1280,
"height": 720,
"length": 8,
"media_type": "mp4",
"name": "720p",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-4f138091-1787-42b8-95a2-3440a10d8a50/720p.mp4"
}
},
"vga_thumb": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "thumb",
"name": "vga_thumb",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-4f138091-1787-42b8-95a2-3440a10d8a50/vga_thumb.jpg"
}
},
"vga_filmstrip": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "filmstrip",
"name": "vga_filmstrip",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-4f138091-1787-42b8-95a2-3440a10d8a50/vga_filmstrip.jpg"
}
},
"vertical": {
"width": 720,
"height": 1280,
"length": 8,
"media_type": "mp4",
"name": "vertical",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-4f138091-1787-42b8-95a2-3440a10d8a50/vertical.mp4"
}
},
"Giphy": {
"width": 640,
"height": 480,
"length": null,
"media_type": "thumb",
"name": "Giphy",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-4f138091-1787-42b8-95a2-3440a10d8a50/Giphy.gif"
}
},
"Original": {
"width": null,
"height": null,
"length": null,
"media_type": "original",
"name": "Original",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-4f138091-1787-42b8-95a2-3440a10d8a50/Original.mp4"
}
},
"Captions": {
"width": null,
"height": null,
"length": null,
"media_type": "caption",
"name": "Captions",
"state": "ERROR",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-4f138091-1787-42b8-95a2-3440a10d8a50/Captions.VTT"
}
}
}
},
{
"uuid": "v-a1372f17-8d08-411a-8e4c-00359e51fb53",
"preview_thumbnail_url": "https://www.cameratag.com/assets/v-a1372f17-8d08-411a-8e4c-00359e51fb53/vga_thumb.jpg",
"preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-a1372f17-8d08-411a-8e4c-00359e51fb53/vga_thumb.jpg",
"preview_mp4_url": "https://www.cameratag.com/assets/v-a1372f17-8d08-411a-8e4c-00359e51fb53/720p.mp4",
"preview_webm_url": "http://static.cameratag.com/processing.mp4",
"state": "approved",
"name": "",
"description": "",
"type": "Video",
"ad_server_type": null,
"ad_server_url": null,
"params": "[]",
"app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
"medias": {
"720p": {
"width": 1280,
"height": 720,
"length": 8,
"media_type": "mp4",
"name": "720p",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-a1372f17-8d08-411a-8e4c-00359e51fb53/720p.mp4"
}
},
"vga_thumb": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "thumb",
"name": "vga_thumb",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-a1372f17-8d08-411a-8e4c-00359e51fb53/vga_thumb.jpg"
}
},
"vga_filmstrip": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "filmstrip",
"name": "vga_filmstrip",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-a1372f17-8d08-411a-8e4c-00359e51fb53/vga_filmstrip.jpg"
}
},
"vertical": {
"width": 720,
"height": 1280,
"length": 8,
"media_type": "mp4",
"name": "vertical",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-a1372f17-8d08-411a-8e4c-00359e51fb53/vertical.mp4"
}
},
"Giphy": {
"width": 640,
"height": 480,
"length": null,
"media_type": "thumb",
"name": "Giphy",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-a1372f17-8d08-411a-8e4c-00359e51fb53/Giphy.gif"
}
},
"Original": {
"width": null,
"height": null,
"length": null,
"media_type": "original",
"name": "Original",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-a1372f17-8d08-411a-8e4c-00359e51fb53/Original.mp4"
}
},
"Captions": {
"width": null,
"height": null,
"length": null,
"media_type": "caption",
"name": "Captions",
"state": "ERROR",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-a1372f17-8d08-411a-8e4c-00359e51fb53/Captions.VTT"
}
}
}
},
{
"uuid": "v-ccead2e0-6fa2-4ebe-99d1-0bb9ec963029",
"preview_thumbnail_url": "https://www.cameratag.com/assets/v-ccead2e0-6fa2-4ebe-99d1-0bb9ec963029/vga_thumb.jpg",
"preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-ccead2e0-6fa2-4ebe-99d1-0bb9ec963029/vga_thumb.jpg",
"preview_mp4_url": "https://www.cameratag.com/assets/v-ccead2e0-6fa2-4ebe-99d1-0bb9ec963029/720p.mp4",
"preview_webm_url": "http://static.cameratag.com/processing.mp4",
"state": "approved",
"name": "Welcome To CameraTag",
"description": "",
"type": "Video",
"ad_server_type": null,
"ad_server_url": null,
"params": "[]",
"app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
"medias": {
"720p": {
"width": 1280,
"height": 720,
"length": 8,
"media_type": "mp4",
"name": "720p",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-ccead2e0-6fa2-4ebe-99d1-0bb9ec963029/720p.mp4"
}
},
"vga_thumb": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "thumb",
"name": "vga_thumb",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-ccead2e0-6fa2-4ebe-99d1-0bb9ec963029/vga_thumb.jpg"
}
},
"vga_filmstrip": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "filmstrip",
"name": "vga_filmstrip",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-ccead2e0-6fa2-4ebe-99d1-0bb9ec963029/vga_filmstrip.jpg"
}
},
"vertical": {
"width": 720,
"height": 1280,
"length": 8,
"media_type": "mp4",
"name": "vertical",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-ccead2e0-6fa2-4ebe-99d1-0bb9ec963029/vertical.mp4"
}
},
"Giphy": {
"width": 640,
"height": 480,
"length": null,
"media_type": "thumb",
"name": "Giphy",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-ccead2e0-6fa2-4ebe-99d1-0bb9ec963029/Giphy.gif"
}
},
"Original": {
"width": null,
"height": null,
"length": null,
"media_type": "original",
"name": "Original",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-ccead2e0-6fa2-4ebe-99d1-0bb9ec963029/Original.mp4"
}
},
"Captions": {
"width": null,
"height": null,
"length": 8,
"media_type": "caption",
"name": "Captions",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-ccead2e0-6fa2-4ebe-99d1-0bb9ec963029/Captions.VTT"
}
}
}
},
{
"uuid": "v-b87eafe9-6d19-4169-a4b2-9b7ef3574c1c",
"preview_thumbnail_url": "https://www.cameratag.com/assets/v-b87eafe9-6d19-4169-a4b2-9b7ef3574c1c/vga_thumb.jpg",
"preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-b87eafe9-6d19-4169-a4b2-9b7ef3574c1c/vga_thumb.jpg",
"preview_mp4_url": "https://www.cameratag.com/assets/v-b87eafe9-6d19-4169-a4b2-9b7ef3574c1c/720p.mp4",
"preview_webm_url": "http://static.cameratag.com/processing.mp4",
"state": "approved",
"name": "Demo Recording",
"description": "Thank you for looking at CameraTag",
"type": "Video",
"ad_server_type": null,
"ad_server_url": null,
"params": "[{\"start_time\":0,\"end_time\":5.866,\"text\":\"What is your name\"},{\"start_time\":5.866,\"end_time\":9.758,\"text\":\"What is your vocation\"}]",
"app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
"medias": {
"720p": {
"width": 1280,
"height": 720,
"length": 9,
"media_type": "mp4",
"name": "720p",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-b87eafe9-6d19-4169-a4b2-9b7ef3574c1c/720p.mp4"
}
},
"vga_thumb": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "thumb",
"name": "vga_thumb",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-b87eafe9-6d19-4169-a4b2-9b7ef3574c1c/vga_thumb.jpg"
}
},
"vga_filmstrip": {
"width": 1280,
"height": 720,
"length": null,
"media_type": "filmstrip",
"name": "vga_filmstrip",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-b87eafe9-6d19-4169-a4b2-9b7ef3574c1c/vga_filmstrip.jpg"
}
},
"vertical": {
"width": 720,
"height": 1280,
"length": 9,
"media_type": "mp4",
"name": "vertical",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-b87eafe9-6d19-4169-a4b2-9b7ef3574c1c/vertical.mp4"
}
},
"Giphy": {
"width": 640,
"height": 480,
"length": null,
"media_type": "thumb",
"name": "Giphy",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-b87eafe9-6d19-4169-a4b2-9b7ef3574c1c/Giphy.gif"
}
},
"Original": {
"width": null,
"height": null,
"length": null,
"media_type": "original",
"name": "Original",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-b87eafe9-6d19-4169-a4b2-9b7ef3574c1c/Original.flv"
}
},
"Captions": {
"width": null,
"height": null,
"length": 9,
"media_type": "caption",
"name": "Captions",
"state": "COMPLETED",
"urls": {
"cameratag": "https://www.cameratag.com/assets/v-b87eafe9-6d19-4169-a4b2-9b7ef3574c1c/Captions.VTT"
}
}
}
}
],
"current_page": 1
}