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-5f52ee39-9f76-4e46-9a82-5219e1b021f5", "preview_thumbnail_url": "https://www.cameratag.com/assets/v-5f52ee39-9f76-4e46-9a82-5219e1b021f5/vga_thumb.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-5f52ee39-9f76-4e46-9a82-5219e1b021f5/vga_thumb.jpg", "preview_mp4_url": "https://www.cameratag.com/assets/v-5f52ee39-9f76-4e46-9a82-5219e1b021f5/vga_mp4.mp4", "preview_webm_url": "https://www.cameratag.com/assets/v-5f52ee39-9f76-4e46-9a82-5219e1b021f5/vga_webm.webm", "state": "approved", "name": "Nombre", "description": "Esto Es Un Description", "type": "Video", "ad_server_type": null, "ad_server_url": null, "params": null, "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "medias": { "": { "width": 640, "height": 480, "length": null, "media_type": "original", "name": null, "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-5f52ee39-9f76-4e46-9a82-5219e1b021f5/vga/original.flv" } }, "vga_mp4": { "width": 640, "height": 480, "length": 8, "media_type": "mp4", "name": "vga_mp4", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-5f52ee39-9f76-4e46-9a82-5219e1b021f5/vga/mp4.mp4" } }, "vga_webm": { "width": 640, "height": 480, "length": null, "media_type": "webm", "name": "vga_webm", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-5f52ee39-9f76-4e46-9a82-5219e1b021f5/vga/webm.webm" } }, "vga_thumb": { "width": 320, "height": 240, "length": null, "media_type": "small_thumb", "name": "vga_thumb", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-5f52ee39-9f76-4e46-9a82-5219e1b021f5/vga/small_thumb.png" } } } }, { "uuid": "i-cbb0800e-a71e-4501-9e01-dba68fc27570", "preview_thumbnail_url": "https://www.cameratag.com/assets/i-cbb0800e-a71e-4501-9e01-dba68fc27570/photo.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/i-cbb0800e-a71e-4501-9e01-dba68fc27570/photo.jpg", "state": "approved", "name": null, "description": null, "type": "Photo", "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "camera_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "medias": { "photo": { "width": 640, "height": 480, "length": null, "media_type": "photo", "name": "photo", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/i-cbb0800e-a71e-4501-9e01-dba68fc27570.jpg" } } } }, { "uuid": "v-154cf2e1-b4ba-4fa1-8a00-c9e68c81ca77", "preview_thumbnail_url": "https://www.cameratag.com/assets/v-154cf2e1-b4ba-4fa1-8a00-c9e68c81ca77/vga_thumb.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-154cf2e1-b4ba-4fa1-8a00-c9e68c81ca77/vga_thumb.jpg", "preview_mp4_url": "https://www.cameratag.com/assets/v-154cf2e1-b4ba-4fa1-8a00-c9e68c81ca77/vga_mp4.mp4", "preview_webm_url": "https://www.cameratag.com/assets/v-154cf2e1-b4ba-4fa1-8a00-c9e68c81ca77/vga_webm.webm", "state": "approved", "name": "Nombre", "description": "Esto Es Un Description", "type": "Video", "ad_server_type": null, "ad_server_url": null, "params": null, "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "medias": { "": { "width": 640, "height": 480, "length": null, "media_type": "original", "name": null, "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-154cf2e1-b4ba-4fa1-8a00-c9e68c81ca77/vga/original.flv" } }, "vga_mp4": { "width": 640, "height": 480, "length": 1, "media_type": "mp4", "name": "vga_mp4", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-154cf2e1-b4ba-4fa1-8a00-c9e68c81ca77/vga/mp4.mp4" } }, "vga_webm": { "width": 640, "height": 480, "length": null, "media_type": "webm", "name": "vga_webm", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-154cf2e1-b4ba-4fa1-8a00-c9e68c81ca77/vga/webm.webm" } }, "vga_thumb": { "width": 320, "height": 240, "length": null, "media_type": "small_thumb", "name": "vga_thumb", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-154cf2e1-b4ba-4fa1-8a00-c9e68c81ca77/vga/small_thumb.png" } } } }, { "uuid": "v-f3250687-8910-445f-a6a0-5d557b0110aa", "preview_thumbnail_url": "https://www.cameratag.com/assets/v-f3250687-8910-445f-a6a0-5d557b0110aa/vga_thumb.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-f3250687-8910-445f-a6a0-5d557b0110aa/vga_thumb.jpg", "preview_mp4_url": "https://www.cameratag.com/assets/v-f3250687-8910-445f-a6a0-5d557b0110aa/vga_mp4.mp4", "preview_webm_url": "https://www.cameratag.com/assets/v-f3250687-8910-445f-a6a0-5d557b0110aa/vga_webm.webm", "state": "approved", "name": "Nombre", "description": "Esto Es Un Description", "type": "Video", "ad_server_type": null, "ad_server_url": null, "params": null, "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "medias": { "": { "width": 640, "height": 480, "length": null, "media_type": "flv", "name": null, "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-f3250687-8910-445f-a6a0-5d557b0110aa/vga/flv.flv" } }, "vga_mp4": { "width": 640, "height": 480, "length": 3, "media_type": "mp4", "name": "vga_mp4", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-f3250687-8910-445f-a6a0-5d557b0110aa/vga/mp4.mp4" } }, "vga_webm": { "width": 640, "height": 480, "length": null, "media_type": "webm", "name": "vga_webm", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-f3250687-8910-445f-a6a0-5d557b0110aa/vga/webm.webm" } }, "vga_thumb": { "width": 320, "height": 240, "length": null, "media_type": "small_thumb", "name": "vga_thumb", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-f3250687-8910-445f-a6a0-5d557b0110aa/vga/small_thumb.png" } } } }, { "uuid": "v-be95509e-97e2-4562-80fe-9b5784c657ef", "preview_thumbnail_url": "https://www.cameratag.com/assets/v-be95509e-97e2-4562-80fe-9b5784c657ef/vga_thumb.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-be95509e-97e2-4562-80fe-9b5784c657ef/vga_thumb.jpg", "preview_mp4_url": "https://www.cameratag.com/assets/v-be95509e-97e2-4562-80fe-9b5784c657ef/vga_mp4.mp4", "preview_webm_url": "https://www.cameratag.com/assets/v-be95509e-97e2-4562-80fe-9b5784c657ef/vga_webm.webm", "state": "approved", "name": "Nombre", "description": "Esto Es Un Description", "type": "Video", "ad_server_type": null, "ad_server_url": null, "params": null, "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "medias": { "": { "width": 640, "height": 480, "length": null, "media_type": "original", "name": null, "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-be95509e-97e2-4562-80fe-9b5784c657ef/vga/original.flv" } }, "vga_mp4": { "width": 640, "height": 480, "length": 3, "media_type": "mp4", "name": "vga_mp4", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-be95509e-97e2-4562-80fe-9b5784c657ef/vga/mp4.mp4" } }, "vga_webm": { "width": 640, "height": 480, "length": null, "media_type": "webm", "name": "vga_webm", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-be95509e-97e2-4562-80fe-9b5784c657ef/vga/webm.webm" } }, "vga_thumb": { "width": 320, "height": 240, "length": null, "media_type": "small_thumb", "name": "vga_thumb", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-be95509e-97e2-4562-80fe-9b5784c657ef/vga/small_thumb.png" } } } }, { "uuid": "v-70fd8dd4-46cb-4fc3-9206-842fcfee5520", "preview_thumbnail_url": "https://www.cameratag.com/assets/v-70fd8dd4-46cb-4fc3-9206-842fcfee5520/vga_thumb.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-70fd8dd4-46cb-4fc3-9206-842fcfee5520/vga_thumb.jpg", "preview_mp4_url": "https://www.cameratag.com/assets/v-70fd8dd4-46cb-4fc3-9206-842fcfee5520/vga_mp4.mp4", "preview_webm_url": "https://www.cameratag.com/assets/v-70fd8dd4-46cb-4fc3-9206-842fcfee5520/vga_webm.webm", "state": "approved", "name": "Nombre", "description": "Esto Es Un Description", "type": "Video", "ad_server_type": null, "ad_server_url": null, "params": null, "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "medias": { "": { "width": 640, "height": 480, "length": null, "media_type": "original", "name": null, "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-70fd8dd4-46cb-4fc3-9206-842fcfee5520/vga/original.flv" } }, "vga_mp4": { "width": 640, "height": 480, "length": 1, "media_type": "mp4", "name": "vga_mp4", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-70fd8dd4-46cb-4fc3-9206-842fcfee5520/vga/mp4.mp4" } }, "vga_webm": { "width": 640, "height": 480, "length": null, "media_type": "webm", "name": "vga_webm", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-70fd8dd4-46cb-4fc3-9206-842fcfee5520/vga/webm.webm" } }, "vga_thumb": { "width": 320, "height": 240, "length": null, "media_type": "small_thumb", "name": "vga_thumb", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-70fd8dd4-46cb-4fc3-9206-842fcfee5520/vga/small_thumb.png" } } } }, { "uuid": "v-fb437d59-6518-48ed-8588-b25a876cc42c", "preview_thumbnail_url": "https://www.cameratag.com/assets/v-fb437d59-6518-48ed-8588-b25a876cc42c/vga_thumb.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-fb437d59-6518-48ed-8588-b25a876cc42c/vga_thumb.jpg", "preview_mp4_url": "https://www.cameratag.com/assets/v-fb437d59-6518-48ed-8588-b25a876cc42c/vga_mp4.mp4", "preview_webm_url": "https://www.cameratag.com/assets/v-fb437d59-6518-48ed-8588-b25a876cc42c/vga_webm.webm", "state": "approved", "name": "Nombre", "description": "Esto Es Un Description", "type": "Video", "ad_server_type": null, "ad_server_url": null, "params": null, "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "medias": { "": { "width": 640, "height": 480, "length": null, "media_type": "original", "name": null, "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-fb437d59-6518-48ed-8588-b25a876cc42c/vga/original.flv" } }, "vga_mp4": { "width": 640, "height": 480, "length": 11, "media_type": "mp4", "name": "vga_mp4", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-fb437d59-6518-48ed-8588-b25a876cc42c/vga/mp4.mp4" } }, "vga_webm": { "width": 640, "height": 480, "length": null, "media_type": "webm", "name": "vga_webm", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-fb437d59-6518-48ed-8588-b25a876cc42c/vga/webm.webm" } }, "vga_thumb": { "width": 320, "height": 240, "length": null, "media_type": "small_thumb", "name": "vga_thumb", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-fb437d59-6518-48ed-8588-b25a876cc42c/vga/small_thumb.png" } } } }, { "uuid": "v-89711a99-4d25-4b37-a18f-eb4669056bf4", "preview_thumbnail_url": "https://www.cameratag.com/assets/v-89711a99-4d25-4b37-a18f-eb4669056bf4/vga_thumb.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-89711a99-4d25-4b37-a18f-eb4669056bf4/vga_thumb.jpg", "preview_mp4_url": "https://www.cameratag.com/assets/v-89711a99-4d25-4b37-a18f-eb4669056bf4/vga_mp4.mp4", "preview_webm_url": "https://www.cameratag.com/assets/v-89711a99-4d25-4b37-a18f-eb4669056bf4/vga_webm.webm", "state": "approved", "name": "Nombre", "description": "Esto Es Un Description", "type": "Video", "ad_server_type": null, "ad_server_url": null, "params": null, "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "medias": { "": { "width": 640, "height": 480, "length": null, "media_type": "original", "name": null, "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-89711a99-4d25-4b37-a18f-eb4669056bf4/vga/original.flv" } }, "vga_mp4": { "width": 640, "height": 480, "length": 10, "media_type": "mp4", "name": "vga_mp4", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-89711a99-4d25-4b37-a18f-eb4669056bf4/vga/mp4.mp4" } }, "vga_webm": { "width": 640, "height": 480, "length": null, "media_type": "webm", "name": "vga_webm", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-89711a99-4d25-4b37-a18f-eb4669056bf4/vga/webm.webm" } }, "vga_thumb": { "width": 320, "height": 240, "length": null, "media_type": "small_thumb", "name": "vga_thumb", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-89711a99-4d25-4b37-a18f-eb4669056bf4/vga/small_thumb.png" } } } }, { "uuid": "v-28cef9a6-6941-4200-beea-872d4504a4f6", "preview_thumbnail_url": "https://www.cameratag.com/assets/v-28cef9a6-6941-4200-beea-872d4504a4f6/vga_thumb.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-28cef9a6-6941-4200-beea-872d4504a4f6/vga_thumb.jpg", "preview_mp4_url": "https://www.cameratag.com/assets/v-28cef9a6-6941-4200-beea-872d4504a4f6/vga_mp4.mp4", "preview_webm_url": "https://www.cameratag.com/assets/v-28cef9a6-6941-4200-beea-872d4504a4f6/vga_webm.webm", "state": "approved", "name": "Nombre", "description": "Esto Es Un Description", "type": "Video", "ad_server_type": null, "ad_server_url": null, "params": null, "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "medias": { "": { "width": 640, "height": 480, "length": null, "media_type": "flv", "name": null, "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-28cef9a6-6941-4200-beea-872d4504a4f6/vga/flv.flv" } }, "vga_mp4": { "width": 640, "height": 480, "length": 3, "media_type": "mp4", "name": "vga_mp4", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-28cef9a6-6941-4200-beea-872d4504a4f6/vga/mp4.mp4" } }, "vga_webm": { "width": 640, "height": 480, "length": null, "media_type": "webm", "name": "vga_webm", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-28cef9a6-6941-4200-beea-872d4504a4f6/vga/webm.webm" } }, "vga_thumb": { "width": 320, "height": 240, "length": null, "media_type": "small_thumb", "name": "vga_thumb", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/downloads/v-28cef9a6-6941-4200-beea-872d4504a4f6/vga/small_thumb.png" } } } }, { "uuid": "v-15b6a633-a209-488b-aa25-2c539227d3c2", "preview_thumbnail_url": "https://www.cameratag.com/assets/v-15b6a633-a209-488b-aa25-2c539227d3c2/vga_thumb.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-15b6a633-a209-488b-aa25-2c539227d3c2/vga_thumb.jpg", "preview_mp4_url": "https://www.cameratag.com/assets/v-15b6a633-a209-488b-aa25-2c539227d3c2/vga_mp4.mp4", "preview_webm_url": "https://www.cameratag.com/assets/v-15b6a633-a209-488b-aa25-2c539227d3c2/vga_webm.webm", "state": "approved", "name": "Nombre", "description": "Esto Es Un Description", "type": "Video", "ad_server_type": null, "ad_server_url": null, "params": null, "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "medias": { "": { "width": 640, "height": 480, "length": null, "media_type": "original", "name": null, "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-15b6a633-a209-488b-aa25-2c539227d3c2/vga/original.flv" } }, "vga_mp4": { "width": 640, "height": 480, "length": 29, "media_type": "mp4", "name": "vga_mp4", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-15b6a633-a209-488b-aa25-2c539227d3c2/vga/mp4.mp4" } }, "vga_webm": { "width": 640, "height": 480, "length": null, "media_type": "webm", "name": "vga_webm", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-15b6a633-a209-488b-aa25-2c539227d3c2/vga/webm.webm" } }, "vga_thumb": { "width": 320, "height": 240, "length": null, "media_type": "small_thumb", "name": "vga_thumb", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-15b6a633-a209-488b-aa25-2c539227d3c2/vga/small_thumb.png" } } } }, { "uuid": "v-911fc52c-696f-44bd-910e-97945e902649", "preview_thumbnail_url": "https://www.cameratag.com/assets/v-911fc52c-696f-44bd-910e-97945e902649/vga_thumb.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-911fc52c-696f-44bd-910e-97945e902649/vga_thumb.jpg", "preview_mp4_url": "https://www.cameratag.com/assets/v-911fc52c-696f-44bd-910e-97945e902649/vga_mp4.mp4", "preview_webm_url": "https://www.cameratag.com/assets/v-911fc52c-696f-44bd-910e-97945e902649/vga_webm.webm", "state": "approved", "name": "Nombre", "description": "Esto Es Un Description", "type": "Video", "ad_server_type": null, "ad_server_url": null, "params": null, "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "medias": { "": { "width": 640, "height": 480, "length": null, "media_type": "original", "name": null, "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-911fc52c-696f-44bd-910e-97945e902649/vga/original.flv" } }, "vga_mp4": { "width": 640, "height": 480, "length": 7, "media_type": "mp4", "name": "vga_mp4", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-911fc52c-696f-44bd-910e-97945e902649/vga/mp4.mp4" } }, "vga_webm": { "width": 640, "height": 480, "length": null, "media_type": "webm", "name": "vga_webm", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-911fc52c-696f-44bd-910e-97945e902649/vga/webm.webm" } }, "vga_thumb": { "width": 320, "height": 240, "length": null, "media_type": "small_thumb", "name": "vga_thumb", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-911fc52c-696f-44bd-910e-97945e902649/vga/small_thumb.png" } } } }, { "uuid": "i-4445bc8c-96c5-420b-b5b2-d4653a14d7ce", "preview_thumbnail_url": "https://www.cameratag.com/assets/i-4445bc8c-96c5-420b-b5b2-d4653a14d7ce/photo.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/i-4445bc8c-96c5-420b-b5b2-d4653a14d7ce/photo.jpg", "state": "approved", "name": null, "description": null, "type": "Photo", "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "camera_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "medias": { "photo": { "width": 640, "height": 480, "length": null, "media_type": "photo", "name": "photo", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/i-4445bc8c-96c5-420b-b5b2-d4653a14d7ce.jpg" } } } }, { "uuid": "au-263e9822-d532-411b-b80a-1004540c01a1", "mp3_url": "https://www.cameratag.com/assets/au-263e9822-d532-411b-b80a-1004540c01a1/mp3.mp3", "waveform_url": "https://www.cameratag.com/assets/au-263e9822-d532-411b-b80a-1004540c01a1/waveform.jpg", "negative_waveform_url": "https://www.cameratag.com/assets/au-263e9822-d532-411b-b80a-1004540c01a1/negative_waveform.png", "preview_thumbnail_url": "https://www.cameratag.com/assets/au-263e9822-d532-411b-b80a-1004540c01a1/waveform.jpg", "state": "approved", "name": "Demo Sound", "description": null, "type": "Audio", "params": null, "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "captions": [ ], "medias": { "mp3": { "width": null, "height": null, "length": 32, "media_type": "mp3", "name": "mp3", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/au-263e9822-d532-411b-b80a-1004540c01a1/mp3/mp3.mp3" } }, "waveform": { "width": 2000, "height": 375, "length": 32, "media_type": "waveform", "name": "waveform", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/au-263e9822-d532-411b-b80a-1004540c01a1/png/waveform.png" } }, "negative_waveform": { "width": 2000, "height": 375, "length": 32, "media_type": "negative_waveform", "name": "negative_waveform", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/au-263e9822-d532-411b-b80a-1004540c01a1/png/negative_waveform.png" } } } }, { "uuid": "v-e39184e5-3e3c-4af3-ab53-daa55ee6734c", "preview_thumbnail_url": "https://www.cameratag.com/assets/v-e39184e5-3e3c-4af3-ab53-daa55ee6734c/vga_thumb.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-e39184e5-3e3c-4af3-ab53-daa55ee6734c/vga_thumb.jpg", "preview_mp4_url": "https://www.cameratag.com/assets/v-e39184e5-3e3c-4af3-ab53-daa55ee6734c/vga_mp4.mp4", "preview_webm_url": "https://www.cameratag.com/assets/v-e39184e5-3e3c-4af3-ab53-daa55ee6734c/vga_webm.webm", "state": "approved", "name": "Nombre", "description": "Esto Es Un Description", "type": "Video", "ad_server_type": null, "ad_server_url": null, "params": null, "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "medias": { "vga_mp4": { "width": 640, "height": 480, "length": 60, "media_type": "mp4", "name": "vga_mp4", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-e39184e5-3e3c-4af3-ab53-daa55ee6734c/vga/mp4.mp4" } }, "vga_webm": { "width": 640, "height": 480, "length": null, "media_type": "webm", "name": "vga_webm", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-e39184e5-3e3c-4af3-ab53-daa55ee6734c/vga/webm.webm" } }, "vga_filmstrip": { "width": 640, "height": 480, "length": 30, "media_type": "filmstrip", "name": "vga_filmstrip", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-e39184e5-3e3c-4af3-ab53-daa55ee6734c/vga/filmstrip.jpg" } }, "vga_thumb": { "width": 640, "height": 480, "length": null, "media_type": "thumb", "name": "vga_thumb", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-e39184e5-3e3c-4af3-ab53-daa55ee6734c/vga/thumb.jpg" } } } }, { "uuid": "v-6068e597-1cc3-469c-bb8d-d91722a8e3ae", "preview_thumbnail_url": "https://www.cameratag.com/assets/v-6068e597-1cc3-469c-bb8d-d91722a8e3ae/vga_thumb.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-6068e597-1cc3-469c-bb8d-d91722a8e3ae/vga_thumb.jpg", "preview_mp4_url": "https://www.cameratag.com/assets/v-6068e597-1cc3-469c-bb8d-d91722a8e3ae/vga_mp4.mp4", "preview_webm_url": "https://www.cameratag.com/assets/v-6068e597-1cc3-469c-bb8d-d91722a8e3ae/vga_webm.webm", "state": "approved", "name": "Nombre", "description": "Esto Es Un Description", "type": "Video", "ad_server_type": null, "ad_server_url": null, "params": null, "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "medias": { "vga_mp4": { "width": 640, "height": 480, "length": 30, "media_type": "mp4", "name": "vga_mp4", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-6068e597-1cc3-469c-bb8d-d91722a8e3ae/vga/mp4.mp4" } }, "vga_webm": { "width": 640, "height": 480, "length": null, "media_type": "webm", "name": "vga_webm", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-6068e597-1cc3-469c-bb8d-d91722a8e3ae/vga/webm.webm" } }, "vga_filmstrip": { "width": 640, "height": 480, "length": 30, "media_type": "filmstrip", "name": "vga_filmstrip", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-6068e597-1cc3-469c-bb8d-d91722a8e3ae/vga/filmstrip.jpg" } }, "vga_thumb": { "width": 640, "height": 480, "length": null, "media_type": "thumb", "name": "vga_thumb", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-6068e597-1cc3-469c-bb8d-d91722a8e3ae/vga/thumb.jpg" } } } }, { "uuid": "v-c5ce8710-65ec-4a9f-91e1-0d9c704f1caf", "preview_thumbnail_url": "https://www.cameratag.com/assets/v-c5ce8710-65ec-4a9f-91e1-0d9c704f1caf/vga_thumb.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-c5ce8710-65ec-4a9f-91e1-0d9c704f1caf/vga_thumb.jpg", "preview_mp4_url": "https://www.cameratag.com/assets/v-c5ce8710-65ec-4a9f-91e1-0d9c704f1caf/vga_mp4.mp4", "preview_webm_url": "https://www.cameratag.com/assets/v-c5ce8710-65ec-4a9f-91e1-0d9c704f1caf/vga_webm.webm", "state": "approved", "name": "Nombre", "description": "Esto Es Un Description", "type": "Video", "ad_server_type": null, "ad_server_url": null, "params": null, "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73", "medias": { "vga_mp4": { "width": 640, "height": 480, "length": 3, "media_type": "mp4", "name": "vga_mp4", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-c5ce8710-65ec-4a9f-91e1-0d9c704f1caf/vga/mp4.mp4" } }, "vga_webm": { "width": 640, "height": 480, "length": null, "media_type": "webm", "name": "vga_webm", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-c5ce8710-65ec-4a9f-91e1-0d9c704f1caf/vga/webm.webm" } }, "vga_filmstrip": { "width": 640, "height": 480, "length": 30, "media_type": "filmstrip", "name": "vga_filmstrip", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-c5ce8710-65ec-4a9f-91e1-0d9c704f1caf/vga/filmstrip.jpg" } }, "vga_thumb": { "width": 640, "height": 480, "length": null, "media_type": "thumb", "name": "vga_thumb", "state": "COMPLETED", "urls": { "cameratag": "https://cameratag.com/downloads/v-c5ce8710-65ec-4a9f-91e1-0d9c704f1caf/vga/thumb.jpg" } } } }, { "uuid": "v-19c323d8-91b4-414c-9628-8e9e56376482", "preview_thumbnail_url": "https://www.cameratag.com/assets/v-19c323d8-91b4-414c-9628-8e9e56376482/vga_thumb.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-19c323d8-91b4-414c-9628-8e9e56376482/vga_thumb.jpg", "preview_mp4_url": "https://www.cameratag.com/assets/v-19c323d8-91b4-414c-9628-8e9e56376482/720p.mp4", "preview_webm_url": "https://cameratag.com/videos/v-eed31052-1072-4457-bb62-aa49687e2be9/720p/mp4.mp4", "state": "approved", "name": "Demo Recording", "description": "Thank you for looking at CameraTag", "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": 3, "media_type": "mp4", "name": "720p", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/assets/v-19c323d8-91b4-414c-9628-8e9e56376482/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-19c323d8-91b4-414c-9628-8e9e56376482/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-19c323d8-91b4-414c-9628-8e9e56376482/vga_filmstrip.jpg" } }, "en_captions": { "width": null, "height": null, "length": 3, "media_type": "caption", "name": "en_captions", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/assets/v-19c323d8-91b4-414c-9628-8e9e56376482/en_captions.VTT" } } } }, { "uuid": "v-02502969-2a28-49c7-b5ca-d7b1f823bb9a", "preview_thumbnail_url": "https://www.cameratag.com/assets/v-02502969-2a28-49c7-b5ca-d7b1f823bb9a/vga_thumb.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-02502969-2a28-49c7-b5ca-d7b1f823bb9a/vga_thumb.jpg", "preview_mp4_url": "https://www.cameratag.com/assets/v-02502969-2a28-49c7-b5ca-d7b1f823bb9a/720p.mp4", "preview_webm_url": "https://cameratag.com/videos/v-eed31052-1072-4457-bb62-aa49687e2be9/720p/mp4.mp4", "state": "approved", "name": "Demo Recording", "description": "Thank you for looking at CameraTag", "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": 8, "media_type": "mp4", "name": "720p", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/assets/v-02502969-2a28-49c7-b5ca-d7b1f823bb9a/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-02502969-2a28-49c7-b5ca-d7b1f823bb9a/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-02502969-2a28-49c7-b5ca-d7b1f823bb9a/vga_filmstrip.jpg" } }, "en_captions": { "width": null, "height": null, "length": 7, "media_type": "caption", "name": "en_captions", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/assets/v-02502969-2a28-49c7-b5ca-d7b1f823bb9a/en_captions.VTT" } } } }, { "uuid": "v-a2aebc3a-4517-4201-bae7-bbf1d34ceeef", "preview_thumbnail_url": "https://www.cameratag.com/assets/v-a2aebc3a-4517-4201-bae7-bbf1d34ceeef/vga_thumb.jpg", "preview_full_thumbnail_url": "https://www.cameratag.com/assets/v-a2aebc3a-4517-4201-bae7-bbf1d34ceeef/vga_thumb.jpg", "preview_mp4_url": "https://www.cameratag.com/assets/v-a2aebc3a-4517-4201-bae7-bbf1d34ceeef/720p.mp4", "preview_webm_url": "https://cameratag.com/videos/v-eed31052-1072-4457-bb62-aa49687e2be9/720p/mp4.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": 30, "media_type": "mp4", "name": "720p", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/assets/v-a2aebc3a-4517-4201-bae7-bbf1d34ceeef/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-a2aebc3a-4517-4201-bae7-bbf1d34ceeef/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-a2aebc3a-4517-4201-bae7-bbf1d34ceeef/vga_filmstrip.jpg" } }, "vertical": { "width": 720, "height": 1280, "length": 30, "media_type": "mp4", "name": "vertical", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/assets/v-a2aebc3a-4517-4201-bae7-bbf1d34ceeef/vertical.mp4" } }, "en_captions": { "width": null, "height": null, "length": 30, "media_type": "caption", "name": "en_captions", "state": "COMPLETED", "urls": { "cameratag": "https://www.cameratag.com/assets/v-a2aebc3a-4517-4201-bae7-bbf1d34ceeef/en_captions.VTT" } } } } ], "current_page": 1 }