{"info":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","description":"<html><head></head><body><p>The Vidrovr API allows users to programmatically process media and manage users and custom data, such as tags or persons.</p>\n<p>It also provides endpoints for retrieving and uploading media or creating feeds that will allow Vidrovr to ingest the data from the internet.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"25670292","collectionId":"31998f19-5bb3-4095-a93c-51940479bc99","publishedId":"2s93RRxtZm","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2023-06-08T21:39:25.000Z"},"item":[{"name":"Users","item":[{"name":"Get Users in Organization","id":"ff81ee79-b609-4493-89f9-1fbb244ac9d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/users/","description":"<p>Gets a list of users in an organization.</p>\n<blockquote>\n<p>Required user permissions: read:users</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","users",""],"host":["https://api.vidrovr.com"],"query":[],"variable":[]}},"response":[{"id":"c143cdf7-1691-4ed8-abe5-79b747df8360","name":"Get Users in Organization","originalRequest":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/users/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Mar 2023 15:17:09 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"58"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"ccea690f-ff82-4a25-95c1-4a0fee99b670\"\n        }\n    ]\n}"}],"_postman_id":"ff81ee79-b609-4493-89f9-1fbb244ac9d6"},{"name":"Get User Details","id":"0ec6502b-f97d-4b3c-8cc3-5900745a1a5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/users/:user_id","description":"<p>Gets information about a specific user in an organization. Including:</p>\n<ul>\n<li><code>id</code>: the unique user id</li>\n<li><code>email</code>: email address of the user</li>\n<li><code>auth0_id</code>: the users id in Auth0</li>\n<li><code>organization_name</code>: name of the organization this user belongs to</li>\n<li><code>organization_id</code>: unique id of the organization this user belongs to</li>\n<li><code>organization_creation_date</code>: creation date of the organization this user belongs to</li>\n<li><code>organization_status</code>: Vidrovr subscription status of the organization this user belongs to</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:users</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","users",":user_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>User Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"user_id"}]}},"response":[{"id":"206f45f8-d32d-464c-ba70-071216ee7259","name":"Get User Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/users/:user_id","host":["https://api.vidrovr.com"],"path":["v2","users",":user_id"],"variable":[{"key":"user_id","value":"ccea690f-ff82-4a25-95c1-4a0fee99b670"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Mar 2023 15:19:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"336"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"ccea690f-ff82-4a25-95c1-4a0fee99b670\",\n        \"email\": \"demo+api+docs@vidrovr.com\",\n        \"auth0_id\": \"auth0|6421dbf772c885b94f3c1ef6\",\n        \"organization_name\": \"My Organization\",\n        \"organization_id\": \"dabbbbec-674c-4f38-92cb-2cbf148a9561\",\n        \"organization_creation_date\": \"2023-03-27T18:10:01.328925\",\n        \"organization_status\": \"Free Trial\"\n    }\n}"}],"_postman_id":"0ec6502b-f97d-4b3c-8cc3-5900745a1a5b"},{"name":"Get User Tokens","id":"7b1699fb-f0f5-41f6-8a72-f7b58596548d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/users/:user_id/tokens","description":"<p>Begins the process of creating a user-specific API access token. Generates an internal id that can be used as a key to receive a user-specific API access token via the POST request described next.</p>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:tokens</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","users",":user_id","tokens"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>User Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"user_id"}]}},"response":[{"id":"ee6701dc-2cf1-4e01-a53d-ea6d1d6404c2","name":"Get User Tokens","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/users/:user_id/tokens","host":["https://api.vidrovr.com"],"path":["v2","users",":user_id","tokens"],"variable":[{"key":"user_id","value":"ccea690f-ff82-4a25-95c1-4a0fee99b670"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Mar 2023 15:19:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"130"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"15936470-661e-4897-968b-ea5a5d66e9be\",\n            \"name\": \"API Docs Demo\",\n            \"creation_date\": \"2023-03-28 15:13:09.033333\",\n            \"is_active\": true\n        }\n    ]\n}"}],"_postman_id":"7b1699fb-f0f5-41f6-8a72-f7b58596548d"},{"name":"Create User Token","id":"79b701f7-a12a-4a1b-ad13-f989df37d57c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\":{\n        \"name\":\"Demo API Key\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/users/:user_id/tokens/","description":"<p>Begins the process of creating a user-specific API access token. Generates an internal id that can be used as a key to receive a user-specific API access token via the POST request described next.</p>\n<blockquote>\n<p><strong>Required user permissions:</strong> create:tokens</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","users",":user_id","tokens",""],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>User Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"user_id"}]}},"response":[{"id":"ed5ab321-3042-4f98-ba56-b2b6a0628027","name":"Create User Token","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\":{\n        \"name\":\"Demo API Key\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.vidrovr.com/v2/users/:user_id/tokens/","host":["https://api.vidrovr.com"],"path":["v2","users",":user_id","tokens",""],"variable":[{"key":"user_id","value":"ccea690f-ff82-4a25-95c1-4a0fee99b670"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 18:11:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"181"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"c6affae8-64e2-41a5-a1b2-f6fe9220b834\",\n        \"name\": \"Demo API Key\",\n        \"creation_date\": \"2023-06-09T14:50:03.343559\",\n        \"api_key\": \"d5856b2b-d65a-4d16-8053-9fe29c5312ee\",\n        \"is_active\": true\n    }\n}"}],"_postman_id":"79b701f7-a12a-4a1b-ad13-f989df37d57c"}],"id":"87b41ad5-8d5a-4710-97bc-e8374c6a36f5","description":"<p>The <strong>Users API</strong> allows you to view information about the Users in your Organization. For example, Rovrvid might be an Organization subscribed to Vidrovr. Rovrvid has multiple Users (Jane Doe and John Doe), who all use Vidrovr.</p>\n<p>With the Users API, Rovrvid, may see the list of their Users, details about those Users, and manage API access tokens for their Users.</p>\n","_postman_id":"87b41ad5-8d5a-4710-97bc-e8374c6a36f5","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}}},{"name":"Feeds","item":[{"name":"Get Feeds","id":"0a701ecf-dc20-4123-a900-65fae55ad663","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/feeds/?project_uid=","description":"<p>Returns a list of all feeds created by the user, including the name and the unique identifier of the feed.</p>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeds</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","feeds",""],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""}],"variable":[]}},"response":[{"id":"1b133a80-cc98-4c5e-a2a7-de37a512eeff","name":"Get Feeds","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/feeds/?project_uid={{project_uid}}","host":["https://api.vidrovr.com"],"path":["v2","feeds",""],"query":[{"key":"project_uid","value":"{{project_uid}}","description":"User's project Id (required)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Mar 2023 18:28:25 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"297"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"468dbce7-144c-4d23-8a8f-a18730abbd1f\",\n            \"name\": \"BadlandsNPS\"\n        },\n        {\n            \"id\": \"96a341cc-8e64-4a89-aa82-86d77f382e94\",\n            \"name\": \"NPS Youtube\"\n        },\n        {\n            \"id\": \"3b37f45b-829a-4943-9c51-d3107620493f\",\n            \"name\": \"NatlParkService\"\n        },\n        {\n            \"id\": \"bcb4bb58-2d6e-41bf-ab6d-36d93f338719\",\n            \"name\": \"weratedogs\"\n        }\n    ]\n}"}],"_postman_id":"0a701ecf-dc20-4123-a900-65fae55ad663"},{"name":"Create Feed","id":"e7e326e7-be00-4127-8a93-29caf651e1bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"feed_type\": \"facebook_profile\",\n        \"name\": \"CBS FB\",\n        \"profile\": CBS,\n        \"hashtag\": \"null\",\n        \"polling_frequency\": 604800,\n        \"project_uids\": [\n            {{project_uid}}\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/feeds/","description":"<p>Creates a feed which Vidrovr will poll to ingest data into the system.</p>\n<p>Vidrovr supports a number of feed types:</p>\n<ul>\n<li><p>Youtube Channels (by channel ID or username)</p>\n</li>\n<li><p>Instagram Profiles</p>\n</li>\n<li><p>Instagram Hashtags</p>\n</li>\n<li><p>HLS encoded Livestreams</p>\n</li>\n<li><p>Facebook Profiles</p>\n</li>\n</ul>\n<p>More feed types are coming soon, if you have a request for a new feed type, please email <a href=\"https://mailto:support@vidrovr.com\">support@vidrovr.com</a></p>\n<p>All calls must have the required arguments <code>feed_type</code> , <code>name</code>, <code>polling_frequency</code> and <code>project_uids</code>. However, each feed type has it's own required argument that is specific to that feed type. These arguments are delineated below.</p>\n<ul>\n<li><p><strong>Youtube</strong>: <code>\"feed_type\": \"youtube\"</code></p>\n<ul>\n<li><p>Required parameter is <code>youtube_url</code>. This is the channel's url</p>\n</li>\n<li><p>Example: <code>\"youtube_url\": \"https://www.youtube.com/@CBSNewYork\"</code></p>\n</li>\n</ul>\n</li>\n<li><p><strong>Instagram Profile</strong>: <code>\"feed_type\": \"instagram_profile\"</code></p>\n<ul>\n<li><p>Required parameter is <code>profile</code>. This is the Instagram account handle, without the \"@\"</p>\n</li>\n<li><p>Example: <code>\"profile\": \"aljazeeraenglish\"</code></p>\n</li>\n</ul>\n</li>\n<li><p><strong>Instagram Hashtag:</strong> <code>\"feed_type\": \"instagram_hashtag\"</code></p>\n<ul>\n<li><p>Required parameter is <code>hashtag</code>. This is name of the hashtag, without the \"#\"</p>\n</li>\n<li><p>Example: <code>\"hashtag\": \"uap\"</code></p>\n</li>\n</ul>\n</li>\n<li><p><strong>Facebook Profile:</strong> <code>\"feed_type\": \"facebook_profile\"</code></p>\n<ul>\n<li><p>Required parameter is <code>profile</code>. This is the profile name, sometimes it is shown in the profile information section, prepended with an \"@\" and it is always in the url, after <code>facebook.com/</code>. Please provide the name without \"@\" or any \"/\"</p>\n</li>\n<li><p>Example: <code>\"profile\": CBS\"</code></p>\n</li>\n</ul>\n</li>\n<li><p><strong>HLS Stream Link</strong>: <code>\"feed_type\": \"hls\"</code></p>\n<ul>\n<li><p>Required parameter is <code>hls_link</code>. This is the url of the stream</p>\n</li>\n<li><p>Example: <code>\"hls_link\": \"http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/sl.m3u8\"</code></p>\n</li>\n</ul>\n</li>\n</ul>\n<p>The remaining shared required arguments are:</p>\n<ul>\n<li><p><code>name</code>: A string with the name you will identify your feed</p>\n<ul>\n<li>Example: <code>\"name\": \"CBS Facebook Profile\"</code></li>\n</ul>\n</li>\n<li><p><code>polling_frequency</code>: Number in seconds in which you would like Vidrovr to check for new content. Minimum is 3600 seconds. This field is not required for hls feed_type, since livestreams need a schedule - which can be set with the Create Feed Schedule endpoint.</p>\n<ul>\n<li>Example: <code>\"polling_frequency\": 86400</code></li>\n</ul>\n</li>\n<li><p>project_uids: Array of strings with the unique ids of the projects you would like this feed to be created for.</p>\n<ul>\n<li>Example: <code>\"project_uids\":[\"18f0206b-74ea-4633-8a5b-04a79f2be2f6\"]</code></li>\n</ul>\n</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> create:feeds</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","feeds",""],"host":["https://api.vidrovr.com"],"query":[],"variable":[]}},"response":[{"id":"ec4a8a25-ff61-423f-904e-b70e2e063a19","name":"Create Youtube Feed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"feed_type\": \"youtube\",\n        \"name\": \"CBS NY YT\",\n        \"youtube_url\": \"https://www.youtube.com/@CBSNewYork\",\n        \"polling_frequency\": 604800,\n        \"project_uids\": [\"74888693-c08a-40c4-becb-6966567b3877\"]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/feeds/"},"status":"OK","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Feb 2023 18:24:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"77"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"https://app.dev.vidrovr.com"},{"key":"access-control-allow-credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"86d89a58-4756-4942-9a65-ad4ea759feba\",\n        \"name\": \"CBS NY YT\"\n    }\n}"},{"id":"4cde0ce9-5e3a-4342-9ce2-0acfd711fe03","name":"Create Instagram User Feed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"feed_type\": \"instagram_profile\",\n        \"name\": \"AJ English IG\",\n        \"profile\": \"aljazeeraenglish\",\n        \"hashtag\": null,\n        \"polling_frequency\": 86400,\n        \"project_uids\": [\"74888693-c08a-40c4-becb-6966567b3877\"]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/feeds/"},"status":"OK","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Feb 2023 18:27:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"81"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"https://app.dev.vidrovr.com"},{"key":"access-control-allow-credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"4c010cbf-7291-4626-a3ab-f50564c10a9d\",\n        \"name\": \"AJ English IG\"\n    }\n}"},{"id":"4d768c3f-251a-46fe-99c9-f3731476008f","name":"Create Instagram Hashtag Feed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"feed_type\": \"instagram_hashtag\",\n        \"name\": \"UFO Reels\",\n        \"profile\": null,\n        \"hashtag\": \"uap\",\n        \"polling_frequency\": 604800,\n        \"project_uids\": [\"74888693-c08a-40c4-becb-6966567b3877\"]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/feeds/"},"status":"OK","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Feb 2023 18:29:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"77"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"https://app.dev.vidrovr.com"},{"key":"access-control-allow-credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"c1ad1c41-c117-4788-bc1e-58e3baaabf6b\",\n        \"name\": \"UFO Reels\"\n    }\n}"},{"id":"6860a538-e3e7-4937-bfbb-b702cc779ae4","name":"Create Facebook Profile Feed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"feed_type\": \"facebook_profile\",\n        \"name\": \"CBS Fb\",\n        \"profile\": \"CBS\",\n        \"polling_frequency\": 604800,\n        \"project_uids\": [\"74888693-c08a-40c4-becb-6966567b3877\"]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/feeds/"},"status":"OK","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Feb 2023 18:31:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"74"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"https://app.dev.vidrovr.com"},{"key":"access-control-allow-credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"53cb1bb0-d29e-4819-8be5-724938cb88c0\",\n        \"name\": \"CBS Fb\"\n    }\n}"},{"id":"35c80d56-3773-425a-806b-789eee8fb8c4","name":"Create HLS  Feed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"feed_type\": \"hls\",\n        \"name\": \"Apple Live\",\n        \"hls_link\": \"http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/sl.m3u8\",\n        \"media_type\": \"video\",\n        \"sample_rate\": \"1\", // ignored if \"video\" is media_type\n        \"segment_length\": 300,\n        \"project_uids\": [\"74888693-c08a-40c4-becb-6966567b3877\"]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/feeds/"},"status":"OK","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Feb 2023 18:49:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"78"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"https://app.dev.vidrovr.com"},{"key":"access-control-allow-credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"ecafefe8-7aab-4f0e-a828-8088ba8697f6\",\n        \"name\": \"Apple Live\"\n    }\n}"},{"id":"b330e547-5b9c-4f12-a2f2-79261bdbcd6e","name":"Create RTMP Feed","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"feed_type\": \"rtmp\",\n        \"name\": \"RTMP Live\",\n        \"rtmp_link\": \"rtmp://<your server ip>/live/<streamkey>\",\n        \"media_type\": \"video\",\n        \"sample_rate\": \"1\", // ignored if \"video\" is media_type\n        \"segment_length\": 300,\n        \"project_uids\": [\"74888693-c08a-40c4-becb-6966567b3877\"]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/feeds/"},"status":"OK","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Feb 2023 18:49:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"78"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"https://app.dev.vidrovr.com"},{"key":"access-control-allow-credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"ecafefe8-7aab-4f0e-a828-8088ba8697f6\",\n        \"name\": \"Apple Live\"\n    }\n}"},{"id":"da359e82-ae51-4597-916e-fbd70bfacb69","name":"Feed exists","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"data\":{\n        \"feed_type\": \"twitter_profile\",\n        \"name\": \"Food Safety & Inspection Service\",\n        \"profile\": \"USDAFoodSafety\",\n        \"hashtag\": null,\n        \"polling_frequency\": 86400,\n        \"project_uids\":[\"74888693-c08a-40c4-becb-6966567b3877\"]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/feeds/"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Mar 2023 18:37:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"121"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": \"409\",\n            \"title\": \"Resource exists.\",\n            \"detail\": \"The resource you tried to create already exists\"\n        }\n    ]\n}"}],"_postman_id":"e7e326e7-be00-4127-8a93-29caf651e1bd"},{"name":"Get Feed Details","id":"4924ff2a-03fc-4317-b87c-ecab919b1a73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"default"}],"url":"https://api.vidrovr.com/v2/feeds/:feed_id?project_uid=","description":"<p>Returns relevant information about the provided feed id, such as:</p>\n<ul>\n<li><code>type</code> : i.e. twitter profile/hashtag, youtube, instagram profile/hashtag, facebook, hls</li>\n<li><code>id</code> : unique id of the feed</li>\n<li><code>creation_date</code> : date feed was created</li>\n<li><code>is_active</code>: If the feed is turned on or off</li>\n<li><code>name</code> : name assigned to the feed at creation</li>\n<li><code>next_poll_date</code>: Next time data will be collected from the feed, if its is_active property is true, in UTC</li>\n<li><code>num_feed_items</code>: Number of assets ingested from the feed into the VIdrovr system</li>\n<li><code>polling_frequency</code>: How often will the feed be polled, in seconds</li>\n<li><code>query_parameters</code>: Includes the url/profile/hashtag of the feed</li>\n<li><code>status</code> : If the feed is being processed or not</li>\n<li><code>updated_date</code> : date changes were made to the feed</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeds</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","feeds",":feed_id"],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""}],"variable":[{"description":{"content":"<p>Feed Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"feed_id"}]}},"response":[{"id":"5cfe5341-a729-4b62-8c8d-da24d145264c","name":"Get Feed Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"default"}],"url":{"raw":"https://api.vidrovr.com/v2/feeds/:feed_id?project_uid={{project_uid}}","protocol":"https","host":["api","vidrovr","com"],"path":["v2","feeds",":feed_id"],"query":[{"key":"project_uid","value":"{{project_uid}}"}],"variable":[{"key":"feed_id","value":"468dbce7-144c-4d23-8a8f-a18730abbd1f"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Mar 2023 18:31:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"445"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"facebook_profile\",\n        \"id\": \"468dbce7-144c-4d23-8a8f-a18730abbd1f\",\n        \"additional_metadata\": null,\n        \"creation_date\": \"2023-03-27T18:26:09.814335\",\n        \"is_active\": true,\n        \"name\": \"BadlandsNPS\",\n        \"next_poll_date\": \"2023-03-27T18:26:09.806609\",\n        \"num_feed_items\": 0,\n        \"polling_frequency\": 604800,\n        \"priority\": 0,\n        \"query_parameters\": {\n            \"profile\": \"BadlandsNPS\",\n            \"posts_number\": 20\n        },\n        \"status\": \"OFF\",\n        \"updated_date\": \"2023-03-28T13:47:50.298144\"\n    }\n}"}],"_postman_id":"4924ff2a-03fc-4317-b87c-ecab919b1a73"},{"name":"Delete Feed","id":"fc22cc25-dc9d-42e6-aab3-50bc2686f468","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.vidrovr.com/v2/feeds/:feed_id?project_uid=","description":"<p>Deletes a Feed from the Project, the media assets from that feed will not be deleted.</p>\n<blockquote>\n<p><strong>Required user permissions:</strong> delete:feeds</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","feeds",":feed_id"],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""}],"variable":[{"description":{"content":"<p>Feed Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"feed_id"}]}},"response":[{"id":"f6d03073-1cda-48c4-855c-2f1814812486","name":"Delete Feed","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.vidrovr.com/v2/feeds/:feed_id?project_uid={{project_uid}}","host":["https://api.vidrovr.com"],"path":["v2","feeds",":feed_id"],"query":[{"key":"project_uid","value":"{{project_uid}}"}],"variable":[{"key":"feed_id","value":"77c77cb3-ae7d-454d-afd2-798214e8b14e"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 18:40:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"73"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"feeds\",\n        \"id\": \"77c77cb3-ae7d-454d-afd2-798214e8b14e\"\n    }\n}"}],"_postman_id":"fc22cc25-dc9d-42e6-aab3-50bc2686f468"},{"name":"Change Feed Status","id":"38fe9091-adf1-4498-8f8c-af41243e49b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"is_active\": false,\n        \"project_uid\": \"{{project_uid}}\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/feeds/:feed_id","description":"<p>Change the <code>is_active</code> property of a Feed. If set to <code>false</code>, Vidrovr will not ingest data from that Feed. When set to <code>true</code>, Vidrovr will start polling media as scheduled in the Feed.</p>\n<blockquote>\n<p><strong>Required user permissions:</strong> update:feeds</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","feeds",":feed_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Feed Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"feed_id"}]}},"response":[{"id":"4785c6e9-751a-44b8-afe7-026768f27294","name":"Change Feed Status","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"is_active\": false,\n        \"project_uid\": \"74888693-c08a-40c4-becb-6966567b3877\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.vidrovr.com/v2/feeds/:feed_id","host":["https://api.vidrovr.com"],"path":["v2","feeds",":feed_id"],"variable":[{"key":"feed_id","value":"468dbce7-144c-4d23-8a8f-a18730abbd1f"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 28 Mar 2023 18:41:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"446"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"twitter_profile\",\n        \"id\": \"468dbce7-144c-4d23-8a8f-a18730abbd1f\",\n        \"additional_metadata\": null,\n        \"creation_date\": \"2023-03-27T18:26:09.814335\",\n        \"is_active\": false,\n        \"name\": \"BadlandsNPS\",\n        \"next_poll_date\": \"2023-03-27T18:26:09.806609\",\n        \"num_feed_items\": 0,\n        \"polling_frequency\": 604800,\n        \"priority\": 0,\n        \"query_parameters\": {\n            \"profile\": \"BadlandsNPS\",\n            \"posts_number\": 20\n        },\n        \"status\": \"OFF\",\n        \"updated_date\": \"2023-03-28T18:41:06.393518\"\n    }\n}"}],"_postman_id":"38fe9091-adf1-4498-8f8c-af41243e49b6"},{"name":"Create Feed Schedule","id":"0d67aa92-56f5-4a4e-9e4d-454691a6c7b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"start_time\": \"00:00\",\n        \"end_time\": \"23:59\",\n        \"day_of_week\": \"monday\",\n        \"project_uid\": {{project_uid}}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/feeds/:feed_id/schedules","description":"<p>For HLS Feeds, a specified schedule is needed. You can provide as many as you need.</p>\n<p>If you'd like to poll the feed always, you'd need to create 7 schedules, one for each day, with start and end times to cover the whole day, see this example for monday:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"start_time\": \"00:00\",\n    \"end_time\": \"23:59\",\n    \"day_of_week\": \"monday\"\n}\n\n</code></pre>\n<p><strong>Note:</strong></p>\n<blockquote>\n<p><strong>The start and end times MUST be in UTC</strong></p>\n</blockquote>\n<blockquote>\n<p><strong>Required user permissions:</strong> create:feeds</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","feeds",":feed_id","schedules"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"type":"any","value":"24035311-a185-400e-a2b4-29934b3acf32","key":"feed_id"}]}},"response":[{"id":"81b5cfbf-1375-40b4-a7af-df0e3d91b339","name":"Create feed schedule","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"start_time\": \"00:00\",\n        \"end_time\": \"23:59\",\n        \"day_of_week\": \"monday\",\n        \"project_uid\": \"74888693-c08a-40c4-becb-6966567b3877\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.vidrovr.com/v2/feeds/:feed_id/schedules","host":["https://api.vidrovr.com"],"path":["v2","feeds",":feed_id","schedules"],"variable":[{"key":"feed_id","value":"24035311-a185-400e-a2b4-29934b3acf32"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 17 Feb 2023 03:07:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"56"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"https://app.dev.vidrovr.com"},{"key":"access-control-allow-credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"21a7960c-cf71-4aff-90eb-3e490528a6e8\"\n    }\n}"}],"_postman_id":"0d67aa92-56f5-4a4e-9e4d-454691a6c7b7"},{"name":"Get Feed Schedules","id":"8ad18eb1-85bf-4da9-84e5-a261262140af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/feeds/:feed_id/schedules/?project_uid=","description":"<p>Returns relevant information about the given Feed Schedule Id, such as:</p>\n<ul>\n<li><code>id</code> : unique id of the schedule</li>\n<li><code>day_of_week</code> : which day of the week does the feed poll</li>\n<li><code>start_time</code> : when to starg polling</li>\n<li><code>end_time</code> : when to stop polling</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeds</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","feeds",":feed_id","schedules",""],"host":["https://api.vidrovr.com"],"query":[{"key":"project_uid","value":""}],"variable":[{"id":"f8d15ed2-0c31-4ecb-93eb-9ec59ea05d7b","description":{"content":"<p>Feed Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"feed_id"}]}},"response":[{"id":"f556f652-db72-4310-87a5-dafde4809b3e","name":"Get Feed Schedules","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/feeds/:feed_id/schedules/?project_uid=74888693-c08a-40c4-becb-6966567b3877","host":["https://api.vidrovr.com"],"path":["v2","feeds",":feed_id","schedules",""],"query":[{"key":"project_uid","value":"74888693-c08a-40c4-becb-6966567b3877"}],"variable":[{"key":"feed_id","value":"24035311-a185-400e-a2b4-29934b3acf32"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 21:45:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"131"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"8fc6282c-0fb9-4703-8621-ec619b9f6d99\"\n        }\n    ]\n}"}],"_postman_id":"8ad18eb1-85bf-4da9-84e5-a261262140af"},{"name":"Get Feed Schedule Details","id":"bd74caa5-6667-4099-a034-cacfc6b2513d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/feeds/:feed_id/schedules/:feed_schedule_id/?project_uid=","description":"<p>Returns relevant information about the given Feed Schedule Id, such as:</p>\n<ul>\n<li><code>id</code> : unique id of the schedule</li>\n<li><code>day_of_week</code> : which day of the week does the feed poll</li>\n<li><code>start_time</code> : when to starg polling</li>\n<li><code>end_time</code> : when to stop polling</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeds</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","feeds",":feed_id","schedules",":feed_schedule_id",""],"host":["https://api.vidrovr.com"],"query":[{"key":"project_uid","value":""}],"variable":[{"description":{"content":"<p>Feed Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"feed_id"},{"description":{"content":"<p>Feed Schedule Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"feed_schedule_id"}]}},"response":[{"id":"f655c0f3-5ef6-41fb-a333-5daff7958b07","name":"Get Feed Schedule Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/feeds/:feed_id/schedules/:feed_schedule_id/?project_uid=74888693-c08a-40c4-becb-6966567b3877","host":["https://api.vidrovr.com"],"path":["v2","feeds",":feed_id","schedules",":feed_schedule_id",""],"query":[{"key":"project_uid","value":"74888693-c08a-40c4-becb-6966567b3877"}],"variable":[{"key":"feed_id","value":"24035311-a185-400e-a2b4-29934b3acf32"},{"key":"feed_schedule_id","value":"8fc6282c-0fb9-4703-8621-ec619b9f6d99"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 21:45:08 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"131"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"8fc6282c-0fb9-4703-8621-ec619b9f6d99\",\n        \"day_of_week\": \"FRIDAY\",\n        \"start_time\": \"05:00:00\",\n        \"end_time\": \"06:00:00\"\n    }\n}"}],"_postman_id":"bd74caa5-6667-4099-a034-cacfc6b2513d"},{"name":"Get Feed Trajectories","id":"5ce80c68-66ce-4e59-b5d3-dcc2a3237be3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/feeds/:feed_id/trajectories?project_uid=","description":"<h1 id=\"get-feed-trajectories\">Get Feed Trajectories</h1>\n<p><code>https://api.vidrovr.com/v2/feeds/:feed_id/trajectories?project_uid=</code></p>\n<p>Returns a list of geospatial points and/or trajectories associated with the feed.</p>\n<blockquote>\n<p>Required user permissions: read:feeds </p>\n</blockquote>\n<h3 id=\"query-params\">Query Params</h3>\n<ul>\n<li><p><code>project_uid</code>: User's project Id (required)</p>\n</li>\n<li><p><code>source</code> : Source of geospatial information. Options include <code>user</code> or <code>extracted</code>. Default is <code>none</code> (optional)</p>\n</li>\n<li><p><code>limit</code>: Set limit for results. If provided, must be integer. Default is <code>none</code> (optional)</p>\n</li>\n</ul>\n<h3 id=\"code-snippet\">Code Snippet</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --location 'https://api.vidrovr.com/v2/feeds/:feed_id/trajectories?project_uid=[[project_uid]]&amp;limit=1' \\\n--header 'x-api-key: [[x-api-key-masked-secret]]'\n\n</code></pre><h3 id=\"response\">Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": [\n        {\n            \"type\": \"feed_trajectories\",\n            \"id\": \"9e3025e2-81d4-4eed-b35a-1239b7518588\",\n            \"geojson\": {\n                \"type\": \"Feature\",\n                \"geometry\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        -79.047150,\n                        43.092461,\n                        614\n                    ]\n                },\n                \"properties\": {\n                    \"feed_uid\": \"549005dd-3003-4b3b-85e5-92356d8ca09f\",\n                    \"creation_date\": \"2025-02-07T20:07:55.974944\",\n                    \"updated_date\": \"2025-02-07T20:07:55.974952\",\n                    \"source\": \"user\",\n                    \"name\": \"Niagara Falls\"\n                }\n            }\n        }\n    ],\n    \"count\": 1\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","feeds",":feed_id","trajectories"],"host":["https://api.vidrovr.com"],"query":[{"key":"project_uid","value":""}],"variable":[{"type":"any","value":"","key":"feed_id"}]}},"response":[],"_postman_id":"5ce80c68-66ce-4e59-b5d3-dcc2a3237be3"},{"name":"Get Feed Trajectories Detail","id":"b397c1af-ae09-4116-b403-d838ef710197","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/feeds/:feed_id/trajectories/:trajectory_id?project_uid=","description":"<h1 id=\"get-feed-trajectories\">Get Feed Trajectories</h1>\n<p><code>https://api.vidrovr.com/v2/feeds/:feed_id/trajectories/:trajectory_id?project_uid=</code></p>\n<p>Returns a specific geospatial point and/or trajectory associated with the feed.</p>\n<blockquote>\n<p>Required user permissions: read:feeds </p>\n</blockquote>\n<h3 id=\"query-params\">Query Params</h3>\n<ul>\n<li><code>project_uid</code>: User's project Id (required)</li>\n</ul>\n<h3 id=\"code-snippet\">Code Snippet</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --location 'https://api.vidrovr.com/v2/feeds/:feed_id/trajectories/:trajectory_id?project_uid=[[project_uid]]' \\\n--header 'x-api-key: [[x-api-key-masked-secret]]'\n\n</code></pre><h3 id=\"response\">Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"type\": \"feed_trajectories\",\n        \"id\": \"9e3025e2-81d4-4aad-b35a-1239b7518588\",\n        \"geojson\": {\n            \"type\": \"Feature\",\n            \"geometry\": {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                    [\n                        125.6,\n                        10.1,\n                        150\n                    ],\n                    [\n                        121.6,\n                        10.5,\n                        200\n                    ]\n                ]\n            },\n            \"properties\": {\n                \"feed_uid\": \"549405dd-3003-4b3b-85e5-92356d8ca09f\",\n                \"creation_date\": \"2025-02-07T20:07:55.974944\",\n                \"updated_date\": \"2025-02-07T20:07:55.974952\",\n                \"source\": \"user\",\n                \"name\": \"Some Place\",\n            }\n        }\n    }\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","feeds",":feed_id","trajectories",":trajectory_id"],"host":["https://api.vidrovr.com"],"query":[{"key":"project_uid","value":""}],"variable":[{"type":"any","value":"","key":"feed_id"},{"type":"any","value":"","key":"trajectory_id"}]}},"response":[],"_postman_id":"b397c1af-ae09-4116-b403-d838ef710197"},{"name":"Create Feed Trajectories","id":"f8c54517-bc75-44aa-8ce1-d1e3afcd665e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"project_uid\": \"[[project_uid]]\",\n    \"type\": \"Feature\",\n    \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [\n            125.6,\n            10.1,\n            150\n        ]\n    },\n    \"properties\": {\n        \"name\": \"My location\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/feeds/:feed_id/trajectories","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"project_uid\": \"[[project_uid]]\",\n        \"type\": \"Feature\",\n        \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n                125.6,\n                10.1,\n                150\n            ]\n        },\n        \"properties\": {\n            \"name\": \"My location\",\n        }\n    }\n}\n\n</code></pre>\n<p><strong>Note:</strong></p>\n<ul>\n<li><p>The data body must be valid GeoJson format.</p>\n<ul>\n<li>GeoJson format requires decimal degrees format.</li>\n</ul>\n</li>\n<li><p>The coordinates must be in [longitude, latitude] order. The third coordinate value is optional and usually associated with altitude.</p>\n</li>\n<li><p>A Point requires one set of brackets []. A Linestring requires an additional set of brackets to differentiate between points. (e.g. <code>[ [lon1, lat1], [lon2, lat2], ... ]</code>)</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","feeds",":feed_id","trajectories"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"type":"any","value":"24035311-a185-400e-a2b4-29934b3acf32","key":"feed_id"}]}},"response":[],"_postman_id":"f8c54517-bc75-44aa-8ce1-d1e3afcd665e"},{"name":"Update Feed Trajectories","id":"e361ce63-19e3-4ea7-8816-2771f36298b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"project_uid\": \"[[project_uid]]\",\n    \"type\": \"Feature\",\n    \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [\n            125.6,\n            10.1,\n            150\n        ]\n    },\n    \"properties\": {\n        \"name\": \"My location\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/feeds/:feed_id/trajectories/:trajectory_id","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"project_uid\": \"[[project_uid]]\",\n        \"type\": \"Feature\",\n        \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n                125.6,\n                10.1,\n                150\n            ]\n        },\n        \"properties\": {\n            \"name\": \"My location\",\n        }\n    }\n}\n\n</code></pre>\n<p><strong>PATCH endpoint is only for appending a Point to an existing Linestring trajectory.</strong></p>\n<p>Note:</p>\n<ul>\n<li><p>The data body must be valid GeoJson format.</p>\n<ul>\n<li>GeoJson format requires decimal degrees format.</li>\n</ul>\n</li>\n<li><p>The coordinates must be in [longitude, latitude] order. The third coordinate value is optional and usually associated with altitude.</p>\n</li>\n<li><p>This endpoint only accepts Point geometry types.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","feeds",":feed_id","trajectories",":trajectory_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"type":"any","value":"24035311-a185-400e-a2b4-29934b3acf32","key":"feed_id"},{"type":"any","value":"","key":"trajectory_id"}]}},"response":[],"_postman_id":"e361ce63-19e3-4ea7-8816-2771f36298b8"},{"name":"Replace Feed Trajectories","id":"c41dac77-8591-44a8-bd1a-6f6b79ecd542","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"project_uid\": \"[[project_uid]]\",\n    \"type\": \"Feature\",\n    \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [\n            125.6,\n            10.1,\n            150\n        ]\n    },\n    \"properties\": {\n        \"name\": \"My location\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/feeds/:feed_id/trajectories/:trajectory_id","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"project_uid\": \"[[project_uid]]\",\n        \"type\": \"Feature\",\n        \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n                125.6,\n                10.1,\n                150\n            ]\n        },\n        \"properties\": {\n            \"name\": \"My location\",\n        }\n    }\n}\n\n</code></pre>\n<p><strong>PUT endpoint replaces an existing trajectory.</strong></p>\n<p>Note:</p>\n<ul>\n<li><p>The data body must be valid GeoJson format.</p>\n<ul>\n<li>GeoJson format requires decimal degrees format.</li>\n</ul>\n</li>\n<li><p>The coordinates must be in [longitude, latitude] order. The third coordinate value is optional and usually associated with altitude.</p>\n</li>\n<li><p>This endpoint accepts Points or Linestrings.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","feeds",":feed_id","trajectories",":trajectory_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"type":"any","value":"24035311-a185-400e-a2b4-29934b3acf32","key":"feed_id"},{"type":"any","value":"","key":"trajectory_id"}]}},"response":[],"_postman_id":"c41dac77-8591-44a8-bd1a-6f6b79ecd542"},{"name":"Delete Feed Trajectories","id":"3d7fc38f-cd53-49e2-a651-657216269b9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.vidrovr.com/v2/feeds/:feed_id/trajectories/:trajectory_id","description":"<p>DELETE endpoint deletes a feed trajectory.</p>\n<p><strong>WARNING:</strong> If a trajectory ID is not passed, the endpoint will delete all trajectories associated with feed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","feeds",":feed_id","trajectories",":trajectory_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"type":"any","value":"24035311-a185-400e-a2b4-29934b3acf32","key":"feed_id"},{"type":"any","value":"","key":"trajectory_id"}]}},"response":[],"_postman_id":"3d7fc38f-cd53-49e2-a651-657216269b9a"}],"id":"4e5bd88f-aaac-49e1-ba51-6d37f3679cb8","description":"<p>The <strong>Feeds API</strong> allows for the retrieval and creation of <strong>Feeds</strong>. <strong>Feeds</strong> are the main method of data ingestion in the Vidrovr pipeline. Vidrovr supports many publicly available data sources including Youtube, social networks, and live streams.</p>\n","_postman_id":"4e5bd88f-aaac-49e1-ba51-6d37f3679cb8","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}}},{"name":"Search","item":[{"name":"Get Saved Searches","id":"8d34dc4a-6a3a-43ea-b66b-802c4365c2ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/search/saved/:project_id","description":"<p>Return a list of all of the \"saved searches\" that have been stored within a specified project.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","search","saved",":project_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"type":"any","value":"","key":"project_id"}]}},"response":[{"id":"66e039a0-a012-4e33-8f4f-d69220b0cb85","name":"Get Saved Searches","originalRequest":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/search/saved/01234567-89ab-cdef-0123-456789abcdef"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 14 Jul 2024 14:23:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"626"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=dcUryJZ+IMmrLBzabS/jDrS7jIWCFlEnjvCRPVMMgnCIOrUt7Rbc7Zwf0+pcoPVRzNHE9vZOeRWAtxUM6p4wmJQX/VjtVKCk/OmEusfv0H7DcZMPRhdUUCmCA++Y; Expires=Sun, 21 Jul 2024 14:23:06 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=dcUryJZ+IMmrLBzabS/jDrS7jIWCFlEnjvCRPVMMgnCIOrUt7Rbc7Zwf0+pcoPVRzNHE9vZOeRWAtxUM6p4wmJQX/VjtVKCk/OmEusfv0H7DcZMPRhdUUCmCA++Y; Expires=Sun, 21 Jul 2024 14:23:06 GMT; Path=/; SameSite=None; Secure"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"saved_search\",\n            \"id\": \"03af6953-55d5-4050-959c-bb1f1ca8581a\",\n            \"collection\": \"appearances\",\n            \"name\": \"National Park\",\n            \"hidden\": false,\n            \"favorite\": false\n        },\n        {\n            \"type\": \"saved_search\",\n            \"id\": \"e1293d53-2d34-4cd8-a182-5476cfe875b8\",\n            \"collection\": \"appearances\",\n            \"name\": \"Uploaded Images\",\n            \"hidden\": false,\n            \"favorite\": false\n        },\n        {\n            \"type\": \"saved_search\",\n            \"id\": \"b01c8802-c91c-4319-ba6e-d3ba658be48b\",\n            \"collection\": \"appearances\",\n            \"name\": \"Facet search\",\n            \"hidden\": false,\n            \"favorite\": false\n        },\n        {\n            \"type\": \"saved_search\",\n            \"id\": \"1f908903-8213-4121-b169-b8f5cc4b5ca9\",\n            \"collection\": \"appearances\",\n            \"name\": \"Advanced OR Search\",\n            \"hidden\": false,\n            \"favorite\": false\n        }\n    ],\n    \"count\": 4\n}"}],"_postman_id":"8d34dc4a-6a3a-43ea-b66b-802c4365c2ba"},{"name":"Get Saved Search Detail","id":"8de3af6f-8894-4556-a8c7-7b78344dbded","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/search/saved/:project_id/:saved_search_id","description":"<p>Returns relevant information about the provided saved_search id, such as:</p>\n<ul>\n<li><p><code>type</code> : saved_search</p>\n</li>\n<li><p><code>id</code> : unique id of the saved_search</p>\n</li>\n<li><p><code>collection</code> : default collection in search index (<code>appearances)</code></p>\n</li>\n<li><p><code>name</code> : name assigned to the saved search</p>\n</li>\n<li><p><code>query</code>: The search query text, saved to implement the saved search within our search infrastructure</p>\n</li>\n<li><p><code>hidden</code> : boolean variable describing if the saves search should be hidden in the UI</p>\n</li>\n<li><p><code>favorite</code> : boolean variable describing whether the saved search is favorited or not</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","search","saved",":project_id",":saved_search_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"type":"any","value":"","key":"project_id"},{"type":"any","value":"","key":"saved_search_id"}]}},"response":[{"id":"04e06056-5321-41bc-bcf2-cef696d52bf4","name":"Saved Search Detail Example","originalRequest":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/search/saved/01234567-89ab-cdef-0123-456789abcdef/search67-89ab-cdef-0123-456789abcdef"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 14 Jul 2024 14:27:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"853"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=w+XdQJH9zm7/IKczsGGlUUX7KnOgUrS00XaIDuVQjM2k+9+O40LfpSztb+r1mxJo2tSaPc04byR1PxsXRvg57hx94xhg9aPsEcaTJyxpfQSemFef7YmnyicPU8dY; Expires=Sun, 21 Jul 2024 14:27:00 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=w+XdQJH9zm7/IKczsGGlUUX7KnOgUrS00XaIDuVQjM2k+9+O40LfpSztb+r1mxJo2tSaPc04byR1PxsXRvg57hx94xhg9aPsEcaTJyxpfQSemFef7YmnyicPU8dY; Expires=Sun, 21 Jul 2024 14:27:00 GMT; Path=/; SameSite=None; Secure"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"saved_search\",\n        \"id\": \"03af6953-55d5-4050-959c-bb1f1ca8581a\",\n        \"collection\": \"appearances\",\n        \"name\": \"National Park\",\n        \"query\": {\n            \"query\": \"*\",\n            \"limit\": 12,\n            \"offset\": 0,\n            \"sort\": \"original_time desc\",\n            \"filter\": [\n                \"{!join fromIndex=appearances method=crossCollection from=feed_item_id to=feed_item_id df=_text_}project_id:74888693-c08a-40c4-becb-6966567b3877 && (feed_id:9e7f511a-47c7-473e-adbf-81f4d398d608 OR feed_id:3b37f45b-829a-4943-9c51-d3107620493f OR feed_id:fed498c6-1490-410a-9c8a-78aa5e2358c3)\",\n                \"{!join fromIndex=appearances method=crossCollection from=feed_item_id to=feed_item_id df=_text_}project_id:74888693-c08a-40c4-becb-6966567b3877\",\n                \"project_id:74888693-c08a-40c4-becb-6966567b3877 && title:*\",\n                \"project_id:74888693-c08a-40c4-becb-6966567b3877\"\n            ],\n            \"facet\": {},\n            \"project_id\": \"74888693-c08a-40c4-becb-6966567b3877\"\n        },\n        \"hidden\": false,\n        \"favorite\": false\n    }\n}"}],"_postman_id":"8de3af6f-8894-4556-a8c7-7b78344dbded"},{"name":"Create Saved Search","id":"e4daa8ea-069f-478f-8d8f-3b3832403977","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.vidrovr.com/v2/search/saved/:project_id","description":"<p>Saved searches are recommended to be created within the Vidrovr UI.</p>\n<p>If you have questions please reach out to <a href=\"https://mailto:support@vidrovr.com\">support@vidrovr.com</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","search","saved",":project_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"type":"any","value":"","key":"project_id"}]}},"response":[],"_postman_id":"e4daa8ea-069f-478f-8d8f-3b3832403977"},{"name":"Edit Saved Search","id":"d8adce6d-684c-4a1b-9f27-521c7e86f7b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"url":"https://api.vidrovr.com/v2/search/saved/:project_id/:saved_search_id","description":"<p>Saved Searches are recommended to be edited within the Vidrovr UI when changing the query. You can however, alter the <code>hidden</code>, <code>favorite</code>, and <code>name</code>. Fields via this patch method.</p>\n<p>If you have questions please reach out to <a href=\"https://mailto:support@vidrovr.com\">support@vidrovr.com</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","search","saved",":project_id",":saved_search_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"type":"any","value":"","key":"project_id"},{"type":"any","value":"","key":"saved_search_id"}]}},"response":[],"_postman_id":"d8adce6d-684c-4a1b-9f27-521c7e86f7b9"},{"name":"Delete Saved Search","id":"9c100bd6-53dd-4a09-b6b8-6f0da3f357b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.vidrovr.com/v2/search/saved/:project_id/:saved_search_id","description":"<p>Deletes a saved search.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","search","saved",":project_id",":saved_search_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"type":"any","value":"","key":"project_id"},{"type":"any","value":"","key":"saved_search_id"}]}},"response":[],"_postman_id":"9c100bd6-53dd-4a09-b6b8-6f0da3f357b8"},{"name":"Appearances Search","id":"0c3f3899-d4e2-4698-8c4d-2ee3bdb2da9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": \"*\",\n    \"limit\": 12,\n    \"offset\": 0,\n    \"sort\": \"original_time desc\",\n    \"filter\": [\n        \"{!join fromIndex=appearances method=crossCollection from=feed_item_id to=feed_item_id df=_text_}project_id:01234567-89ab-cdef-0123-456789abcdef && (feed_id:01234567-89ab-cdef-0123-456789abcdef OR feed_id:01234567-89ab-cdef-0123-456789abcdef OR feed_id:fed498c6-1490-410a-9c8a-78aa5e2358c3)\",\n        \"{!join fromIndex=appearances method=crossCollection from=feed_item_id to=feed_item_id df=_text_}project_id:01234567-89ab-cdef-0123-456789abcdef\",\n        \"project_id:01234567-89ab-cdef-0123-456789abcdef && title:*\",\n        \"project_id:{01234567-89ab-cdef-0123-456789abcdef\"\n    ],\n    \"facet\": {},\n    \"project_id\": \"01234567-89ab-cdef-0123-456789abcdef\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/search/appearances","description":"<p>Allows a user to return the related media assets based on a complex multimodal search query. The body of the post message should be collected and rerouted via the <strong>Get Saved Search Detail</strong> endpoint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","search","appearances"],"host":["https://api.vidrovr.com"],"query":[],"variable":[]}},"response":[{"id":"7b7a9799-4d09-4e8b-8f3c-c73e0e12e2be","name":"Appearance Search Query Example","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"must\": null,\n    \"exact\": null,\n    \"range\": {},\n    \"sort\": [\n        {\n            \"creation_date\": {\n                \"order\": \"desc\",\n                \"numeric_type\": \"date\"\n            }\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.dev.vidrovr.com/v2/search/?query=person&start=0&size=12&project_uid={{project_uid}}","protocol":"https","host":["api","dev","vidrovr","com"],"path":["v2","search",""],"query":[{"key":"query","value":"person"},{"key":"start","value":"0"},{"key":"size","value":"12"},{"key":"project_uid","value":"{{project_uid}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 17 Feb 2023 14:29:47 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1091"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"https://app.dev.vidrovr.com"},{"key":"access-control-allow-credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"aggregations\": {\n            \"creation_date\": {\n                \"buckets\": []\n            },\n            \"custom_model_classifications\": {\n                \"buckets\": [],\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0\n            },\n            \"custom_model_detections\": {\n                \"buckets\": [],\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0\n            },\n            \"disinformation_topics\": {\n                \"buckets\": [],\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0\n            },\n            \"feed_name\": {\n                \"buckets\": [],\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0\n            },\n            \"keyphrases\": {\n                \"buckets\": [],\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0\n            },\n            \"recognized_people\": {\n                \"buckets\": [],\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0\n            },\n            \"scenes\": {\n                \"buckets\": [],\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0\n            },\n            \"services\": {\n                \"buckets\": [],\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0\n            },\n            \"text_video_fusion_tagger\": {\n                \"buckets\": [],\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0\n            },\n            \"visual_detections\": {\n                \"buckets\": [],\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0\n            }\n        },\n        \"results\": [],\n        \"total\": {\n            \"relation\": \"eq\",\n            \"value\": 0\n        }\n    }\n}"}],"_postman_id":"0c3f3899-d4e2-4698-8c4d-2ee3bdb2da9b"}],"id":"eea60429-a53c-4dba-a714-0e6b02c45da6","description":"<p>The <strong>Search API</strong> allows users to search the Vidrovr metadata indices, returning media whose metadata best matches the search query.</p>\n<h2 id=\"introduction\">Introduction</h2>\n<p>Search is hard! Creating complicated queries, figuring out the syntax, who wants to do that? Thankfully, the Vidrovr team has created an easy to use system for using our UI in the Vidrovr Platform to create search queries and then save them, allowing for API developers to programatically access results from searches of interest without having to fiddle with complex search query syntax. The following endpoints are documented, and a walkthrough of how we reccomend interacting with our search system is provided below.</p>\n<h2 id=\"walkthrough\">Walkthrough</h2>\n<h3 id=\"creating-a-saved-search-in-vidrovrs-ui\">Creating a Saved Search in Vidrovr's UI</h3>\n<p>First, log into your account, and use our easy to use \"Advanced Search\" functionality to create a search query. The \"Advanced Search\" button can be seen in the top of the web UI, right next to the search bar. Once a search is created, under the results a \"Create New Saved Seach\" link will appear. Click that link, and follow the directions to create the saved search. Congratulations, your \"Saved Search\" is now accessible via the API.</p>\n<h3 id=\"listing-saved-searches-via-api\">Listing Saved Searches via API</h3>\n<p>Next, you can retrieve the name and id of the relevant saved searches, by using the \"<strong>Get Saved Searches</strong>\" endpoint within the Vidrovr Search API.</p>\n<h3 id=\"getting-the-details-of-a-saved-search-via-api\">Getting the details of a Saved Search via API</h3>\n<p>Obatin the details of the saved search, via the \"<strong>Get Saved Search Detail</strong>\" API, using the <code>id</code> parameter from the \"<strong>Get Saved Searches</strong>\" endpoint. This endpoint will return the details of the API including the <code>query</code> data within the response.</p>\n<h3 id=\"retreiving-the-search-results-via-api\">Retreiving the Search Results via API</h3>\n<p>Retrive the results of the saved search, by sending the <code>query</code> information obtained via the <strong>\"Get Saved Search Detail</strong>\" endpoint to the \"<strong>Appearances Search</strong>\" endpoint. The <code>query</code> information should be copied verbatim into the body of the POST request. You're done!</p>\n<p>If you have any questions on this workflow, feel free to reach out to <a href=\"https://mailto:support@vidrovr.com\">support@vidrovr.com.</a></p>\n","_postman_id":"eea60429-a53c-4dba-a714-0e6b02c45da6","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}}},{"name":"Metadata","item":[{"name":"Appearances","item":[{"name":"Get Person Appearances","id":"e54540c4-8de8-464f-83cd-de8763d12ec2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/appearances/persons","description":"<p>Returns an array of person appearances for the asset, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the person appearing</li>\n<li><code>name</code> : name of the person appearing</li>\n<li><code>appearances: start</code> : start time of the specific appearance</li>\n<li><code>appearances: end</code> : end time of the specific appearance</li>\n<li><code>appearances: thumbnail</code> : location of a thumbnail image of the face appearance</li>\n<li><code>appearances: face_id</code> : unique identifier of the face appearance</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","appearances","persons"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"}]}},"response":[{"id":"7a99b9a5-0015-4078-97a8-5c779b821932","name":"Get Person appearances","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/appearances/persons","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","appearances","persons"],"variable":[{"key":"asset_id","value":"{{asset_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 21:49:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39495"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"012b83bb-4327-463b-a20f-b9646ba7221f\",\n            \"name\": \"Unknown 93\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/39867e00-5ab3-4622-a887-ff9029ed0f9d.png?Expires=1680101445&Signature=NZcdqSd3ZvZ1481UE1xITtzvWR-uw4UWDFYx4BNhBnrVT7GUTcf2RCFs27Yj1orBaZVtELEncPRyiX-qkYdxE-7ljCrAV86nb9AR1Vstjm84Ah5-bVQ4pZ24Uu6XptDyWz2umHsxb6KbaJgKxORsthKst9QqAHBqj3oUoZY5e6MQ9IuXasbBqDftBqrr-R4-eKb~sreLmSySfFGF7U97xT08Ftabt~-wLZ8h5wmjxGG-vqwfnJGQVG6OYlmPWV~MJzvAiSEVlrVBvpzbhTJSCQkT7tiPiBKni9yz-9PKcs8mMlr2WlR233FfeW~LhWbCp79ozh5Q7Hg0oZ9~6bVm-A__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"3bc9c5c6-64e7-48e0-a0a9-fcc4dd409cba\"\n                    ]\n                },\n                {\n                    \"start\": 14.975291666666667,\n                    \"end\": 35.032999999999994,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/77485762-3531-4c27-9923-815c029a4591.png?Expires=1680101445&Signature=CwD54STq2Qp-4e0krEBsqff-oAhO0u-uVzeL7urYE3Nm-0pHXfGAScmN9c7pc7jYwOsLOhHa0P~euQ1f5X24M14BtknnA4wzFkimPxt247f-Q09aDRB~bORNlz96JAgVcNFcuXOEYrzX0r98t8npgghgV3fSj5TOz~n6JMi14AhPuXADIQsP9HmUVEdPg4USRYMB-I7hI7905AyccSsTKvzyZrPbQPpk8ekT-r5YlsCf9wcGChOuohy~LnMQaidU8qeruvbgDltv4M~GmIFvbud0qqpMs7N3e8AyZtore6cDtb6~8VA9JS0qFT-xGpBtRHAlNDQYc0V5Qq3QHSnBUw__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"7e330076-b02f-4f7b-8be7-c88f2076969f\",\n                        \"5628d705-b4b0-4644-a6a0-abf9d5d4b404\",\n                        \"166eba4a-5825-4f1c-8017-15566d0036ab\",\n                        \"79d726ea-7862-4ffe-a17e-aa7d75acc6d7\",\n                        \"a98adf71-f0fa-43bd-878a-ed94a16342bc\",\n                        \"11247ac7-d69c-498a-9f63-3baa847e05d3\",\n                        \"ebc7ab69-fd2d-4dd2-9fc2-09fdd33bffd0\",\n                        \"4fc8725b-9b75-4758-9ad0-8193e4548ed4\",\n                        \"76e3effc-2f18-404e-906e-3414ab622712\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"9566f55f-0081-4740-a405-789d34f8f33c\",\n            \"name\": \"Anthony Albanese\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/bf4b1f3e-fd21-4389-bbea-cbfaf6df3798.png?Expires=1680101445&Signature=LAJE2hVH7Hv7BltK5XNiCezSmf7f71gf9-dH2etS6SHOLFxx907MN0zM3Qnh7cjgt-LD6a8l2g238laVZ0EnFaFDrvZkC9dlkeyldxLDczNrSWPK3QOsG~H~9IoefR92RCjCOU1wi~7jc0pezfbqYnBAD~Dy6Bbn8XpXFh7wO6wETcISHHg3fQ5UifnQOKUjM-bnPrc6ct6h46QFCRu~RdO~u-9tNu08oO9jfB5Md8KnK0N9IL8tgqnxDbbkMRrre3ZOHFWivhK1~IED73iKgn9~jcGe16a7jma6UCzaaX-RcRXl3sq57bNb9RiLnhZthkXD8yIs70lHu3yVhh~WZA__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"f143ac58-d120-4789-92c8-4956a1d9fe6c\"\n                    ]\n                },\n                {\n                    \"start\": 10.011999999999999,\n                    \"end\": 38.035999999999994,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/9f23ad56-7762-4a57-a01e-9f8c127afca8.png?Expires=1680101445&Signature=W1nJPCR~tC~uEwga-gUBCKfjUbE9OjDpDLRlRpJzvM0n37ZAuXjeYabz0DUUcv7jbXB-L6WzQFdKgO6td3Kim2JSX96SuL~6sSSa~7u6D4QOHYEs5FOHSlOvc3EDYUPxXfBY7kFz3yhGf4V2TLcNHo31p-02FvmbfhAE1fuK2hk8GohRedCvhRCbHqiG9aNfv2aFq8bMP9AOcAO78vpoKSecTe-a9GO5Guj9tv3-Odag7eIbljgNv1by7pcXhsv-ULvCx9jZG~McyQD5rdaeKpvr7lqAvN-Hm~4IrwImHWriUflJ1bXRI8mXRs4mPT3dshXm82f0ZMMZiwS3n9kZ9Q__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"ef7d79f1-aa6d-4a20-b36b-d17db2c1adf2\",\n                        \"ace144ed-f3e1-4c29-9de9-31a68fd018f4\",\n                        \"5395a0c7-c271-451c-86d1-f3542cae1cf0\",\n                        \"500e8bbf-cbe2-4791-b569-e2c0cb1d1b8a\",\n                        \"65566a17-772f-4bc9-b743-dd8700a01146\",\n                        \"1ebbe8f3-7c8f-48c6-8ea9-26a42eab4eb1\",\n                        \"3d3c20cf-735b-4956-89bc-783dd220da1c\",\n                        \"0fa1172b-cb72-4b68-a93c-87586bc73229\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"b616881b-e050-4d32-99d5-bb19a987caf0\",\n            \"name\": \"Rishi Sunak\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/05222fed-4243-4675-a984-26c01f5a861e.png?Expires=1680101445&Signature=HwAGgA7V8d9xd42-bBe3oAE4Ldg~zs2~NSPamjzXGJsCrTF6ovJVr1pZ5LaMjDqI06HfmCTDiOF1FXLnO1p7CsE~2HODcUSgCy3NNz--eegeg1N-hNe3ZS1BsRoC--VO8DhxHBPtLBRcad8Ov3rXntm3lbziuqcF1djyD-PtWa1-Drv8-SqnZqReWKA4066ZBcUDueU6nyWsnBagXUV0Zyb9gJRgltZ4g4J4fh0TSXYBmXDYOP7HoWDRxNozleyXFymwFUnRGSbdeDVrLjXBnJ3ej~U8tgVc8iP7HzaGvSiFV~6dFtcsWfZkq-zp3Ua96Aw56x0OMABFUY21PyN2bQ__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"baf9ef3f-48bf-442d-902e-17c725876c41\"\n                    ]\n                },\n                {\n                    \"start\": 10.011999999999999,\n                    \"end\": 35.032999999999994,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/059460ee-d26c-4e1b-b468-48577dcfa663.png?Expires=1680101445&Signature=h9MZyY0DjcMaovD-zCg5R4H48S61XWjbgBrhx3u7ePtcsJENIUkHmskBPMlYlUJ6Ihc~7oldY5zOssjru3e95a8xXz~CPzH4ojfr5hQ0PrGfC3jy-Dj~pG38ZuZbPMteluBkGC~DunJQgMsaWwQfM7Rn7NeHCSVrpwR86I8xjZcfFvaZGd-EIP8i9BORVpF1hDvgzKvqLTZ9WXXg4nbE-ry8f5xE98pVP79kBYlWUrG~La2PKp0jgrCNfZ4H11sT29q2daSyZ424yPZ-ZU8EI5iAQW01lFxd3Gjfyz12tYnmCi~t5kbPPIAKBgK1cmmFQv7ODbnAKgjB4waObcvitQ__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"c66219c6-7b43-4759-bbdd-564fd7788ffa\",\n                        \"53f64bbe-72fa-49ca-a20a-3647b910fc40\",\n                        \"228ec1b2-a3a3-45d4-90f1-12d88f88de4e\",\n                        \"85e53f48-6c8a-4c11-b73f-af2d0ded03bd\",\n                        \"c907e554-c27a-4c49-ac68-23229cd1872a\",\n                        \"618119cc-60aa-4393-bee9-5f8bc48417da\",\n                        \"181c2c66-dfce-448d-928b-42c4ed060c44\",\n                        \"f3c49fe4-75c0-43d7-83a3-57560f0fe218\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"a4c95bbf-1694-4f41-ac48-b619ef8de9fa\",\n            \"name\": \"Unknown 124\",\n            \"appearances\": [\n                {\n                    \"start\": 3.005,\n                    \"end\": 8.006,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/45914032-8b13-45a7-8252-033f68c9142c.png?Expires=1680101445&Signature=kjR-8iTJZE4RE7o0ubayPSTst3IfkGuFuT7qW1OIk1~z0BfIB2ePL-nnsKe6l~qQxsjTt63tZ75wzDhos0HV8ahrIqRt-0BUpgpnHU6WmGiLKx59zv7YW4oLiN9sZl~tG89TewzN47k1zO7ddUdrnlx6rjtAO1sENqSY8EA554fqWgiKESAADU95CkuOlN~KK4D6AHDk~uW7RCO4u8zhqA5Th48lyQrIGSuHTingcITEF6f75T4NsSV2b361ceWbjNsCNBg~FlNLVx9vpEXMsxMDUhgFu5ct2X5mWFWkZzt7lbIZ-DDVbQt6ObArOiwllT-5B0dRUtAcpyX1r6MbFA__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"6279d60e-ba06-458f-b39b-f8080deda79c\",\n                        \"a84c0c38-b41f-4fbd-8631-0399a1e7bade\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"592ce884-ea34-4eae-9e14-fa88cf4591fe\",\n            \"name\": \"Unknown 125\",\n            \"appearances\": [\n                {\n                    \"start\": 3.005,\n                    \"end\": 7.005,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/947ffb7b-e7f5-47a6-b8ae-406cb6a57df1.png?Expires=1680101445&Signature=PiNBIiA3UBDNVrkOEqqN02zM8IEXght~L9sEOq6V2DEMhFK78Bz4k40wDtxPNHngD8rMFYbvA6yFbUXb5FN1DLDpRkPOXHx1D5AtU7OEdzOGyTOa~Oi28-2E~-ERFp84~J6TsmNIy17sBL8GRETXu91OwJ4v03JUqUHzleZld58LkKx8CAgezJq4AbU~a0mj9iXK0Y-Rds5-tungMiceNjmP93u0-XyktLF7S9RO0LaXVOodF-Eh~WTCK57YirnEU7bLmUzJOd7zdUn4l4lIYykKr2UkTpqj6na3f4~7VYeeZnJ7NsidMmXeZvPTSsRUmYefw8RqDHQmIqd085Dp9g__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"1154e4d9-ff39-4b4d-91d5-25c5bd0dc8a7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"172f6d0c-237d-4665-a251-872283b5a2bf\",\n            \"name\": \"Joe Biden\",\n            \"appearances\": [\n                {\n                    \"start\": 3.005,\n                    \"end\": 17.015,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/9d799eb3-4208-4fe4-b760-c4d5bcb353ce.png?Expires=1680101445&Signature=CrtORgWjaqr~aA0JRia3-1HihVhj9lg0h8IL6gMU6OTixPCVKxZyINj8xKKNuiF4-oouNG5CuLQZOjxQB0ksSv~57u4yXf~LvkUvX78txU59uUtoPWZZxamD9Sw2YOnl08VX9gJX-JANiQj6gInn6io2Lwen1XFm0xjJY-dMU04nD8ctCgjIPaahTZbQn2paiD~fdlBTHNvSk1U5Mn227FYpmpoTqyf0YlTZcBqVzF6vsFXr7clnPhFVsx6d5TPNdCQTyTrZGWez6pEgnOQ7~0dkucVsJcjdGxuLBi~7PzDnVte2Q5HHedxdT4roMGsYh1oiWl6c21H1mO7qYnO-Kw__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"8faa3e5e-3305-4cf9-907d-75b3366be7f7\",\n                        \"8451dfa7-d3a6-4d84-ae09-c07a732d6efc\",\n                        \"fb3ac4b7-cf0e-4036-aefe-8ff3bd188a91\",\n                        \"ce0193ac-f2ce-4ac0-8a1b-4852e682b369\",\n                        \"635a6708-fe5a-46be-b15f-190d18e53fc8\"\n                    ]\n                },\n                {\n                    \"start\": 26.486791666666665,\n                    \"end\": 30.486791666666665,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/fee31e81-ca3b-475a-ba76-1100ff960fa6.png?Expires=1680101445&Signature=ihS8jsk-Ka71thfBBGjLeq5nQvVdwIodUTlilnVoyY1y4kpMoyfW0jSMwXQjAboOWBpKsaC8XvMEzW5gq0Ik9Jfx4vEWnLe~jHk-YLV9Jm5S8WmRTCEM5no0CpvFLG9cQ4-dwfQNEWufyufemRohVdenZwr9kicnvPR8YOzpcQvYnDO~BQngP8LUqGuf-Y7WrGTIblAERizmbzuk9QReCjo4w0p1s~fai2CRrPLJn5krVgvljspHW2hr9ITIOc9lhtwnuC20Q6DHpLYL3lpCuvDfUuzgaxvUwzfJVUYX632JoLnE622jr3EYi7kCsmaOUI7P24UvFDm69NYtkI533Q__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"3a155f32-12f6-404a-8665-2e8b871c5fa1\"\n                    ]\n                },\n                {\n                    \"start\": 37.038999999999994,\n                    \"end\": 41.038999999999994,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/bbecebed-b53c-4348-b5cb-19b7758b627a.png?Expires=1680101445&Signature=otfTQsnSh16AlYBOkdrM9p~jaTnRGnpqI7bktEFbH2~V26cYfAhImXxu1eE-iFLgONDfWMZFTSl257OgbxacfdAn3G5~oR7RBh1NLHjdP4SZD-T~QXB--bOlF2T2ucuvZDNii~O96h~CWXk9q8GMb5iiMRKrvy3Qzm-a4pZjbheuYhz1nSl~ThjUPr2055Nxv9h2071DlwymneBD~SwDsQI8chN8mTSWKVH~0LjB3nomU8lsuobtNHp7wjGbKTRMtmJOUr3wlYhlBFw6yblJ33TYH~B8ZRMWYjhWWXD27DQdQYZrLouDXoMl15QB5K-iHJR0dA44wklQrkEqmGzDEw__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"6c0f8d7f-aa1f-40a0-8683-b0fcb1e72501\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"9c48f977-351a-4086-9048-65ed995773a9\",\n            \"name\": \"Unknown 132\",\n            \"appearances\": [\n                {\n                    \"start\": 4.005999999999999,\n                    \"end\": 11.008999999999999,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/64b7d624-4476-4a43-89bf-7b0761164511.png?Expires=1680101445&Signature=bjMVa7ATA2q-u9j3xzWWxODdseGBemcCKknEgpopRz~BszYzaX-tYu~A5Y3n-B6wI4OfwtCEYgbPwLE1Z6n3nrzqRqEWDonQcauD3MsSQnm~UUNjeR~mu3cf45C0JbBKbVdj6FekkCFd4jtqlRq6Y2SZri76zEdor86OJXvosD9Nds~8Wz6xZW2fON5-OujCJyFRKNu4fzfyUV7yMEri7kPFLO9azJXSOv-aZbvEr0PWuvVjP9krGs9svC3hE442xrrqlPlc2qPghfEqgbdwIrfK1OjZKkadXCdTyxjjWjUFby0INRDDsFg2PsUPgkTOuANbU~QFzKBvZ39j6ABHiA__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"79eab109-f72c-47ae-9218-a9722b39f28b\",\n                        \"68a17883-104a-461c-9495-34b40bbfbf02\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"9ff474ae-0aaa-4862-ba35-94c366a3be90\",\n            \"name\": \"Unknown 126\",\n            \"appearances\": [\n                {\n                    \"start\": 4.005999999999999,\n                    \"end\": 8.006,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/722e6158-c765-468c-9bde-86faff6d6573.png?Expires=1680101445&Signature=LAK~Obcgs~QmCjoRTFqKiqwmFMEKR0eFkGY2Fvok-D4SQ8jmfFowVlFXA0uHnEWqnqT0JC1O6EXd~TXJDXlJEds~D42GL2jfds8TTcxbBwIo1~zXAfkgccoKWjXLWqKrnmshirqAokmmcHjEfQdGuefGH3cUeMWTIenedFNCVnOf-R0uyRR5UUL7mcIwfVAAzbpOD4LqVDyV27QXIkroB9pQtpqtHjPQwPa3jHeHkKLjTazOyx9fZolRGGdZZ6Lv5EpVSYikqFafA~nyoEuzdIiZX4gfBitUNe8LleRayDvoLtbh4f0PidzEXqlEVmKhqluUqQV7n3gcYJ6d9cBQmg__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"14322673-4b01-4749-9ecc-9e64de44bba3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"5ee15f66-0428-4a3e-a1b0-7417947e6336\",\n            \"name\": \"Unknown 127\",\n            \"appearances\": [\n                {\n                    \"start\": 7.008999999999999,\n                    \"end\": 11.008999999999999,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/035a2154-446a-4c98-b2d0-6b9946500686.png?Expires=1680101445&Signature=N3RRoCayta0x8lidHIYaORrrNHiUHOGLgehVB0N-4OMqNQo0u2WZysKZN6U8Zeka-xdpE53BWq6FakfEnNKltzVoiLbfLeyxh6EjF2Bmnfj2Z8ZHbWyxXQpeADgMfA2tjZO6i5v~TDMmp9qXeRcCK--BgO-4BJEdivYERciWlo6PRTiXepEoS1K5c4px0xHvElGIF2u7aV6wH0eZIa3EdLvWNCCqprNtKBqR5cJg~8ErlcPyINcfMpg~hI2nW0tF~Do7N01oiWRJ3M2nw1DnIH7EyDqwAIpys5Ppkwk1hzdXDNDD03FONIKlCc5zeIiqHZyBpttN8PN6j3TUD2G1Tw__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"2b7af5a9-accb-451b-938e-d856eed1f631\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"df054847-522f-4187-b6ee-d878e4c228df\",\n            \"name\": \"Unknown 128\",\n            \"appearances\": [\n                {\n                    \"start\": 7.008999999999999,\n                    \"end\": 11.008999999999999,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/82a95e34-6f0c-43a3-a17f-d4449906af36.png?Expires=1680101445&Signature=YeEe2YuMlPLmSAgewXnee89vrOr0kIlIPnG-bz1YlcKOD7ZgMlZjvgtcpeMmOWblIcbCd~w-8JLoYxZrjCjuuhwc9-aJByPBeUWzE6hZEZWjJEAbBdvMTDj0oC6PCNFYTMUHUg0pA~OIcDZ8ru9EgYokErvuNTNVq2~KWc6XVYe0k8pwnDFjmrKNu-jA4~x30UKNWDZek8baYuTIFtE2xHGtZ~aGJ4lpZBA9H4hj2LyIAvXUAYJXZr9m2RmTodmsVetbMNq4E0Q-KgtFKvftIDyIi8QBT1TiW7UqkAd1sc6h6IaI8rzogaQDnMnkOA7HEd-K1pgu4weBN4cXqu8dVA__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"fe714139-de6f-43ec-ab2e-e647c57b12ae\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"012f7d05-6a07-49e0-9696-c7d8686b666f\",\n            \"name\": \"Unknown 129\",\n            \"appearances\": [\n                {\n                    \"start\": 10.011999999999999,\n                    \"end\": 14.011999999999999,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/97977d46-246b-4f36-a95a-22648fc8a103.png?Expires=1680101445&Signature=mnaaf0V2-gPr4lg6TfThVIRNz24-~3riPz79Pg8tX0qkrNRDk8a~3uvMy4UOBIHvrLvVehWoT9Lsa7zx6ZhhcKR5zeS3fvMou0ln96J3Vzd2M~Erwa3IK~WN3gNBm5LAuUKzOts6saFYc-bF7VXA1g9YT8kjfO4su~zIWtHkcRKinhGCTh3I5OlXdHSj8ed2TtgLWyV5iI5cUhETToGv-VKbdovWnoOubnRltMN47eKf0eqWejQjZvdHBK3eSaU3W6GuMT9DlWUwqIEUkNsCoAipFqp4zeq67d2sIqRrxJjJ7QvVJtVoCnoDvljV6DkL2w7mInCv7wMQLTxEroeLeA__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"30e3fb52-b4b9-484f-9633-b0e077410d00\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"7089e1a6-fdd6-4a20-b215-d6c13fde359d\",\n            \"name\": \"Unknown 130\",\n            \"appearances\": [\n                {\n                    \"start\": 10.011999999999999,\n                    \"end\": 14.011999999999999,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/9f78e03b-99aa-4151-8a39-12192dd05358.png?Expires=1680101445&Signature=N44wuql9cFCk5epwf-JbCBSV77oA1Pvl7r09lc9hWlmq3DVR5D2YtUt8ip7gdb~xNspVkJ5JA4Ym5BYyRYxrKFfhVKChvhPsFc1suE0fYO3GLO4JQZ5zXED61752ua3Q3-wk~s10TYz5uM7FVUHcLpT9srXxe~dj7Eu9bN5ySF1T4fGud70EXzXeohngK3Vm1wAAQyNr~jXyRZvunvBVuh~DEQPS5yrVhH-Lz30ISbYP9bO66gci2btOESLA84HYWyrxllvLsgQgwrsjoaW9mp7paEnryuyWYe~bBRS2aXAOLQ26v83qyRTPfJAbI3CdmeK6HGNKzBOmM-wRwbx6zA__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"3b985c34-06dd-4d24-b3a7-c506dc7d0c44\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"50b1c7a4-21f1-4fb1-9ce8-88f63f38cd10\",\n            \"name\": \"Unknown 131\",\n            \"appearances\": [\n                {\n                    \"start\": 28.029999999999998,\n                    \"end\": 32.03,\n                    \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/faces/25d5b2b3-9e02-4617-a2b1-59a5ef827343.png?Expires=1680101445&Signature=j-Uqpb7zCgNpgaVs~OwQqc0mqRoBRk9R8-QuxoXpBDPMCLMc0X8RC-mKVSDdHjbDmQQrLc2tRyf0ddnVDPg-vDbFf0eRx2u2I~LTx9xmkfOqbBgaomUEgLdgAfL1O-dAaux9KObLLP4dXavZKAjX5yUOI4ZkOBibBr6pTyS4x7huJOaxxgRDMMwK8a9VZHQBwuOY3jS2qpZAuveR-RR5Rt7UfYpb02h6s0~55aZFqOaXiBu12KTwIs1r0N08bJvz~rzYeXtHRUcc9GzagAhU9Qx7d4YIh5AhP6cc~kdu0xYN2IcyReib~UvbdYCuYgIxCT5jRSQPwdivNANocCI~7Q__&Key-Pair-Id=K5S1IJDZBULCD\",\n                    \"face_ids\": [\n                        \"d5057b03-35ed-4e0b-a0e8-8f0266a858b2\"\n                    ]\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"e54540c4-8de8-464f-83cd-de8763d12ec2"},{"name":"Get Object Appearances","id":"c6376339-12f4-4d67-bcd4-b21396792572","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/appearances/objects","description":"<p>Returns an array of object appearances for the asset, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the object appearing</li>\n<li><code>name</code> : name of the object appearing</li>\n<li><code>appearances: start</code> : start time of the specific appearance</li>\n<li><code>appearances: end</code> : end time of the specific appearance</li>\n<li><code>appearances: detection_ids</code> : unique identifier of the object appearance</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","appearances","objects"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"}]}},"response":[{"id":"bf626bf4-adbd-42d2-bdf4-6f1e3150953b","name":"Get Object Appearances","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/appearances/objects","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","appearances","objects"],"variable":[{"key":"asset_id","value":"{{asset_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 21:50:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"48050"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"e015223b-5446-4b40-9dc0-d4b788b54964\",\n            \"name\": \"skateboard\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 4.0,\n                    \"detection_ids\": [\n                        \"31e53639-40e8-4880-8cd0-16af68265b2e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n            \"name\": \"person\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 41.038999999999994,\n                    \"detection_ids\": [\n                        \"f9519c91-4b0f-433a-972b-7ed7395b7d57\",\n                        \"d62192e6-d88e-4601-922f-dc1757269ec1\",\n                        \"22ed0180-ec53-4130-ac2d-963bd224d3ea\",\n                        \"a01c4fea-5405-4b85-b0d0-4cd3e5201a1a\",\n                        \"e5f78b37-92d8-4d03-bc2c-13549a0dbc1b\",\n                        \"51314971-edeb-4f64-aef7-92907a2a20ab\",\n                        \"0785090b-7fe2-42fe-b426-e71936865f2f\",\n                        \"cfa5ed31-ef42-48df-bc29-27fdd3739724\",\n                        \"b1e6b6dc-68bc-4df1-b6a9-ddfc04ae5179\",\n                        \"ae3334d6-a2b9-419c-a53f-c9677156bf5f\",\n                        \"084e874d-0e0e-442a-b0e3-5051da08538f\",\n                        \"7f5ea7a0-5adf-4bd3-9c81-a6380ca136bc\",\n                        \"e69ca671-e5cb-42f6-9cee-7a25102bbc24\",\n                        \"f6f215ca-95a0-4943-8dfc-551e5ae7f881\",\n                        \"ce8f64f8-47a2-4a0d-a469-0f3b6a9bf093\",\n                        \"71348080-a9e9-413b-832a-c52bf8c8a7d5\",\n                        \"950ae869-6213-49f0-b9ae-2b2c41f47c2d\",\n                        \"59244f4e-f7d1-48bf-886e-a29e94679371\",\n                        \"037f364d-39e4-4f1e-b020-88714ed9e66d\",\n                        \"eb0605ef-9e3e-4c49-b55c-3248f28ca719\",\n                        \"8e9f8820-070e-48ee-b4d9-60c1f696651a\",\n                        \"26a5ac82-6385-4e02-ae3f-7bc9c8f2cba9\",\n                        \"9ea817f2-b3ea-4867-9dfb-0e88582a76bd\",\n                        \"19c3eafe-78ba-469b-83fd-fe04a0fc83ca\",\n                        \"eb946429-d1d9-4656-a88f-d21379bac3c8\",\n                        \"a592252f-36ba-4282-8e9e-e354cd5831b6\",\n                        \"85095483-8dd0-4555-af6a-575c9cd8bb2a\",\n                        \"071d09bd-6cd1-47fa-9afc-e1e2bd087faf\",\n                        \"fa9d6b87-9b28-4f86-ab8e-dda8a5114401\",\n                        \"3f71b129-2aee-441a-9076-0f8e568dc179\",\n                        \"f7c6435f-2389-4718-8832-86d3492fe1c6\",\n                        \"6d40fa9b-b096-4eaf-9f39-cd6236d0bbb3\",\n                        \"c013bd9d-baef-4389-b873-c95d0c642087\",\n                        \"f72fbe61-3d41-427a-980a-ea7672a00bff\",\n                        \"5be9e82b-d1c9-4198-938b-24c0e9cddc84\",\n                        \"ecf5b3ee-fc7b-425d-b0a4-af375c08be5f\",\n                        \"6ddef788-4280-41f1-836c-ca9b726a65cd\",\n                        \"e4107521-5ef2-4fa7-b923-7f4ace89e443\",\n                        \"8eb76e9a-c189-49d1-bdaf-b3e23ba9e8c1\",\n                        \"e5424977-fa74-4296-890a-ec049de65efa\",\n                        \"56526a03-41ff-419e-ae54-b455baa6526f\",\n                        \"68c2e690-aa58-42bb-831d-6d0a665ea22e\",\n                        \"a14bb343-4374-41f0-9f4f-bbbc57375444\",\n                        \"be997c2f-2f30-4bd6-abe7-21e980b4ca41\",\n                        \"e19582e0-a3d2-4ae8-8ff5-0a3e2c5adde2\",\n                        \"57822168-ad76-40e3-bc8e-1a6be8763201\",\n                        \"3c14ccad-b16d-46ce-b203-dc161e68ee38\",\n                        \"fbde8407-b928-4b66-bf7b-460fe641f119\",\n                        \"c717dd25-d8d3-44a5-be7c-8ec06b481ae3\",\n                        \"6546543e-68cf-421f-b446-748ddb70ca88\",\n                        \"c781f959-bf53-4cd3-a71f-787d39a9a95b\",\n                        \"123e6f76-fbe7-4760-86e1-57aa21a85842\",\n                        \"2f4fe7bc-3faa-4e94-9bd4-46fb60d67c82\",\n                        \"112915c6-7729-4ea5-a89a-040eaf50d3dd\",\n                        \"53fe8621-8b05-448d-a89c-93ed456c1c7f\",\n                        \"1a1c0e6a-1a23-4a25-b25e-edb32f6dac7d\",\n                        \"07eedccf-3a75-41c4-96b5-b642c2c03963\",\n                        \"1bffed25-55dd-430c-b160-a00d2f988d36\",\n                        \"9c51a406-03f1-4f6c-b59c-8bdb163b36f6\",\n                        \"93d27e5b-ffbc-4b42-af7e-cf913192d0fc\",\n                        \"c9c8ddaa-d532-4839-8820-0ef2249996c4\",\n                        \"4538bba3-c987-4faf-b110-a1599f0abe11\",\n                        \"8cc13e62-e13c-412a-b843-4cba8a7e3d20\",\n                        \"0890f7ac-7fd4-4881-81e2-8d352b005926\",\n                        \"16728fa5-94e2-4738-9f28-69ea07a62870\",\n                        \"1f680cbb-02f2-49ec-9d8d-03eb850193f9\",\n                        \"0804ab2e-348b-4c43-aebe-d758f7c80980\",\n                        \"9d5957d1-c1cd-4c39-aa77-e134092e4025\",\n                        \"0d671581-e68a-4a84-9359-87d4e730a9ab\",\n                        \"8dee6f41-e6f3-4ae0-90b7-c3f8e0038801\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"5943bd84-62de-4b58-ad66-834bd4bf2694\",\n            \"name\": \"tie\",\n            \"appearances\": [\n                {\n                    \"start\": 3.005,\n                    \"end\": 17.015,\n                    \"detection_ids\": [\n                        \"4a380d6e-601e-450d-bf8a-872b79960f48\",\n                        \"95076e5c-9301-4745-a256-575645d35f3a\",\n                        \"5a38c2b8-83f0-4ac2-8259-a1dd350f6c99\",\n                        \"ade42eb6-0641-4c01-ad4a-f8e2db4fcae2\",\n                        \"a1f471f5-f632-49ec-86a5-dae09aa6f6ac\",\n                        \"d6340c96-e871-476c-b620-9c956a3251e3\",\n                        \"1154bb3e-ace2-40e5-985e-3c4b4b09c3e0\"\n                    ]\n                },\n                {\n                    \"start\": 25.27725,\n                    \"end\": 41.038999999999994,\n                    \"detection_ids\": [\n                        \"16a8d69e-e673-48a8-83ec-2ad8d222c4a4\",\n                        \"7bf8b35c-b4f9-420d-a3bc-dabbc482f6da\",\n                        \"261cff68-37ca-4ccb-ad57-21478f4abf08\",\n                        \"79243c27-afca-43bf-9001-849f4080fb07\",\n                        \"7ebe7901-21eb-424e-931d-a7d6e024f80e\",\n                        \"3a998379-f7ec-4660-a95a-c01898d36dfe\",\n                        \"1f876b3b-fe06-4822-9171-7fdf70338403\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"48c655fc-bb76-4b62-8e2e-a6bfa6e19582\",\n            \"name\": \"handbag\",\n            \"appearances\": [\n                {\n                    \"start\": 7.008999999999999,\n                    \"end\": 11.008999999999999,\n                    \"detection_ids\": [\n                        \"91e04310-ea6f-49dc-895d-f1f1009b346c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"8e7b17a8-c2ba-4c75-b94d-11487ac28e2a\",\n            \"name\": \"chair\",\n            \"appearances\": [\n                {\n                    \"start\": 10.011999999999999,\n                    \"end\": 14.011999999999999,\n                    \"detection_ids\": [\n                        \"6a22e238-dbde-45cc-ab7c-181e35276973\",\n                        \"677d4874-3a17-404e-873e-44b445790ad4\"\n                    ]\n                },\n                {\n                    \"start\": 26.486791666666665,\n                    \"end\": 35.032999999999994,\n                    \"detection_ids\": [\n                        \"c18c6cbf-8b56-4565-8389-778135c47c50\",\n                        \"ab6f86eb-6105-4637-a500-410a9bd8042a\",\n                        \"3a74fce6-b935-486c-9f6a-edd6030b7b2e\",\n                        \"ef37ae77-374e-4638-ab57-ac7d47e3b5ba\",\n                        \"90e4411e-5446-43b3-8516-3040ba535ce1\",\n                        \"95cdd82f-5f53-4f71-ade9-9f85c8b4db81\",\n                        \"73db5eef-88be-4073-bc61-27a913997f8f\",\n                        \"e52377e5-b710-4cd6-9ea2-2c0c4dfc68c6\",\n                        \"9574285b-d4b9-4b05-b0bd-a4aa3221b878\",\n                        \"f0268f72-2878-45c0-b5be-a98a3712173d\",\n                        \"1c925a29-3314-4521-a218-22947d1bcfa9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"901a77cd-5301-46a2-b132-0467e93775ea\",\n            \"name\": \"tennis racket\",\n            \"appearances\": [\n                {\n                    \"start\": 14.975291666666667,\n                    \"end\": 29.026999999999997,\n                    \"detection_ids\": [\n                        \"926137da-9cb9-4437-a94d-f86ce852c806\",\n                        \"66fdcfae-3cd0-4269-aa7c-a08de43ffa18\",\n                        \"4a87a8d2-50a7-47be-a553-49a0573de4c7\",\n                        \"ba9dbc92-b745-4c80-aa1b-3c2037834e7d\",\n                        \"e9f8cc7e-4330-4c11-8916-036d9e69c942\",\n                        \"55726cf0-6825-4000-aae5-22a3c74744ec\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"d74bc735-0b8c-4c6f-a955-8983367bd71f\",\n            \"name\": \"bottle\",\n            \"appearances\": [\n                {\n                    \"start\": 25.27725,\n                    \"end\": 29.27725,\n                    \"detection_ids\": [\n                        \"fe1e0f35-db83-4d7c-8e29-adf609279ae8\",\n                        \"dbb285f0-5e2d-43aa-8c30-2266aa1e4aa4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"a6b8a944-fd9c-4b6c-afb0-9f72e760dd4b\",\n            \"name\": \"clock\",\n            \"appearances\": [\n                {\n                    \"start\": 25.27725,\n                    \"end\": 35.032999999999994,\n                    \"detection_ids\": [\n                        \"a92b1f90-648d-4862-990b-94dec69296de\",\n                        \"9b7e92dd-9a16-4f6c-9e6f-9374e47bceab\",\n                        \"84196ac4-ea1f-4487-8cd6-234bfddb2f41\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"2431ded2-3ed0-408a-8317-6c195ab8ffca\",\n            \"name\": \"potted plant\",\n            \"appearances\": [\n                {\n                    \"start\": 26.486791666666665,\n                    \"end\": 35.032999999999994,\n                    \"detection_ids\": [\n                        \"0a3f3b77-abd8-44dd-b109-fb0bfb7f2084\",\n                        \"9452ee23-025d-48a7-8622-c3841548896b\",\n                        \"94d0b155-d8d4-4aad-9a94-7ff2531b7061\",\n                        \"1308e2d8-46f1-41eb-8c8f-26523b7351cb\"\n                    ]\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"c6376339-12f4-4d67-bcd4-b21396792572"},{"name":"Get OCR Appearances","id":"fcfbcff4-6b0c-4ef8-a5a0-5f209ff7392e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/appearances/ocr","description":"<p>Returns an array of on screen text appearances for the asset, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the on screen text appearing</li>\n<li><code>text</code> : text content appearing</li>\n<li><code>appearances: start</code> : start time of the specific appearance</li>\n<li><code>appearances: end</code> : end time of the specific appearance</li>\n<li><code>appearances: text_detection_ids</code> : unique identifier of the text appearance</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","appearances","ocr"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"}]}},"response":[{"id":"7ef1aaad-cae5-4067-8824-e6f4432b881c","name":"Get OCR Appearances","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/appearances/ocr","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","appearances","ocr"],"variable":[{"key":"asset_id","value":"{{asset_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 21:50:52 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"71809"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1e631d69-7f08-8df8-1b23-564f101be763\",\n            \"text\": \"AUKUS\",\n            \"appearances\": [\n                {\n                    \"start\": 31.032999999999994,\n                    \"end\": 35.032999999999994,\n                    \"text_detection_ids\": [\n                        \"b2c48d3e-a3a4-414c-9901-d0afe4bc0af5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"631de3ea-b18d-35e6-67a7-3157e91a8aa6\",\n            \"text\": \"AK\",\n            \"appearances\": [\n                {\n                    \"start\": 7.008999999999999,\n                    \"end\": 11.008999999999999,\n                    \"text_detection_ids\": [\n                        \"8522f91c-6072-4510-87ae-aeb931192e5f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"de212882-2e4a-a62c-8015-c910b6e061e0\",\n            \"text\": \"Ak;:\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 4.0,\n                    \"text_detection_ids\": [\n                        \"e58c746f-6b8c-4cad-8c23-6b6bcf54823d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"8985376a-7fc1-9bc2-b183-99514951aea5\",\n            \"text\": \"SAN DIEGO, CA\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 4.0,\n                    \"text_detection_ids\": [\n                        \"b811fdb7-1a4f-45cf-a4e1-d7a30dde0266\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"cd6c1bc4-d9ea-ee67-ba3e-a9c65c890c6c\",\n            \"text\": \"DIEGO,\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"b64d7cfb-5dbb-438e-943c-c09f9c529e09\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"4442e4af-0916-f53a-07fb-8ca9a49b98ed\",\n            \"text\": \"Australia\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"44bedae2-1bce-4692-9f02-e2002396ef48\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"a85776e9-0ba2-95bf-8de8-4d5bc36b2f4a\",\n            \"text\": \"AUKU\",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"text_detection_ids\": [\n                        \"3ebe3073-d54a-422c-a193-847e99165936\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"89f9c9f4-89be-2a83-cf57-e53b9197d288\",\n            \"text\": \"United Kingdom\",\n            \"appearances\": [\n                {\n                    \"start\": 4.005999999999999,\n                    \"end\": 8.006,\n                    \"text_detection_ids\": [\n                        \"b6e0b1e9-ab7f-4fc2-97eb-28c8fecd48f5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"216bc195-2fb2-00d5-eb42-d2fcd529eb35\",\n            \"text\": \"Kin\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"text_detection_ids\": [\n                        \"30ac625c-dd4f-466a-a61a-c08d3b4a322d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"01497221-4022-6582-93f9-7d05434c359e\",\n            \"text\": \"XKE\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"text_detection_ids\": [\n                        \"bc6a0b83-835b-4b76-8c85-1a5e82ae6517\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"8780a7ed-2211-5496-da18-badfbbe9ad98\",\n            \"text\": \"Ted Kingdom\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"text_detection_ids\": [\n                        \"255df806-6cee-4436-92ed-7612ff5d776e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"7516fd43-adaa-5e0b-8a65-a672c39845d2\",\n            \"text\": \"US\",\n            \"appearances\": [\n                {\n                    \"start\": 4.005999999999999,\n                    \"end\": 8.006,\n                    \"text_detection_ids\": [\n                        \"15d2940a-f970-4f78-8cc5-ac8cf1e307ca\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"25b643d4-dbc6-d6ad-2dd5-35836aeb57c8\",\n            \"text\": \"GdOM-\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"text_detection_ids\": [\n                        \"80ee2dea-8ece-4810-bec4-ae7b5f8a7fee\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"ecc919b1-c2b7-7740-ffa7-7cda77176d07\",\n            \"text\": \"AUSTRALIA\",\n            \"appearances\": [\n                {\n                    \"start\": 31.032999999999994,\n                    \"end\": 35.032999999999994,\n                    \"text_detection_ids\": [\n                        \"d8600056-d925-47e7-8e15-d75392b55fd1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"730a5346-1cd8-6980-a209-ab9d51eafb8f\",\n            \"text\": \"DieGo;\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"text_detection_ids\": [\n                        \"39772c64-d754-4f7f-bf7c-0f1ddba67229\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"50ca729d-24ec-fb44-0d0a-129ebc8c9387\",\n            \"text\": \"SAN DIE\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"text_detection_ids\": [\n                        \"ea038300-55a0-4bee-949d-753ab5415062\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"abbd147b-8326-758b-3f6c-d1e9756f93f9\",\n            \"text\": \"and Prime Minister Sunak\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"text_detection_ids\": [\n                        \"4427982d-ffe4-4d26-8b7b-b5ac88115102\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"f253efe3-02d3-2ab2-64a7-6e0ce65be769\",\n            \"text\": \"United States\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"text_detection_ids\": [\n                        \"e0d93953-2d57-4d55-a6d5-7a0dfb20c0bc\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"3e8d115e-b4b3-2b9e-9479-f387dbe14ee1\",\n            \"text\": \"CA\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"daa46ae7-c295-464b-a831-88b93609624f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"a61a1462-88e5-de16-d7f5-e2d2f0071cf2\",\n            \"text\": \"~usPrime\\\"Minister Albanese\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"text_detection_ids\": [\n                        \"51484ad7-d6ec-4c9d-8c42-f2b0246f18ea\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"64528688-b123-441b-10a4-d86b5aa7a542\",\n            \"text\": \"UNITED\",\n            \"appearances\": [\n                {\n                    \"start\": 10.011999999999999,\n                    \"end\": 14.011999999999999,\n                    \"text_detection_ids\": [\n                        \"62883b9a-c479-4b21-9477-a0ff8880dfd4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"62a0282d-3956-8be0-9447-0486eaf70c4f\",\n            \"text\": \"SAN\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"6866f51f-9430-496e-a3d8-d750e84cffa2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"6b929ef1-9b1c-9255-7544-37d782a59faa\",\n            \"text\": \"UNITEd STATES\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"751a5383-ba18-4745-a2e1-309d0a028a39\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"73111e8c-0f88-06a0-3c4f-423f7ef967cd\",\n            \"text\": \"Australia and the\",\n            \"appearances\": [\n                {\n                    \"start\": 4.005999999999999,\n                    \"end\": 8.006,\n                    \"text_detection_ids\": [\n                        \"60f3e88a-5752-4aff-8196-1de85959b3a0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"e07b20b6-637d-7afd-1e8f-e2379ce02684\",\n            \"text\": \"ED StaTES\",\n            \"appearances\": [\n                {\n                    \"start\": 3.005,\n                    \"end\": 7.005,\n                    \"text_detection_ids\": [\n                        \"156aee9c-2474-4e87-b423-07475b74fb1d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"ed69f93d-e4de-824f-bf59-df120854048b\",\n            \"text\": \"D KI'\",\n            \"appearances\": [\n                {\n                    \"start\": 4.005999999999999,\n                    \"end\": 8.006,\n                    \"text_detection_ids\": [\n                        \"628f63e3-4732-4d77-803e-776511a041e2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"afbceec0-b1be-e39b-1636-59ad92bcddbe\",\n            \"text\": \"UNITED STe\",\n            \"appearances\": [\n                {\n                    \"start\": 4.005999999999999,\n                    \"end\": 8.006,\n                    \"text_detection_ids\": [\n                        \"99580d9f-480d-44a6-93ba-9251eb631716\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"e1e56493-b30f-b11f-1069-00fc08eb7694\",\n            \"text\": \"UNITED KINGD\",\n            \"appearances\": [\n                {\n                    \"start\": 7.008999999999999,\n                    \"end\": 11.008999999999999,\n                    \"text_detection_ids\": [\n                        \"fa3dde64-a786-493e-b2c7-e6f1a73feeca\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"ddb90563-f05a-0142-590b-f04320fbf93a\",\n            \"text\": \"KUS\",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"text_detection_ids\": [\n                        \"d3885239-f28d-41c6-ad5d-bbbe84a3e9fd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"bc06e5e5-cc6e-9381-8031-a1b3db07e129\",\n            \"text\": \"capable allies\",\n            \"appearances\": [\n                {\n                    \"start\": 7.008999999999999,\n                    \"end\": 11.008999999999999,\n                    \"text_detection_ids\": [\n                        \"4d0dd0f0-b574-4175-a4e9-06de4a33d54f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"319e07ee-38ad-b9a6-672e-a0c1cdea4109\",\n            \"text\": \"ED STA\",\n            \"appearances\": [\n                {\n                    \"start\": 7.008999999999999,\n                    \"end\": 11.008999999999999,\n                    \"text_detection_ids\": [\n                        \"e2aea2bc-171a-4bc0-b496-cc87b50abf73\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"eb18229f-11eb-6e0f-b5d5-1f8c2a527d23\",\n            \"text\": \"and prosperous future\",\n            \"appearances\": [\n                {\n                    \"start\": 10.011999999999999,\n                    \"end\": 14.011999999999999,\n                    \"text_detection_ids\": [\n                        \"369132f8-b2f4-427a-b9f7-dc555bdd71a5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"8d783d0b-f98c-bd30-368d-853bc2bdd72e\",\n            \"text\": \"peaceful\",\n            \"appearances\": [\n                {\n                    \"start\": 10.011999999999999,\n                    \"end\": 14.011999999999999,\n                    \"text_detection_ids\": [\n                        \"d0c3dab2-beaa-4148-be4d-be72a035c096\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"b027ff3f-749f-c249-5187-b8c583c2fa8e\",\n            \"text\": \"UNITED KINGDOM\",\n            \"appearances\": [\n                {\n                    \"start\": 31.032999999999994,\n                    \"end\": 35.032999999999994,\n                    \"text_detection_ids\": [\n                        \"43f78fb9-0d09-472d-97aa-ecf3f2314e04\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"e000ff05-a72f-6488-4e12-a64df62acac2\",\n            \"text\": \"for a more\",\n            \"appearances\": [\n                {\n                    \"start\": 10.011999999999999,\n                    \"end\": 14.011999999999999,\n                    \"text_detection_ids\": [\n                        \"572df3a2-bfa7-4dbe-98e4-f43992c14377\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"e4f3afee-4dad-e759-e458-699295df5e6e\",\n            \"text\": \"unite us allacioss\",\n            \"appearances\": [\n                {\n                    \"start\": 13.014999999999999,\n                    \"end\": 17.015,\n                    \"text_detection_ids\": [\n                        \"495509f0-f946-4304-8199-95049716ecce\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"8f9aaee2-2a32-2ed4-d9c6-d026119609b6\",\n            \"text\": \"the'Atlantic and Pacific\",\n            \"appearances\": [\n                {\n                    \"start\": 13.014999999999999,\n                    \"end\": 17.015,\n                    \"text_detection_ids\": [\n                        \"23530f58-5b68-4544-bedf-ddf0d5679880\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"619d390b-0dd4-c969-7a0f-7c56f28c5c1c\",\n            \"text\": \"together to\",\n            \"appearances\": [\n                {\n                    \"start\": 16.017999999999997,\n                    \"end\": 20.017999999999997,\n                    \"text_detection_ids\": [\n                        \"3183f0a5-55bf-47e9-bccf-f8554493885b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"a6590794-f2fd-6673-8d3a-0f28a4857762\",\n            \"text\": \"United\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"08fcba9d-98e4-4ab2-bdad-43a96fed839c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"6f24d11c-f42b-af05-4a30-893d9f6b4d48\",\n            \"text\": \"Ak\",\n            \"appearances\": [\n                {\n                    \"start\": 14.975291666666667,\n                    \"end\": 18.975291666666667,\n                    \"text_detection_ids\": [\n                        \"550fcb7c-61a8-4ef7-a3d7-9fe7bc57afe9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"af6310ff-e957-1d7d-16cc-2f005e443278\",\n            \"text\": \"For more than a century;\",\n            \"appearances\": [\n                {\n                    \"start\": 16.017999999999997,\n                    \"end\": 20.017999999999997,\n                    \"text_detection_ids\": [\n                        \"60a9b733-a51c-43f5-913c-b69687b9d544\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"03de2a63-6ab5-d274-2037-c4c3a9109962\",\n            \"text\": \"Australia 5\",\n            \"appearances\": [\n                {\n                    \"start\": 14.975291666666667,\n                    \"end\": 18.975291666666667,\n                    \"text_detection_ids\": [\n                        \"1bfb7257-5ca8-447e-943a-3d1f3ed0a89f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"c2c15b86-8984-ad9c-5e39-ce4430027c47\",\n            \"text\": \"SAN DI\",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"text_detection_ids\": [\n                        \"58565246-d220-43bd-92f0-bb74dc449f2c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"f9706463-4a5a-120b-f4d0-7e819de92a20\",\n            \"text\": \"United Kingdom-\",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"text_detection_ids\": [\n                        \"9c29f152-9288-4bcb-bc86-f8dcc171a0a4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"19cfc5dd-4625-aaf2-c3f1-1b342e3348c8\",\n            \"text\": \"United KinGDoM\",\n            \"appearances\": [\n                {\n                    \"start\": 14.975291666666667,\n                    \"end\": 18.975291666666667,\n                    \"text_detection_ids\": [\n                        \"bf8ba056-fe7f-4a8c-9492-968c837a3782\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"46ba32ab-10d8-17b6-628b-ecaf52ab9623\",\n            \"text\": \"SAN \",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"text_detection_ids\": [\n                        \"fd33b497-89ad-451b-8ac3-4b8c5fbf4ee4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"a1838b77-6be7-32a7-cf22-ee7e5c331f69\",\n            \"text\": \"we stood\",\n            \"appearances\": [\n                {\n                    \"start\": 16.017999999999997,\n                    \"end\": 20.017999999999997,\n                    \"text_detection_ids\": [\n                        \"dcf00614-160f-47a4-b70a-13aca41c95ae\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"4d238f07-435c-e38a-74f5-e6ccb2d9ebb4\",\n            \"text\": \"SiatEs\",\n            \"appearances\": [\n                {\n                    \"start\": 14.975291666666667,\n                    \"end\": 18.975291666666667,\n                    \"text_detection_ids\": [\n                        \"da492dc5-2261-4b72-98fc-1c3c8d369528\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"0714b8cc-0fff-984f-cd0f-4d89e5b11694\",\n            \"text\": \"Diego;\",\n            \"appearances\": [\n                {\n                    \"start\": 16.017999999999997,\n                    \"end\": 20.017999999999997,\n                    \"text_detection_ids\": [\n                        \"991d912f-8d96-40d4-9d18-890f3583eed0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"0e998de7-ed09-453a-8384-2cf9872bbfd9\",\n            \"text\": \"STATES\",\n            \"appearances\": [\n                {\n                    \"start\": 22.023999999999997,\n                    \"end\": 26.023999999999997,\n                    \"text_detection_ids\": [\n                        \"bf16d783-e767-4c97-a7dc-02e8416db769\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"66bb3be2-2dc3-a467-ed3e-c06c9ea8d094\",\n            \"text\": \"UNITED K\",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"text_detection_ids\": [\n                        \"76e53292-6ba1-4ba3-9794-304ed83b5b8d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"ba7be5c9-bbec-48a0-4107-9835f3d8f3fb\",\n            \"text\": \"SaN\",\n            \"appearances\": [\n                {\n                    \"start\": 16.017999999999997,\n                    \"end\": 20.017999999999997,\n                    \"text_detection_ids\": [\n                        \"a7018c44-4040-49f6-9fc9-f130c047c5d4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"85c710e6-17fb-ceb4-949d-479e6bc63f61\",\n            \"text\": \"AustraLiA\",\n            \"appearances\": [\n                {\n                    \"start\": 16.017999999999997,\n                    \"end\": 20.017999999999997,\n                    \"text_detection_ids\": [\n                        \"11bdf673-cfad-40dc-a011-172baa7ba328\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"35317917-8387-453e-d317-306f8b48b55a\",\n            \"text\": \"XK\",\n            \"appearances\": [\n                {\n                    \"start\": 16.017999999999997,\n                    \"end\": 20.017999999999997,\n                    \"text_detection_ids\": [\n                        \"4cd88210-e619-4763-93ed-ebfc42035a82\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"50e0cb80-4eea-86bd-e869-384bdaa6769d\",\n            \"text\": \"UNiteD KinGDoM\",\n            \"appearances\": [\n                {\n                    \"start\": 16.017999999999997,\n                    \"end\": 20.017999999999997,\n                    \"text_detection_ids\": [\n                        \"269de6a7-c0ba-4d04-a753-f3c2b4fc5f3e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"a2e6aa20-1bce-5e25-0621-3853db298ebd\",\n            \"text\": \"Uhited\",\n            \"appearances\": [\n                {\n                    \"start\": 16.017999999999997,\n                    \"end\": 20.017999999999997,\n                    \"text_detection_ids\": [\n                        \"84733580-6dd3-4e9a-8283-2cab5b2da8fb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"f2731c73-f2a0-52f0-429f-6fb622ab5089\",\n            \"text\": \"KINgDom=\",\n            \"appearances\": [\n                {\n                    \"start\": 16.017999999999997,\n                    \"end\": 20.017999999999997,\n                    \"text_detection_ids\": [\n                        \"5d1f9b03-69f8-4614-ae38-eaecad1cba36\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"0e6008fd-d9c0-1eae-f5c7-f5cdedc0c303\",\n            \"text\": \"SiAtEs\",\n            \"appearances\": [\n                {\n                    \"start\": 16.017999999999997,\n                    \"end\": 20.017999999999997,\n                    \"text_detection_ids\": [\n                        \"c9f93cbb-9e2c-4a2c-8bcf-5b91d72d3e80\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"1c3ea6db-16db-9ab6-8a9c-c4b6507c45a4\",\n            \"text\": \"DIEGO;\",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"text_detection_ids\": [\n                        \"f727c271-25c0-46e3-845f-662c11847f10\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"9e583330-ed03-8016-2148-cba6a5b55ca3\",\n            \"text\": \"DiEgo;\",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"text_detection_ids\": [\n                        \"fb6059c3-7122-4a3a-be50-40fe6454797d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"a6f8c2a0-dfe3-1b5c-dba5-fed41b17d2e6\",\n            \"text\": \"'UnitEd\",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"text_detection_ids\": [\n                        \"263055de-6648-4d5b-b1ce-403b539e0ba2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"57fb2a81-2144-d660-7703-858580ce285a\",\n            \"text\": \"UNITED Kingdom\",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"text_detection_ids\": [\n                        \"31c08c1b-564e-4525-92b7-ac49e9153bd0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"f4306d31-01f1-da4a-31f1-9899c7bd9cca\",\n            \"text\": \"AustraliA\",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"text_detection_ids\": [\n                        \"3b6284b8-61d7-4fad-beff-4a1005d1f3ea\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"3905ce03-2706-b165-9164-b6fd5e06e4ea\",\n            \"text\": \") STATES\",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"text_detection_ids\": [\n                        \"8dd0b601-a44e-46f7-b05c-2301c7407d53\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"c289bc4a-6d62-efae-a181-20c6985bc604\",\n            \"text\": \"defend freedom and\",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"text_detection_ids\": [\n                        \"4f1c62aa-f7fd-41d0-b4a7-a72ad7c2f0b2\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"513150ab-2429-1be5-b10c-41b4cf08e410\",\n            \"text\": \"strengthen democracy\",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"text_detection_ids\": [\n                        \"422402cb-75de-4dc9-ba35-9fe87d92dfd8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"b8464cdd-84b5-f068-ad72-bf5c4f32163d\",\n            \"text\": \"States\",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"text_detection_ids\": [\n                        \"a20080be-77b7-4dac-95c9-25fa12e6f847\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"2daeae68-9464-a79c-d928-6422eeba28fd\",\n            \"text\": \"SAN DIEGC\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"d3642b1d-cc60-4ec0-93b9-e8fdb3cbf463\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"fd626475-586b-77c3-64b7-6570fc486707\",\n            \"text\": \"DIeGo;\",\n            \"appearances\": [\n                {\n                    \"start\": 22.023999999999997,\n                    \"end\": 26.023999999999997,\n                    \"text_detection_ids\": [\n                        \"32d812b0-5bb1-461f-9f62-6211bb2d0a5e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"cc410f69-750d-358e-70a3-61d453beaa1f\",\n            \"text\": \"strongest possible\",\n            \"appearances\": [\n                {\n                    \"start\": 22.023999999999997,\n                    \"end\": 26.023999999999997,\n                    \"text_detection_ids\": [\n                        \"bf09ad28-b6cf-42b7-ac1b-b68f82df2b4f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"9dc04ece-c984-d6e0-15d9-dd4b9d71c381\",\n            \"text\": \"VaeDe\",\n            \"appearances\": [\n                {\n                    \"start\": 22.023999999999997,\n                    \"end\": 26.023999999999997,\n                    \"text_detection_ids\": [\n                        \"5f5cf2ed-6ca7-41b7-8b24-a6c3db9b26c4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"2d40a4ad-0b86-a45e-c580-4eda51418ca6\",\n            \"text\": \"UNITED KINGDC\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"7bebd750-241b-4663-9320-c2c03386a03d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"b815a777-1371-35bc-3050-bc76a97e3fa0\",\n            \"text\": \"Kingdom\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"cff4a2c8-4820-4d30-9472-4f6467a818b6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"fc654a18-58e0-7e8a-3160-7ad818c07185\",\n            \"text\": \"position to navigate\",\n            \"appearances\": [\n                {\n                    \"start\": 22.023999999999997,\n                    \"end\": 26.023999999999997,\n                    \"text_detection_ids\": [\n                        \"475cec72-46d2-44b9-bb0c-6adad46d1a9b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"2836e233-5c4b-c3d8-31e7-1e5579a43bad\",\n            \"text\": \"ngdou\",\n            \"appearances\": [\n                {\n                    \"start\": 22.023999999999997,\n                    \"end\": 26.023999999999997,\n                    \"text_detection_ids\": [\n                        \"468ccb1f-0a68-409a-ac0d-68c3788d48b1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"af6c1e58-6ec3-3ef4-6b73-00437964d9f8\",\n            \"text\": \"United StaTES\",\n            \"appearances\": [\n                {\n                    \"start\": 22.023999999999997,\n                    \"end\": 26.023999999999997,\n                    \"text_detection_ids\": [\n                        \"e68ab538-6af4-4d0e-874e-96498076e43b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"49585cf9-f7e8-1c02-241a-27ae9b84ae95\",\n            \"text\": \"Idiego;\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"5316aff3-6970-4ec3-b5e0-836a697fb6b8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"bbf8619a-9375-4541-17b4-31af3f0afc8a\",\n            \"text\": \"XE\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"1281329a-cc5f-44e9-a6fd-8670b7adfd7a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"ff5a9ece-725c-785f-1a7b-5f84340b584d\",\n            \"text\": \"ALstDiLuA\",\n            \"appearances\": [\n                {\n                    \"start\": 22.023999999999997,\n                    \"end\": 26.023999999999997,\n                    \"text_detection_ids\": [\n                        \"23df3085-7be3-40d5-bf7c-a1e6aadf56da\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"7e04bb2f-167d-9a90-7576-f38a601a5d05\",\n            \"text\": \"Umited\",\n            \"appearances\": [\n                {\n                    \"start\": 22.023999999999997,\n                    \"end\": 26.023999999999997,\n                    \"text_detection_ids\": [\n                        \"d3910585-2cfe-4dd1-bd3c-90ce0a3c9264\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"97bf9c5c-97f9-6bf7-b533-f01b4e751204\",\n            \"text\": \"bu\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"b36cd497-16f8-4cb8-aaaf-5138eb346445\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"45ad3810-c6e7-2896-71b7-acd3417c9edb\",\n            \"text\": \"Austoalut\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"030ba56e-8508-48a0-a14b-72d74e34d1da\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"e817835e-5241-8770-89ce-eb0e0db2e924\",\n            \"text\": \"challenges of\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"13042457-6c5d-42ec-8bfe-0a8a9e17bc2a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"db54d9d1-28c9-6a7b-ae75-2acf68994af6\",\n            \"text\": \"today and tomorrow\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"7c830aba-391c-47f2-b467-704010a04d61\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"8fc42c6d-df99-66db-3b09-e84365034357\",\n            \"text\": \"the\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"c2dbecbe-3628-4803-ac8c-8a085bab7091\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"e5b4b26a-5386-5c30-a891-7c6aacbbe19c\",\n            \"text\": \"Lted [\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"8e23e396-9fad-4e52-95f5-868f42956e0e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"eb8703fb-bc03-6bee-8a3e-d0c5b39a1b62\",\n            \"text\": \"UNiTED states\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"text_detection_ids\": [\n                        \"7888a851-9df0-4eee-b1ec-9420cb65e6cd\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"7fc56270-e7a7-0fa8-1a59-35b72eacbe29\",\n            \"text\": \"A\",\n            \"appearances\": [\n                {\n                    \"start\": 34.035999999999994,\n                    \"end\": 38.035999999999994,\n                    \"text_detection_ids\": [\n                        \"6a0096f1-7c84-4e0c-aedd-6dc38ededdf5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"87561dc4-0b2b-b32d-400d-593ccb59133a\",\n            \"text\": \"IKUS\",\n            \"appearances\": [\n                {\n                    \"start\": 28.029999999999998,\n                    \"end\": 32.03,\n                    \"text_detection_ids\": [\n                        \"1c194c76-e54d-4f46-bfbf-23ca2e32e12a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"ec1a9e93-2cb4-3dfd-f4e4-b2d249919219\",\n            \"text\": \"UNITED STATES\",\n            \"appearances\": [\n                {\n                    \"start\": 28.029999999999998,\n                    \"end\": 32.03,\n                    \"text_detection_ids\": [\n                        \"cfeef586-ea44-4556-8995-0cb89ab02bd6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"8a395cf3-3276-b5f0-9c18-e308063b464d\",\n            \"text\": \"could not ask\",\n            \"appearances\": [\n                {\n                    \"start\": 28.029999999999998,\n                    \"end\": 32.03,\n                    \"text_detection_ids\": [\n                        \"936f662e-ab20-479d-9fbd-e4f191c6eb18\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"117c0561-d03d-db9e-65a6-e7fc5873bd41\",\n            \"text\": \"And the United States\",\n            \"appearances\": [\n                {\n                    \"start\": 28.029999999999998,\n                    \"end\": 32.03,\n                    \"text_detection_ids\": [\n                        \"cd4fc3f6-dd72-4c6e-a1d7-919f32745270\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"1fa6d7b7-0fd1-1712-5e73-09595eeebb1d\",\n            \"text\": \"Aeee#att\",\n            \"appearances\": [\n                {\n                    \"start\": 29.656625,\n                    \"end\": 33.656625,\n                    \"text_detection_ids\": [\n                        \"59c75bb2-78e0-4b0a-b0ac-906bc96763e1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"f0cb63e0-632d-0a4e-6690-fd3c550e51bc\",\n            \"text\": \"for two better\",\n            \"appearances\": [\n                {\n                    \"start\": 29.656625,\n                    \"end\": 33.656625,\n                    \"text_detection_ids\": [\n                        \"cbb6c6dd-17ff-4f02-8354-529bf1450c78\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"087b53fe-043a-b235-585f-8000c35c352a\",\n            \"text\": \"UNITE\",\n            \"appearances\": [\n                {\n                    \"start\": 31.032999999999994,\n                    \"end\": 35.032999999999994,\n                    \"text_detection_ids\": [\n                        \"c9114314-e0d0-4a09-8b3c-36cfa1354349\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"bce7365a-4652-b694-f3ac-0d1ff86296d0\",\n            \"text\": \"friends or partners\",\n            \"appearances\": [\n                {\n                    \"start\": 29.656625,\n                    \"end\": 33.656625,\n                    \"text_detection_ids\": [\n                        \"aaf76e48-eef4-444b-8bcb-baf770624f90\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"81650a91-5574-1226-1d2e-ea01eaee8363\",\n            \"text\": \"work to create a safer;\",\n            \"appearances\": [\n                {\n                    \"start\": 31.032999999999994,\n                    \"end\": 35.032999999999994,\n                    \"text_detection_ids\": [\n                        \"790071f8-b2e7-4e38-8d85-e2df3449676a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"bdf2931e-0d31-062e-4380-7fd400015050\",\n            \"text\": \"to stand with as we\",\n            \"appearances\": [\n                {\n                    \"start\": 31.032999999999994,\n                    \"end\": 35.032999999999994,\n                    \"text_detection_ids\": [\n                        \"349b2d7b-e79c-4dbc-9ee3-72892134f4a6\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"c673b80a-4daa-6221-4b40-33da0cb8b4ab\",\n            \"text\": \"AUST\",\n            \"appearances\": [\n                {\n                    \"start\": 34.035999999999994,\n                    \"end\": 38.035999999999994,\n                    \"text_detection_ids\": [\n                        \"ed6900a9-a40f-4fc0-ae42-3617d5e87b6f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"83f56f37-a245-ccaf-8c88-5814074777f6\",\n            \"text\": \"TE\",\n            \"appearances\": [\n                {\n                    \"start\": 37.038999999999994,\n                    \"end\": 41.038999999999994,\n                    \"text_detection_ids\": [\n                        \"a97f0ca6-e792-4381-a0f9-966f3aaa06cb\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"320ddfac-8a77-f914-5852-a4d7f464bd70\",\n            \"text\": \"peaceful future\",\n            \"appearances\": [\n                {\n                    \"start\": 37.038999999999994,\n                    \"end\": 41.038999999999994,\n                    \"text_detection_ids\": [\n                        \"c40d4f73-0984-4cec-845e-d58595574411\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"62b6d9ed-fb2a-531c-e7e0-f8d6cd0a2ec9\",\n            \"text\": \"(ud\",\n            \"appearances\": [\n                {\n                    \"start\": 37.038999999999994,\n                    \"end\": 41.038999999999994,\n                    \"text_detection_ids\": [\n                        \"0614177e-b12a-4247-961b-1633cce91624\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"a8881791-4267-b6aa-8cd3-2304a0e48d0f\",\n            \"text\": \"for the people everywhere:\",\n            \"appearances\": [\n                {\n                    \"start\": 37.038999999999994,\n                    \"end\": 41.038999999999994,\n                    \"text_detection_ids\": [\n                        \"10c6ed1b-b8ca-4601-8bd4-e37e6e968e43\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"c819dfa7-babb-3cc0-d59b-c465cc963e3d\",\n            \"text\": \"M @ @ B\",\n            \"appearances\": [\n                {\n                    \"start\": 37.038999999999994,\n                    \"end\": 41.038999999999994,\n                    \"text_detection_ids\": [\n                        \"2cb5eff5-958d-480f-8bca-f8db3cb899db\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"dc75d922-7006-8032-257e-6b2053230b46\",\n            \"text\": \"NGDOM\",\n            \"appearances\": [\n                {\n                    \"start\": 37.038999999999994,\n                    \"end\": 41.038999999999994,\n                    \"text_detection_ids\": [\n                        \"ef7eddae-07cf-4012-bb97-9ffcda20ba13\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"9d5ed678-fe57-bcca-6101-40957afab571\",\n            \"text\": \"B\",\n            \"appearances\": [\n                {\n                    \"start\": 37.038999999999994,\n                    \"end\": 41.038999999999994,\n                    \"text_detection_ids\": [\n                        \"1d8ec45b-968f-40c2-a912-0446a46f463c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"addec426-932e-7132-3700-afa1911f8f1c\",\n            \"text\": \"more\",\n            \"appearances\": [\n                {\n                    \"start\": 37.038999999999994,\n                    \"end\": 41.038999999999994,\n                    \"text_detection_ids\": [\n                        \"77a87a92-f2fd-4ce5-a319-8f39e75ec54e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"7e9a0bb1-4667-7a76-57cd-53e1cb575d2b\",\n            \"text\": \"WASHINGTON\",\n            \"appearances\": [\n                {\n                    \"start\": 37.038999999999994,\n                    \"end\": 41.038999999999994,\n                    \"text_detection_ids\": [\n                        \"1595be46-852c-4a1a-a834-f8d7dbe3900f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"e5655277-3df8-d7e8-4401-4c4b77fcedd5\",\n            \"text\": \"THE WHITE HOUSE\",\n            \"appearances\": [\n                {\n                    \"start\": 37.038999999999994,\n                    \"end\": 41.038999999999994,\n                    \"text_detection_ids\": [\n                        \"883df77b-2b44-4738-babb-4572a84e6984\"\n                    ]\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"fcfbcff4-6b0c-4ef8-a5a0-5f209ff7392e"},{"name":"Get Transcript Appearances","id":"2e73607b-1a22-4ae1-a621-14eeb0f42e5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/appearances/transcripts","description":"<p>Returns an array of transcript chunks for the asset, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the transcript chunk appearing</li>\n<li><code>language</code> : the language of the transcript produced by Vidrovr</li>\n<li><code>text</code> : text content of the transcript chunk</li>\n<li><code>start</code> : start time of the specific appearance</li>\n<li><code>end</code> : end time of the specific appearance</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","appearances","transcripts"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"}]}},"response":[{"id":"fd27b202-430f-4e2b-a2ec-a1ef1cc60bd5","name":"Get Transcript Appearances","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/appearances/transcripts","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","appearances","transcripts"],"variable":[{"key":"asset_id","value":"{{asset_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 21:51:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"25680"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"eb139480-bf99-466f-ad18-b857a60cefe7\",\n            \"language\": \"english\",\n            \"text\": \"It's an honor to be here to welcome primers Abones, and Eminisin, Australia, and our kingdom are two America's most stalwart and capable allies, Common values, Our shared vision, more peaceful and prosperous future, unite us all across Atlantic and Pacific, for more than a century we stood together to defend freedom and strength and democracy of putting ourselves in the strongest possible position to navigate the challenges of today and tomorrow together and the United States could not ask for two better friends or partners to stand with, as we work, the greatest safer, more peaceful future for the people everywhere.\",\n            \"start\": 0.0,\n            \"end\": 41.0\n        }\n    ]\n}"}],"_postman_id":"2e73607b-1a22-4ae1-a621-14eeb0f42e5f"},{"name":"Get Named Entities Appearances","id":"6d1f9796-f637-4e50-be4b-8f900b4efb1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/appearances/named_entities","description":"<p>Returns an array of named entity appearances for the asset, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the named entity appearing</li>\n<li><code>name</code> : name of the named entity appearing</li>\n<li><code>appearances: start</code> : start time of the specific appearance</li>\n<li><code>appearances: end</code> : end time of the specific appearance</li>\n<li><code>appearances: neo_ids</code> : unique identifier of the named entity appearance</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","appearances","named_entities"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"}]}},"response":[{"id":"469b6a3a-df4c-4c8a-a3e0-3dbaa6f648c0","name":"Get Named Entities Appearances","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/appearances/named_entities","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","appearances","named_entities"],"variable":[{"key":"asset_id","value":"{{asset_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 21:51:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"117286"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"3a040f76-9d43-46a7-87a1-8fc2f4901715\",\n            \"name\": \"AK\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 11.008999999999999,\n                    \"neo_ids\": [\n                        \"10efd251-fea9-4679-a9fb-e9df8e7ab70a\",\n                        \"0098bcbf-5c82-4f2f-8015-212d9c181e85\",\n                        \"6ce7cf78-44b0-4c7a-bde6-ec594e7a51dc\",\n                        \"41a7556b-55b8-4dc3-b768-8f69ed9f619c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"b74a275e-a847-41a9-9fdf-f5f2fc641bdc\",\n            \"name\": \"SAN DIEGO\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 4.0,\n                    \"neo_ids\": [\n                        \"214abdec-b543-4eb2-8a45-c476ec12cc7c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"071b7346-a6ca-48d1-bc29-b503d1117e87\",\n            \"name\": \"CA\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 5.003,\n                    \"neo_ids\": [\n                        \"352413f0-bc39-4232-8972-17351a2a8559\",\n                        \"304ccbb6-f2b3-4aea-b3de-4b887a86538a\",\n                        \"41d5ad37-e09f-44d4-b781-bee3e6d12023\"\n                    ]\n                },\n                {\n                    \"start\": 14.975291666666667,\n                    \"end\": 29.026999999999997,\n                    \"neo_ids\": [\n                        \"3c99ba80-b031-4e4e-90e4-6c7e442a2d63\",\n                        \"40dcc33c-27b5-4e48-89ca-55186bd3f4cf\",\n                        \"5d1d994f-5b59-4d57-9393-e5acaae32121\",\n                        \"b449a335-f69f-4954-a605-13fca635b874\",\n                        \"0f3d6788-fd27-4e2a-9b68-aae4bb2daad8\",\n                        \"ec46e437-c283-4115-9b8c-39e00210adc5\",\n                        \"5a6bda41-8c18-4a77-90fb-7a750dd3a35c\",\n                        \"b803d87e-c281-4917-94aa-6080ce4073db\",\n                        \"70b27cba-364c-4cb5-9416-f50deef6d0ca\",\n                        \"e28d638d-6875-4e91-ac73-8f316e08a92c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"ab5fcf77-1e6f-4018-8420-483efeb057c4\",\n            \"name\": \"Abones\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 41.0,\n                    \"neo_ids\": [\n                        \"feba2153-58f2-4b3c-ba1a-d647edab7a35\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"27a46a71-0039-4364-867d-9fce51b90cbf\",\n            \"name\": \"Eminisin\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 41.0,\n                    \"neo_ids\": [\n                        \"27230733-1c8f-44e0-bf43-9b843a4b5582\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"058b0468-4f1e-4158-9be4-9dc0823b07b5\",\n            \"name\": \"Australia\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 8.006,\n                    \"neo_ids\": [\n                        \"4f6a9e46-38bf-471b-8c1d-e10292e69b34\",\n                        \"5883182b-06ec-4d86-bd34-644c5a14621f\",\n                        \"1ae83f4a-7b93-47d8-aef9-52118c0b544d\",\n                        \"15073dc1-7988-4ca2-b7fc-27dad7c417f6\"\n                    ]\n                },\n                {\n                    \"start\": 14.975291666666667,\n                    \"end\": 18.975291666666667,\n                    \"neo_ids\": [\n                        \"7be3f0a8-1186-4611-8b7f-4084bdb704ef\"\n                    ]\n                },\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"neo_ids\": [\n                        \"a178d66d-1095-4201-9f47-5a691dcad27e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"203ab2d5-c2de-4731-b793-4d0d8df95905\",\n            \"name\": \"two\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 33.656625,\n                    \"neo_ids\": [\n                        \"ff725f87-ff2b-4332-8a1b-031f82095267\",\n                        \"3f78bd98-f4a5-4347-b8c4-dadee63fa8bc\",\n                        \"35d6dd1a-9031-418b-9a5e-547147f83bc9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"2f259988-e92d-4022-864c-b0568fea11c8\",\n            \"name\": \"America\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 41.0,\n                    \"neo_ids\": [\n                        \"2d23d0e2-2544-4e56-bb15-ba4cb68744b1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"af524b72-fb77-4db1-883f-6027c528e157\",\n            \"name\": \"Atlantic\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 41.0,\n                    \"neo_ids\": [\n                        \"52ccab7a-d1a8-43fb-b7e4-36232b34cd63\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"ed5102c0-4061-4841-98e5-8f9dad5051ce\",\n            \"name\": \"Pacific\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 17.015,\n                    \"neo_ids\": [\n                        \"5aaaa80c-52b9-4701-9b8e-063ba5a849f7\",\n                        \"014e43e4-61c2-423d-945c-e727af8c69d0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"8d73eb8b-64d2-443f-a1ed-f1be6f55edf4\",\n            \"name\": \"more than a century\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 20.017999999999997,\n                    \"neo_ids\": [\n                        \"6055c0c9-913e-4201-a659-a45881ae5834\",\n                        \"2b9600ef-eb03-41ac-83bb-a7cfa717ed67\",\n                        \"c6f9b798-f805-4dc5-9da1-5868e8e16fca\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"c789a756-66ee-4bc2-bd69-7f1a65c2d395\",\n            \"name\": \"today\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 29.026999999999997,\n                    \"neo_ids\": [\n                        \"cd5e7824-9aeb-4764-96a0-d794177a9e74\",\n                        \"b7d3280d-9958-45e4-9ae0-abc05c07ec21\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"409ea374-b560-4c25-8cfc-28bebd1294dc\",\n            \"name\": \"tomorrow\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 29.026999999999997,\n                    \"neo_ids\": [\n                        \"53350699-b0a1-420d-9d4a-cbf4cb75e815\",\n                        \"0e9e8865-3b0c-41c3-8687-5664c09660c3\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"57bbf673-6701-4d2b-9c4b-7f1f790818b2\",\n            \"name\": \"the United States\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 32.03,\n                    \"neo_ids\": [\n                        \"21ef2001-0f64-4637-90be-aa418bf67ff8\",\n                        \"be27a7c5-19ba-48c1-a32e-4b2e6adfd93f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"5d5c7079-1e93-4cfb-93a5-1f3c764ec67c\",\n            \"name\": \"AUKU\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"neo_ids\": [\n                        \"efe7776f-25c3-4f5e-8fb7-1cf10b11e5c4\"\n                    ]\n                },\n                {\n                    \"start\": 14.975291666666667,\n                    \"end\": 23.020999999999997,\n                    \"neo_ids\": [\n                        \"566eecf3-eca2-40bd-97ca-dedb53846b5d\",\n                        \"4df8d80b-766a-46ed-a309-d3841c362d9b\",\n                        \"78ff0ce4-c229-416c-b2c0-a2c403eb6c31\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"c4fec1fa-737d-431d-b199-eb827367694a\",\n            \"name\": \"United Kingdom\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 8.006,\n                    \"neo_ids\": [\n                        \"3a9baf9a-99f5-4e1e-aeff-0865572a7f28\",\n                        \"352eca0b-16c1-4efd-a85e-f8ca51be738f\",\n                        \"b9eb0353-57f9-4f1f-8210-4d19dd1733df\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"6538b804-f630-44ff-a0a3-881d50597398\",\n            \"name\": \"Ted Kingdom\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"neo_ids\": [\n                        \"028648e4-2784-4af1-832e-fcacdfd41e35\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"df1dd401-a373-4b19-95d2-613f7c9395de\",\n            \"name\": \"US\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 8.006,\n                    \"neo_ids\": [\n                        \"77357dcb-dc61-4b52-bd81-a5be05b21fac\",\n                        \"ac939a63-1072-47da-ad46-94cb7149562a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"5b9eefab-4f86-45b4-afad-c6553ce6f1ff\",\n            \"name\": \"AUSTRALIA\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"neo_ids\": [\n                        \"3a241c4c-3269-4136-8552-a23c0bcdf08b\"\n                    ]\n                },\n                {\n                    \"start\": 10.011999999999999,\n                    \"end\": 35.032999999999994,\n                    \"neo_ids\": [\n                        \"503eb0f2-0eba-491f-838c-62e9f47c51c8\",\n                        \"1345e872-e056-48c7-881f-15bd605f9b9b\",\n                        \"403c7905-b1b2-47ef-9069-c174ee73c05d\",\n                        \"92fd35b0-436e-4136-a5bd-9318dfc708b4\",\n                        \"796f3f67-3b64-4dbc-b2ea-9c0306e4a243\",\n                        \"aa9c885f-4bf3-4e41-b627-3429b4d2551f\",\n                        \"09179852-7e65-426d-aee0-89f9e24d2626\",\n                        \"b3009687-cef0-4d0b-98c5-2448f2177328\",\n                        \"e36c7628-6f94-4f6c-8f21-1b1dac2bcb12\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"4aee83d6-7ad4-4745-bb8a-f4f52caa92c0\",\n            \"name\": \"DieGo\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"neo_ids\": [\n                        \"3f855f72-6850-4bf3-afba-001e8e123188\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"7f5454d3-401a-4a8d-880f-dd1863b42662\",\n            \"name\": \"Sunak\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"neo_ids\": [\n                        \"558eb31d-3f3c-43d3-9bf8-3ef9d3bedf4c\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"bcffe331-f3e7-48b7-85e2-c6a31c1aa469\",\n            \"name\": \"United States\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"neo_ids\": [\n                        \"db556948-67ee-44e2-9ee7-abe48c71cf5a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"45cb716b-caa9-4e82-9b52-f6f615e8a0b3\",\n            \"name\": \"Albanese\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 5.003,\n                    \"neo_ids\": [\n                        \"dc0553ad-581c-40f4-b1a2-9d5eed8c55ff\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"2af85bc0-78cc-46b6-934f-5c6998394523\",\n            \"name\": \"UNITED\",\n            \"appearances\": [\n                {\n                    \"start\": 4.005999999999999,\n                    \"end\": 8.006,\n                    \"neo_ids\": [\n                        \"32de8f81-bf71-4df6-b40c-0615ef7e97a7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"88061166-bdeb-4702-b2a4-1ee573ceada6\",\n            \"name\": \"UNITED KINGD\",\n            \"appearances\": [\n                {\n                    \"start\": 7.008999999999999,\n                    \"end\": 11.008999999999999,\n                    \"neo_ids\": [\n                        \"c9df7cd4-f09b-4d53-87e0-e1f06c09806e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"06d2127d-1921-488a-a7dd-49fdcefa906c\",\n            \"name\": \"KUS\",\n            \"appearances\": [\n                {\n                    \"start\": 7.008999999999999,\n                    \"end\": 23.020999999999997,\n                    \"neo_ids\": [\n                        \"8aee261c-400e-4ba7-8fe8-aa83d701b4b7\",\n                        \"1c0de24b-36d0-4b8e-9ca1-ad86090eff2b\",\n                        \"01b88fec-045c-44f9-9a3d-9a820cac2167\",\n                        \"fff1bec0-a40c-4cbc-896c-2350d614c973\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"75aa26c8-c83b-48e6-b69f-4cb8dfd11078\",\n            \"name\": \"us allacioss\",\n            \"appearances\": [\n                {\n                    \"start\": 13.014999999999999,\n                    \"end\": 17.015,\n                    \"neo_ids\": [\n                        \"9eb444ee-1d56-4fe4-8fab-a0cf5ab596d1\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"806976c7-b9f6-4a31-8871-64c3dea27c4f\",\n            \"name\": \"the'Atlantic\",\n            \"appearances\": [\n                {\n                    \"start\": 13.014999999999999,\n                    \"end\": 17.015,\n                    \"neo_ids\": [\n                        \"444546d2-4ac1-4c46-b25c-b53664faa00d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"baa5e718-c766-45f0-a2db-a846b49da4e5\",\n            \"name\": \"5\",\n            \"appearances\": [\n                {\n                    \"start\": 14.975291666666667,\n                    \"end\": 18.975291666666667,\n                    \"neo_ids\": [\n                        \"2740abc6-b675-44e2-a961-ac73d1bb2d83\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"128dbf81-3eed-43c1-ae37-9c446fb81595\",\n            \"name\": \"United Kingdom-\",\n            \"appearances\": [\n                {\n                    \"start\": 14.975291666666667,\n                    \"end\": 23.020999999999997,\n                    \"neo_ids\": [\n                        \"2901aaf1-93e5-4e53-9851-2d12cd3de595\",\n                        \"492ef863-a6f8-477d-b7da-44e31a4b33fe\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"3a6daac9-bff9-4206-94d5-bab022183a81\",\n            \"name\": \"Diego\",\n            \"appearances\": [\n                {\n                    \"start\": 14.975291666666667,\n                    \"end\": 20.017999999999997,\n                    \"neo_ids\": [\n                        \"90486e73-2f09-4572-9401-70304681d643\",\n                        \"63d9231c-1e73-4806-bcc1-cd45c0377678\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"ca5d559b-d2e2-4250-8037-52b200d76c29\",\n            \"name\": \"UNITED K\",\n            \"appearances\": [\n                {\n                    \"start\": 14.975291666666667,\n                    \"end\": 23.020999999999997,\n                    \"neo_ids\": [\n                        \"1d77d90c-0a95-401e-bf28-2fb28834803c\",\n                        \"0f3d1413-9537-433b-ab83-2e0f0327fa7d\",\n                        \"6a1076fe-1fee-4656-8a5e-b990215eecca\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"fa5d2f44-9983-40a7-90d9-dd3db475176b\",\n            \"name\": \"AustraLiA\",\n            \"appearances\": [\n                {\n                    \"start\": 16.017999999999997,\n                    \"end\": 20.017999999999997,\n                    \"neo_ids\": [\n                        \"fac7fb4c-2beb-4d60-9e5a-e1f186e9eb12\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"1c1224fa-eaf6-48df-af30-0336b0a3f6d2\",\n            \"name\": \"XK\",\n            \"appearances\": [\n                {\n                    \"start\": 16.017999999999997,\n                    \"end\": 20.017999999999997,\n                    \"neo_ids\": [\n                        \"659080d7-6071-4ff7-b4be-de87e1c82bab\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"3371a159-4e7a-4700-a456-aaacac60f4ef\",\n            \"name\": \"DiEgo\",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"neo_ids\": [\n                        \"818f7f1a-0007-4b7d-92b3-21af8cee97c4\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"8edf56b2-6712-45e7-8bd3-1055a0d19921\",\n            \"name\": \"UNITED Kingdom\",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"neo_ids\": [\n                        \"2b761810-3be0-47c7-a05b-2d0b005b59ae\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"4fa1488d-6ac5-4983-9346-537f940454de\",\n            \"name\": \"AustraliA\",\n            \"appearances\": [\n                {\n                    \"start\": 19.020999999999997,\n                    \"end\": 23.020999999999997,\n                    \"neo_ids\": [\n                        \"671ed0fb-0a25-4153-95ea-e63a1153a30a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"da817e37-3d7f-444e-b024-1132ce7d1070\",\n            \"name\": \"Umited\",\n            \"appearances\": [\n                {\n                    \"start\": 22.023999999999997,\n                    \"end\": 26.023999999999997,\n                    \"neo_ids\": [\n                        \"01ed453d-b657-4b52-90ad-5ef3d5eecf02\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"7630716b-4e06-4107-8263-2fa9cde45a30\",\n            \"name\": \"ALstDiLuA\",\n            \"appearances\": [\n                {\n                    \"start\": 22.023999999999997,\n                    \"end\": 26.023999999999997,\n                    \"neo_ids\": [\n                        \"6ac93b62-5ef3-49f4-9f65-4ee8ba3e0e75\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"8110bd36-af83-439f-aaab-e58dcca2ae66\",\n            \"name\": \"Idiego\",\n            \"appearances\": [\n                {\n                    \"start\": 22.023999999999997,\n                    \"end\": 29.026999999999997,\n                    \"neo_ids\": [\n                        \"832de483-935d-45ee-8480-428541aaf166\",\n                        \"d4891904-77d8-4924-8a5e-414847542bee\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"f79d97e1-0772-4af3-9016-a554e16b23ff\",\n            \"name\": \"United StaTES\",\n            \"appearances\": [\n                {\n                    \"start\": 22.023999999999997,\n                    \"end\": 26.023999999999997,\n                    \"neo_ids\": [\n                        \"24ed8490-786a-4ed1-ae0c-bd613c6cba27\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"bd297a85-335a-485e-aefe-eb2be854b72a\",\n            \"name\": \"UNITED KINGDC\",\n            \"appearances\": [\n                {\n                    \"start\": 22.023999999999997,\n                    \"end\": 29.026999999999997,\n                    \"neo_ids\": [\n                        \"c85e07d3-2ad3-42b0-98b1-dfe8ed5fc0fc\",\n                        \"b8d09d2b-d210-40aa-9d3d-7db2d83b01f8\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"2c260096-206d-4cf9-93b6-86e76e7e5438\",\n            \"name\": \"VaeDe\",\n            \"appearances\": [\n                {\n                    \"start\": 22.023999999999997,\n                    \"end\": 26.023999999999997,\n                    \"neo_ids\": [\n                        \"a0be9494-cd2e-4537-9db2-76e48cb64da7\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"67c1b1ba-03f0-4bd8-89e4-e4b6544d20a0\",\n            \"name\": \"Austoalut\",\n            \"appearances\": [\n                {\n                    \"start\": 25.026999999999997,\n                    \"end\": 29.026999999999997,\n                    \"neo_ids\": [\n                        \"0cc757ac-6fc6-4f98-9d4d-b641e856682b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"b7d101d6-2edc-4418-a469-30944f3ed7c1\",\n            \"name\": \"UNITED STATES\",\n            \"appearances\": [\n                {\n                    \"start\": 26.486791666666665,\n                    \"end\": 32.03,\n                    \"neo_ids\": [\n                        \"49d9f1cf-7935-43a2-be95-2b001186020b\",\n                        \"a4815c4f-5ab1-4f55-bdc4-c9a18a1950b0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"0d255be5-dff7-4e0e-9180-43dfea130f22\",\n            \"name\": \"UNITE\",\n            \"appearances\": [\n                {\n                    \"start\": 29.656625,\n                    \"end\": 35.032999999999994,\n                    \"neo_ids\": [\n                        \"03b1ba11-65cf-42d5-b1da-ce1e259559e9\",\n                        \"a53dfc3d-ff8b-478a-834e-d79441a0f2f9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"c94fe2cf-1224-49c4-949e-9adada25f0c8\",\n            \"name\": \"AUST\",\n            \"appearances\": [\n                {\n                    \"start\": 34.035999999999994,\n                    \"end\": 38.035999999999994,\n                    \"neo_ids\": [\n                        \"2d7402be-4061-4e9f-8c9c-76b1ca4d7f8e\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"69c63ed4-3a0c-4c45-b22d-7050e1c35e9d\",\n            \"name\": \"NGDOM\",\n            \"appearances\": [\n                {\n                    \"start\": 37.038999999999994,\n                    \"end\": 41.038999999999994,\n                    \"neo_ids\": [\n                        \"d7401c0d-0b1d-4050-81dd-5e119f3c435a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"6d6fb964-2e70-4055-830e-51bb68f74dc5\",\n            \"name\": \"WASHINGTON\",\n            \"appearances\": [\n                {\n                    \"start\": 37.038999999999994,\n                    \"end\": 41.038999999999994,\n                    \"neo_ids\": [\n                        \"b864ca5e-0363-4dea-8ab1-b5cd81ab58e8\"\n                    ]\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"6d1f9796-f637-4e50-be4b-8f900b4efb1a"},{"name":"Get IAB Tag Appearances","id":"21fdf6ab-8b12-4254-8f96-6e1cc303fa1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/appearances/iab_tags","description":"<p>Returns an array of IAB tag appearances for the asset, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the IAB tag appearing</li>\n<li><code>name</code> : name of the IAB tag appearing</li>\n<li><code>appearances: start</code> : start time of the specific appearance</li>\n<li><code>appearances: end</code> : end time of the specific appearance</li>\n<li><code>appearances: tag_ids</code> : unique identifier of the IAB tag appearance</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","appearances","iab_tags"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"}]}},"response":[{"id":"0dc3865f-87ca-4a1b-9180-aeef9795a7ff","name":"Get IAB Tag Appearances","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/appearances/iab_tags","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","appearances","iab_tags"],"variable":[{"key":"asset_id","value":"acbe9c10-0107-4be9-b844-daee2a861fe7"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 21:52:14 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"818"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"dce03a3d-ceed-fd19-d9ad-9820c6adfaea\",\n            \"name\": \"Large Animals\",\n            \"appearances\": [\n                {\n                    \"tag_ids\": [\n                        \"ad4c68f5-aafd-485d-9479-9c4174931fa4\"\n                    ]\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"21fdf6ab-8b12-4254-8f96-6e1cc303fa1a"},{"name":"Get Generic Tag Appearances","id":"848d25c0-493b-4ca7-9e29-e9506155c830","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/appearances/generic_tags","description":"<p>Returns an array of generic tag appearances for the asset, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the generic tag appearing</li>\n<li><code>name</code> : name of the generic tag appearing</li>\n<li><code>appearances: start</code> : start time of the specific appearance</li>\n<li><code>appearances: end</code> : end time of the specific appearance</li>\n<li><code>appearances: tag_ids</code> : unique identifier of the generic tag appearance</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","appearances","generic_tags"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"}]}},"response":[{"id":"e8baa2d5-6e46-41a3-90eb-6c12ce29b769","name":"Get Generic Tag Appearances","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/appearances/generic_tags","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","appearances","generic_tags"],"variable":[{"key":"asset_id","value":"cc62c94c-4c35-4e30-8162-4272c4dbe1de"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 21:52:38 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"7354"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"04a83927-cfa1-af6a-e14f-94e90aab9ebb\",\n            \"name\": \"Speech\",\n            \"appearances\": [\n                {\n                    \"start\": 0,\n                    \"end\": 6.213591224172406,\n                    \"tag_ids\": [\n                        \"86cb573e-49e8-4452-a6dc-6fd0b71320e7\",\n                        \"c96ea85f-4dc6-416f-9117-1e7a75786afc\",\n                        \"32465cbe-cd06-49ae-987f-ab061e96fbeb\"\n                    ]\n                },\n                {\n                    \"start\": 10.623645252906762,\n                    \"end\": 58.780711008664746,\n                    \"tag_ids\": [\n                        \"a9bfdacd-a5c1-44c2-a1f1-65a8e92fccb5\",\n                        \"93ac99b6-1bb5-4793-b941-4a78e3e0b1df\",\n                        \"54ca820a-30ff-4f8f-93d8-2e0fff36cb60\",\n                        \"6545e888-5359-47f5-b9fb-315a3ff322bf\",\n                        \"8a25b019-1a08-4f9c-834c-42bbb7a2b17c\",\n                        \"c2056bdc-a386-4446-abc3-d585e011f61a\",\n                        \"9cc9c570-ce69-4d7c-97b7-bf0d08d4c37c\",\n                        \"3622d1d0-3c5c-4001-968c-24d2b4020949\",\n                        \"6ef3eadd-fce6-4ec4-963f-435852739224\",\n                        \"d0f1867a-1af5-481d-97bf-36aec5fff81a\",\n                        \"d15ab441-d2e3-4052-82f2-90d29ef3a706\",\n                        \"646133ab-984d-4b86-a784-dc5a6b08b41a\",\n                        \"1ec915bb-ff8d-4b74-9b66-3cb641cecd56\",\n                        \"2d1e9528-9ea3-4c0f-bdcc-db4163bc7d0f\",\n                        \"377cefc0-0461-44bd-b51c-bd912ed1b44b\",\n                        \"a788df81-6f6e-495b-9d0c-0d02295d2d77\",\n                        \"b424df5a-9528-43af-b7fc-6ee46cb12545\",\n                        \"49ed14de-2d89-447d-aa0a-2fdc0a09e033\",\n                        \"187d005d-f866-40d4-bba5-2d22955e2dc7\",\n                        \"571008bd-6741-462d-8646-c547eb4b24c3\"\n                    ]\n                },\n                {\n                    \"start\": 69.49402345404725,\n                    \"end\": 115.54429359771903,\n                    \"tag_ids\": [\n                        \"e933038d-a418-4ed7-b8df-65e4a4136e51\",\n                        \"b1b1f28a-42f4-4de4-8a94-aa0a797b0e30\",\n                        \"a4f44003-880b-4dc8-ac90-925706c9e5ec\",\n                        \"21507500-2448-4d16-9c56-a6d1d7adad7c\",\n                        \"245c7aa5-9645-4b3f-b00c-18d416a2ca8d\",\n                        \"d3d27853-8382-45ac-ad80-3abf432388ec\",\n                        \"9765d9cd-b99a-4926-a33f-92ac806aa0ae\",\n                        \"03003bff-458b-4e8c-8682-255bdf4b18a8\",\n                        \"5c079fa3-e37c-4e4d-8add-ebb742ed767f\",\n                        \"0f6ce141-e2fb-4526-ac70-c30b8ffd8381\",\n                        \"b99014f4-245c-4905-baf7-9c5661cd9dba\",\n                        \"02e10c0f-d26f-4148-b337-20081ceb30cf\",\n                        \"a0421153-e7db-48a2-88b3-6aa2ce93e70d\",\n                        \"27638efa-0f7a-44b4-a877-05d9b1cba155\",\n                        \"a27e43f8-e719-480b-a60a-7dc584c5a94f\",\n                        \"01733557-d8e0-408f-a511-4a750ff1f6cc\",\n                        \"18460a56-ded9-44e9-887b-cf26a5f89a7b\",\n                        \"b90c456e-7e45-4341-9a22-24446b8095a3\"\n                    ]\n                },\n                {\n                    \"start\": 124.16793885062579,\n                    \"end\": 128.16793885062577,\n                    \"tag_ids\": [\n                        \"39d32454-8e1a-47b4-b7db-efc56119298f\"\n                    ]\n                },\n                {\n                    \"start\": 132.57799287936015,\n                    \"end\": 151.29130532474267,\n                    \"tag_ids\": [\n                        \"a6bb2c92-f802-46a4-9d74-c421ee9d285e\",\n                        \"4965f25c-65fe-4048-83dc-a1ed173ad98b\",\n                        \"a6d04284-6eaf-4605-bae6-6d2fb0357342\",\n                        \"ca6a1162-8874-41af-8fec-ba1a8d112942\",\n                        \"c57e4d7c-2222-45ae-b9cb-d3b29729579c\",\n                        \"6d3a8301-545d-453b-a40f-331835f2c687\",\n                        \"19de3062-5ed3-479b-86a1-f8895055f858\"\n                    ]\n                },\n                {\n                    \"start\": 183.03831705176628,\n                    \"end\": 285.8692982041028,\n                    \"tag_ids\": [\n                        \"7fb8faf4-f270-4b0c-9960-5379d9b88276\",\n                        \"c760cc29-5b56-4d04-958c-fd04463e4fe2\",\n                        \"41b6d3f5-ff96-49bf-9833-4fd0d817f01b\",\n                        \"5ad22c43-4a1e-4a7a-9ca0-985475586a99\",\n                        \"c6b053d9-8107-4ddc-bf6c-7c246a751daf\",\n                        \"dae10a55-e184-45d4-b3e8-8e9d259bce4a\",\n                        \"3cf7b4e7-6c74-46fc-9c22-b81d1115509b\",\n                        \"e7ad4070-8e84-45a5-b388-8c4ebd6b1b6a\",\n                        \"7aba3e75-7dc5-4473-a5ed-378d8a4e7841\",\n                        \"7be6b0b4-2967-4523-bc30-0bc4b5f09abf\",\n                        \"ea9982a6-8f7c-44c0-bdef-ac5f972b8cbd\",\n                        \"4ed4ed1b-f2fd-46c8-8104-8c2921dabe1b\",\n                        \"be3191c3-fa76-4fd8-aa8a-5834b2a8ccf8\",\n                        \"bd6f88dd-7e2a-43f2-9d3b-6c5bd29695d4\",\n                        \"b21d7496-5037-44a7-b39f-3fc884eba31e\",\n                        \"4db5a90a-6110-407a-9a9b-387c8bf26d2c\",\n                        \"0b0d7417-c5b1-42dc-a1f7-1f3e4b380b25\",\n                        \"9c6639d0-2a94-4073-acda-6d5b4b00361e\",\n                        \"3118b6ff-203a-4c80-8dfd-556464ec5eff\",\n                        \"c4f39cc5-920b-4c62-b436-548dd78e19e9\",\n                        \"a6a05c53-487b-4e46-91f3-ee69052139c6\",\n                        \"003fe0cc-637a-4d65-be2b-63fd8f336d5e\",\n                        \"17c757b4-552b-410a-9bb8-1d47c5cf4546\",\n                        \"b546397c-3250-4d61-9a6c-27981bddd464\",\n                        \"5932c077-9201-4663-a7c9-c0fda5e28d82\",\n                        \"8fe70657-521f-46f6-9b19-27d740c3b229\",\n                        \"51e4d747-0e2a-4dcc-8df6-780e91f16064\",\n                        \"b9a75deb-2ce1-4dca-b491-5ee8b3251f83\",\n                        \"91a53633-9910-4c83-a0ee-491726691bdf\",\n                        \"aea540f8-c93f-4b8c-9ddd-431df5548455\",\n                        \"189f5700-0514-4d89-b0d4-e5559cbbf260\",\n                        \"f9096bce-48d4-44aa-a80a-dcd2627b00d6\",\n                        \"1be3fa3a-2e71-4aca-8fa9-5e20b128d796\",\n                        \"8d7920fa-b17f-477e-afbb-cb286e1d4517\",\n                        \"6e4a11dc-99aa-4075-87e0-435fe76f56d6\",\n                        \"b36602e8-8053-4dc5-996b-5e8f134a77f1\",\n                        \"dc4caea8-53da-440c-bc56-e7563f8c5239\",\n                        \"ccb81d82-293e-4bd4-b368-5513efa9042b\",\n                        \"4565619e-d0c9-4e34-be5c-953c1b0ee71b\",\n                        \"44f56980-43f1-4af6-afe8-f72c6301ec55\",\n                        \"e20b20ea-19a9-4b19-905c-2b4493f062c2\",\n                        \"000add0d-1b57-467c-9939-114c8126205a\",\n                        \"8ec472eb-c001-4d34-b8bf-4faad6363440\",\n                        \"9da4c032-2aff-4f4a-a9e5-ca52713d2110\",\n                        \"57d14929-3097-4517-bde2-e697f7fca3b6\"\n                    ]\n                },\n                {\n                    \"start\": 290.27935223283714,\n                    \"end\": 296.3690194253129,\n                    \"tag_ids\": [\n                        \"c06fd8bc-9955-4ad7-b543-f5d530472659\",\n                        \"f3d7fe80-5abf-425e-b8dc-4c7995dc7f08\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"3afbd982-8e01-1526-955c-a93b48b57524\",\n            \"name\": \"Screenshot\",\n            \"appearances\": [\n                {\n                    \"start\": 56.88750662075095,\n                    \"end\": 67.1907650373991,\n                    \"tag_ids\": [\n                        \"67e76452-b883-4c44-833c-90ff6016fa41\",\n                        \"2d660540-c372-4677-9647-8922da94d695\"\n                    ]\n                },\n                {\n                    \"start\": 117.86468043397764,\n                    \"end\": 121.86468043397764,\n                    \"tag_ids\": [\n                        \"0ecb2214-a41c-4a46-86d1-140a1fe1cd5b\"\n                    ]\n                },\n                {\n                    \"start\": 166.21820899429756,\n                    \"end\": 174.41467179885953,\n                    \"tag_ids\": [\n                        \"604c5946-0f72-47c9-b0d0-c886b33dbb4d\",\n                        \"312f94dd-eabe-40b6-a1cd-0a0c8c94a9df\",\n                        \"8c3d5538-679d-4e2a-9574-c2ff2e35e9be\"\n                    ]\n                },\n                {\n                    \"start\": 286.06576100866477,\n                    \"end\": 290.06576100866477,\n                    \"tag_ids\": [\n                        \"4f64f888-e81e-4160-88f9-8265696a625f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"d5f07c75-5162-2341-f111-d4b02ee65c5a\",\n            \"name\": \"Sport Venue\",\n            \"appearances\": [\n                {\n                    \"start\": 149.39810093682885,\n                    \"end\": 153.39810093682885,\n                    \"tag_ids\": [\n                        \"e25ac32b-795d-40a6-91f0-d4b0ccae862a\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"918e180e-06b9-6c76-b719-3c9fcb1cb312\",\n            \"name\": \"Sports\",\n            \"appearances\": [\n                {\n                    \"start\": 151.50489654891507,\n                    \"end\": 168.11141338221137,\n                    \"tag_ids\": [\n                        \"70f4164b-6936-4fce-9d66-013453d80ab8\",\n                        \"9315b3bc-de92-49ae-871d-ca2b1ed1630c\",\n                        \"548dc1f7-555e-410e-aab8-d5dd5d99f980\",\n                        \"1914cfa5-8b41-4cb0-9f92-c4b8a8c853ac\",\n                        \"5390dcb3-3aeb-457d-9a31-6b7013edf96a\",\n                        \"3195c935-d647-4686-a65b-6e8f9145d6aa\",\n                        \"f133012f-d94a-4993-ac2f-697653395284\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"db11e48e-cc9f-37e8-5ed3-2dee0ec9a1cc\",\n            \"name\": \"Contact Sport\",\n            \"appearances\": [\n                {\n                    \"start\": 155.70135935347702,\n                    \"end\": 159.70135935347702,\n                    \"tag_ids\": [\n                        \"30a5cf7a-d9f0-470b-bf63-20053a0e336d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"b796fef0-189a-7866-e7aa-2670f89d0181\",\n            \"name\": \"Basketball Moves\",\n            \"appearances\": [\n                {\n                    \"start\": 162.00461777012515,\n                    \"end\": 166.00461777012515,\n                    \"tag_ids\": [\n                        \"399531ed-696d-450f-9981-adf5695fe33d\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"2ce5fc28-9845-ce82-6261-032b9c6749ea\",\n            \"name\": \"Advertising\",\n            \"appearances\": [\n                {\n                    \"start\": 294.4758150373991,\n                    \"end\": 300.58261064948533,\n                    \"tag_ids\": [\n                        \"9ca53b3f-efd2-43e4-a30e-dd30f0ccda12\",\n                        \"0f4c51cf-aec2-44a4-8b4f-1ae8f29defc5\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"78a58ecd-a3eb-ed5f-e4e4-fbf28a5b3cb1\",\n            \"name\": \"Display Device\",\n            \"appearances\": [\n                {\n                    \"start\": 294.4758150373991,\n                    \"end\": 298.4758150373991,\n                    \"tag_ids\": [\n                        \"38065e15-fe7e-4e70-89a3-1b4ec324c58f\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"bec735b0-1265-7bea-cae8-e31c1cb7bf79\",\n            \"name\": \"Signage\",\n            \"appearances\": [\n                {\n                    \"start\": 294.4758150373991,\n                    \"end\": 300.58261064948533,\n                    \"tag_ids\": [\n                        \"3c0c269c-1d29-4cb3-afa0-c69536c02be1\",\n                        \"64181684-2579-4f85-bbf3-0929fca6e1f9\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"1be6f9eb-563f-3bf8-5c78-b4219bf09de9\",\n            \"name\": \"Brand\",\n            \"appearances\": [\n                {\n                    \"start\": 296.58261064948533,\n                    \"end\": 300.58261064948533,\n                    \"tag_ids\": [\n                        \"e158af29-1d41-47e0-b503-e65d30b139b0\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"194f5394-ae2e-9c74-dc3c-441b92862d1d\",\n            \"name\": \"Font\",\n            \"appearances\": [\n                {\n                    \"start\": 296.58261064948533,\n                    \"end\": 308.42742683107457,\n                    \"tag_ids\": [\n                        \"86989d9d-34e3-48f5-81b4-9d46094eca51\",\n                        \"367d2727-f505-4854-a812-60597c25b1b3\",\n                        \"7bf1c5f2-84e5-4d54-8a6b-038a898181fe\",\n                        \"dbb18a6b-61a6-41f1-9ac3-8ddb7f6a1da9\",\n                        \"a0f2cd84-03bc-4a54-bbea-d50bfd6fa583\",\n                        \"af8ea400-fc6f-4ae8-b36b-84f192f2d226\"\n                    ]\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"848d25c0-493b-4ca7-9e29-e9506155c830"},{"name":"Get Custom Tag Appearances","id":"bcde0f4e-81b2-4bf7-b657-44d8240ab0ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/appearances/custom_tags","description":"<p>Returns an array of custom tag appearances for the asset, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the custom tag appearing</li>\n<li><code>name</code> : name of the custom tag appearing</li>\n<li><code>appearances: start</code> : start time of the specific appearance</li>\n<li><code>appearances: end</code> : end time of the specific appearance</li>\n<li><code>appearances: tag_ids</code> : unique identifier of the custom tag appearance</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","appearances","custom_tags"],"host":["https://api.vidrovr.com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"}]}},"response":[{"id":"272b1777-4d8b-4d88-bc97-2d366d81e818","name":"Get Custom Tag Appearances","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/appearances/custom_tags","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","appearances","custom_tags"],"query":[{"key":"","value":"","disabled":true}],"variable":[{"key":"asset_id","value":"{{asset_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 21:53:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"149"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"09d440e4-87d4-5777-c05c-3a6552ad9154\",\n            \"name\": \"grass\",\n            \"appearances\": [\n                {\n                    \"start\": 0.0,\n                    \"end\": 4.0,\n                    \"tag_ids\": [\n                        \"7e7a9570-0e98-46e4-99be-8d22ee38801b\"\n                    ]\n                }\n            ]\n        },\n        {\n            \"id\": \"50f8b6c9-8b0f-9a27-1a56-2632405ae63d\",\n            \"name\": \"owl\",\n            \"appearances\": [\n                {\n                    \"start\": 1.0029999999999997,\n                    \"end\": 41.038999999999994,\n                    \"tag_ids\": [\n                        \"872f28a5-8fc1-47b8-9381-0abb4fd4d185\",\n                        \"415bdfc3-391f-46cf-84c2-0b5284893ab6\",\n                        \"c3f15c59-8ae9-4cfd-8c9e-e0b2f1ecc6f9\",\n                        \"fb627a61-be90-48c6-8f7a-771fb4a9a958\",\n                        \"be5f6ad1-06ca-420a-a6c7-a0d2df4a73e8\",\n                        \"5b6a1d33-7ad2-4de9-a20c-0e2a195915e2\",\n                        \"c5244a32-2e0a-456d-bd18-b59c6842d00d\",\n                        \"f64e6de1-f429-49be-a7f0-22677dac505b\",\n                        \"8cb64a74-dd3b-46eb-aeb4-9876e900b257\",\n                        \"45cd5982-0907-45fc-a068-2e380914cdaf\",\n                        \"3fcb000a-9a62-4975-af2a-a386f4a6584d\",\n                        \"6d265d04-960b-48fc-b97d-6967c576bebb\",\n                        \"72b8992d-296d-4bff-a9f1-df1330ce046c\",\n                        \"4c6794b7-d06e-4381-bb12-d64becf99c3a\",\n                        \"6e392c83-84ee-4b95-b00e-9fed35ebba62\",\n                        \"41396e24-73db-403c-9069-b42c8e2cd066\",\n                        \"2ad5971f-a295-4012-80be-bd9e2384e9d4\",\n                        \"61894084-16af-4ea8-93e4-f251ba7673e2\"\n                    ]\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"bcde0f4e-81b2-4bf7-b657-44d8240ab0ad"}],"id":"b679f77b-d92e-465a-a94a-e9fb27ed840e","_postman_id":"b679f77b-d92e-465a-a94a-e9fb27ed840e","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}}},{"name":"Get Metadata for Media Id","id":"19918078-671b-4138-832f-1893e05c7faf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id","description":"<p>Get general asset details by the asset's unique ID.</p>\n<p>To see overview information about metadata appearances, simply add appearances to the URL as:</p>\n<p><code>https://api.vidrovr.com/v2/metadata/{asset_id}/appearances/metadata_type</code></p>\n<p>You can also get additional information about the appearances for an asset by specifying the metadata type as:</p>\n<p><code>https://api.vidrovr.com/v2/metadata/{asset_id}/metadata_type</code></p>\n<p>Further details about an individual metadata record can be reviewed by adding the individual detection id as:</p>\n<p><code>https://api.vidrovr.com/v2/metadata/{asset_id}/metadata_type/detection_id</code></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"cdf29bad-040c-4c20-b511-cc51358eed65","key":"asset_id"}]}},"response":[{"id":"e373e396-07a5-43b7-a06d-c70bb8ae6dfd","name":"Get Metadata for Media Id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id"],"variable":[{"key":"asset_id","value":"{{asset_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 21:55:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1604"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"3e0ca29d-f388-43da-bcad-fd517ae2a018\",\n        \"mime_type\": \"video/mp4\",\n        \"creation_date\": \"2023-03-28T20:15:12.351436\",\n        \"title\": \"go6_Vb1UW4Olm7jU.mp4\",\n        \"thumbnail\": \"https://d2mgpstoctjmyb.cloudfront.net/74888693-c08a-40c4-becb-6966567b3877/dabbbbec-674c-4f38-92cb-2cbf148a9561/3e0ca29d-f388-43da-bcad-fd517ae2a018/frames/72.png?Expires=1680101672&Signature=DpXjKM3Hv0hYI5i2TYzoxl34wTR0zFlYDw-j8Hb13-ycB8DUk3SSA7rvXZJLgNn14~apSJ8c5LLE0qibsm9lFlVqqsTqNQFEEcgj8a9eHM9sUBUunczT9oB3b-OZygAf0x7a16mMs33W7q1G0G1M5tWH2d-WX29wRvJXQTumkL0ZnVbUjXbnz-UASOdOS9XPPyhB3FFa0T8KU4DKCtdBMmuCbCB2DxjFszjgcTa-SypN5lE38gKVGkHoUm~MUk450tP6Q8CPHpGePoN39qB9k4-vXyrGvfK~ZbDQGKE5p6k1aSrgeqv6daUYn6dKXTdjYWexnSI8quA95wTdk94uQQ__&Key-Pair-Id=K5S1IJDZBULCD\",\n        \"media_url\": \"https://d2mgpstoctjmyb.cloudfront.net/dabbbbec-674c-4f38-92cb-2cbf148a9561/74888693-c08a-40c4-becb-6966567b3877/3e0ca29d-f388-43da-bcad-fd517ae2a018/8ae308dc-a0f5-4d19-b915-a779e2539858.mp4?Expires=1680101672&Signature=dlTiEchM3mT~Dd3pwBJSYbDIh84dXk1SM0dQ-dMEBmDxfiOw6GRi2xHZCnKJHIZKp8bKS~59kILKY0VffZ7zq2pwrMGul3BvwG0XibdGFDZZiBvCQ4sIFU7m2mA6s1cBcdSpXqdH4PLlLC3EoqpW5ZVwYMy3jZhFtyDagQsnYtKcHBq88LeJt-pLcrbrhS5oLq1A8wRz8q2cfWgbMHlu7bSLbJ65ROTr8jjTdPDHFansA0g1wf9yG-GxyBD98jNqglBeCYe2LsbtY-m~OYfXNH3IZcPmQzvf-syeNBDVKV7vB~V3OCv-rXUBplv-dsGVhWin24EXoLeazhdZCB9NLA__&Key-Pair-Id=K5S1IJDZBULCD\",\n        \"feed_id\": \"99bb40df-9746-4d5a-a05d-ed1200b40504\",\n        \"height\": 1280,\n        \"width\": 720,\n        \"duration\": 41.344,\n        \"fps\": 23.976023976023978,\n        \"processing_info\": {\n            \"status\": \"success\",\n            \"start\": \"2023-03-28T20:15:12.363805\",\n            \"end\": \"2023-03-28T20:16:29.468808\"\n        }\n    }\n}"}],"_postman_id":"19918078-671b-4138-832f-1893e05c7faf"},{"name":"Get Persons Details","id":"15253079-543b-4607-ad8c-1a700f4f9e6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/faces","description":"<p>Returns an array of person detections for the asset, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the detection</li>\n<li><code>person:id</code> : unique identifier of the person detected</li>\n<li><code>person:name</code> : name of the person detected</li>\n<li><code>time</code> : timestamp at which the detection occurs</li>\n<li><code>score</code> : the confidence score for the detection. Between 0 and 1</li>\n<li><code>x</code> , <code>y</code> , <code>w</code> , <code>h</code>: location of the persons face</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","faces"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"}]}},"response":[{"id":"6df8bc3d-5cca-483c-bf9b-8ab172bcd415","name":"Get Persons Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/faces","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","faces"],"variable":[{"key":"asset_id","value":"{{asset_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 21:55:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"69363"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"3bc9c5c6-64e7-48e0-a0a9-fcc4dd409cba\",\n            \"person\": {\n                \"id\": \"012b83bb-4327-463b-a20f-b9646ba7221f\",\n                \"name\": \"Unknown 93\"\n            },\n            \"x\": 294,\n            \"y\": 512,\n            \"h\": 49,\n            \"w\": 41,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.6734216816403455\n        },\n        {\n            \"id\": \"f143ac58-d120-4789-92c8-4956a1d9fe6c\",\n            \"person\": {\n                \"id\": \"9566f55f-0081-4740-a405-789d34f8f33c\",\n                \"name\": \"Anthony Albanese\"\n            },\n            \"x\": 37,\n            \"y\": 572,\n            \"h\": 40,\n            \"w\": 33,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.6514901600940886\n        },\n        {\n            \"id\": \"baf9ef3f-48bf-442d-902e-17c725876c41\",\n            \"person\": {\n                \"id\": \"b616881b-e050-4d32-99d5-bb19a987caf0\",\n                \"name\": \"Rishi Sunak\"\n            },\n            \"x\": 631,\n            \"y\": 463,\n            \"h\": 52,\n            \"w\": 42,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.7505782738911788\n        },\n        {\n            \"id\": \"6279d60e-ba06-458f-b39b-f8080deda79c\",\n            \"person\": {\n                \"id\": \"a4c95bbf-1694-4f41-ac48-b619ef8de9fa\",\n                \"name\": \"Unknown 124\"\n            },\n            \"x\": 3,\n            \"y\": 353,\n            \"h\": 65,\n            \"w\": 56,\n            \"time\": 5.005,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"1154e4d9-ff39-4b4d-91d5-25c5bd0dc8a7\",\n            \"person\": {\n                \"id\": \"592ce884-ea34-4eae-9e14-fa88cf4591fe\",\n                \"name\": \"Unknown 125\"\n            },\n            \"x\": 299,\n            \"y\": 381,\n            \"h\": 57,\n            \"w\": 47,\n            \"time\": 5.005,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"8faa3e5e-3305-4cf9-907d-75b3366be7f7\",\n            \"person\": {\n                \"id\": \"172f6d0c-237d-4665-a251-872283b5a2bf\",\n                \"name\": \"Joe Biden\"\n            },\n            \"x\": 436,\n            \"y\": 290,\n            \"h\": 117,\n            \"w\": 88,\n            \"time\": 5.005,\n            \"score\": 0.6125258803367615\n        },\n        {\n            \"id\": \"a84c0c38-b41f-4fbd-8631-0399a1e7bade\",\n            \"person\": {\n                \"id\": \"a4c95bbf-1694-4f41-ac48-b619ef8de9fa\",\n                \"name\": \"Unknown 124\"\n            },\n            \"x\": 312,\n            \"y\": 336,\n            \"h\": 66,\n            \"w\": 56,\n            \"time\": 6.005999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"79eab109-f72c-47ae-9218-a9722b39f28b\",\n            \"person\": {\n                \"id\": \"9c48f977-351a-4086-9048-65ed995773a9\",\n                \"name\": \"Unknown 132\"\n            },\n            \"x\": 1,\n            \"y\": 409,\n            \"h\": 61,\n            \"w\": 43,\n            \"time\": 6.005999999999999,\n            \"score\": 0.9999999999999999\n        },\n        {\n            \"id\": \"14322673-4b01-4749-9ecc-9e64de44bba3\",\n            \"person\": {\n                \"id\": \"9ff474ae-0aaa-4862-ba35-94c366a3be90\",\n                \"name\": \"Unknown 126\"\n            },\n            \"x\": 147,\n            \"y\": 305,\n            \"h\": 132,\n            \"w\": 77,\n            \"time\": 6.005999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"8451dfa7-d3a6-4d84-ae09-c07a732d6efc\",\n            \"person\": {\n                \"id\": \"172f6d0c-237d-4665-a251-872283b5a2bf\",\n                \"name\": \"Joe Biden\"\n            },\n            \"x\": 423,\n            \"y\": 248,\n            \"h\": 139,\n            \"w\": 98,\n            \"time\": 6.005999999999999,\n            \"score\": 0.564063549041748\n        },\n        {\n            \"id\": \"fb3ac4b7-cf0e-4036-aefe-8ff3bd188a91\",\n            \"person\": {\n                \"id\": \"172f6d0c-237d-4665-a251-872283b5a2bf\",\n                \"name\": \"Joe Biden\"\n            },\n            \"x\": 413,\n            \"y\": 248,\n            \"h\": 179,\n            \"w\": 119,\n            \"time\": 9.008999999999999,\n            \"score\": 0.6256297826766968\n        },\n        {\n            \"id\": \"68a17883-104a-461c-9495-34b40bbfbf02\",\n            \"person\": {\n                \"id\": \"9c48f977-351a-4086-9048-65ed995773a9\",\n                \"name\": \"Unknown 132\"\n            },\n            \"x\": 254,\n            \"y\": 462,\n            \"h\": 66,\n            \"w\": 50,\n            \"time\": 9.008999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"2b7af5a9-accb-451b-938e-d856eed1f631\",\n            \"person\": {\n                \"id\": \"5ee15f66-0428-4a3e-a1b0-7417947e6336\",\n                \"name\": \"Unknown 127\"\n            },\n            \"x\": 145,\n            \"y\": 404,\n            \"h\": 62,\n            \"w\": 43,\n            \"time\": 9.008999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"fe714139-de6f-43ec-ab2e-e647c57b12ae\",\n            \"person\": {\n                \"id\": \"df054847-522f-4187-b6ee-d878e4c228df\",\n                \"name\": \"Unknown 128\"\n            },\n            \"x\": 57,\n            \"y\": 270,\n            \"h\": 190,\n            \"w\": 90,\n            \"time\": 9.008999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"ce0193ac-f2ce-4ac0-8a1b-4852e682b369\",\n            \"person\": {\n                \"id\": \"172f6d0c-237d-4665-a251-872283b5a2bf\",\n                \"name\": \"Joe Biden\"\n            },\n            \"x\": 393,\n            \"y\": 486,\n            \"h\": 71,\n            \"w\": 53,\n            \"time\": 12.011999999999999,\n            \"score\": 0.5512754917144775\n        },\n        {\n            \"id\": \"c66219c6-7b43-4759-bbdd-564fd7788ffa\",\n            \"person\": {\n                \"id\": \"b616881b-e050-4d32-99d5-bb19a987caf0\",\n                \"name\": \"Rishi Sunak\"\n            },\n            \"x\": 592,\n            \"y\": 465,\n            \"h\": 76,\n            \"w\": 45,\n            \"time\": 12.011999999999999,\n            \"score\": 0.7213182572330918\n        },\n        {\n            \"id\": \"ef7d79f1-aa6d-4a20-b36b-d17db2c1adf2\",\n            \"person\": {\n                \"id\": \"9566f55f-0081-4740-a405-789d34f8f33c\",\n                \"name\": \"Anthony Albanese\"\n            },\n            \"x\": 55,\n            \"y\": 455,\n            \"h\": 72,\n            \"w\": 47,\n            \"time\": 12.011999999999999,\n            \"score\": 0.7031571084205115\n        },\n        {\n            \"id\": \"30e3fb52-b4b9-484f-9633-b0e077410d00\",\n            \"person\": {\n                \"id\": \"012f7d05-6a07-49e0-9696-c7d8686b666f\",\n                \"name\": \"Unknown 129\"\n            },\n            \"x\": 189,\n            \"y\": 575,\n            \"h\": 48,\n            \"w\": 36,\n            \"time\": 12.011999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"3b985c34-06dd-4d24-b3a7-c506dc7d0c44\",\n            \"person\": {\n                \"id\": \"7089e1a6-fdd6-4a20-b215-d6c13fde359d\",\n                \"name\": \"Unknown 130\"\n            },\n            \"x\": 561,\n            \"y\": 555,\n            \"h\": 42,\n            \"w\": 33,\n            \"time\": 12.011999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"635a6708-fe5a-46be-b15f-190d18e53fc8\",\n            \"person\": {\n                \"id\": \"172f6d0c-237d-4665-a251-872283b5a2bf\",\n                \"name\": \"Joe Biden\"\n            },\n            \"x\": 269,\n            \"y\": 293,\n            \"h\": 289,\n            \"w\": 199,\n            \"time\": 15.014999999999999,\n            \"score\": 0.6540374159812927\n        },\n        {\n            \"id\": \"53f64bbe-72fa-49ca-a20a-3647b910fc40\",\n            \"person\": {\n                \"id\": \"b616881b-e050-4d32-99d5-bb19a987caf0\",\n                \"name\": \"Rishi Sunak\"\n            },\n            \"x\": 640,\n            \"y\": 371,\n            \"h\": 66,\n            \"w\": 48,\n            \"time\": 16.975291666666667,\n            \"score\": 0.741798335528804\n        },\n        {\n            \"id\": \"7e330076-b02f-4f7b-8be7-c88f2076969f\",\n            \"person\": {\n                \"id\": \"012b83bb-4327-463b-a20f-b9646ba7221f\",\n                \"name\": \"Unknown 93\"\n            },\n            \"x\": 256,\n            \"y\": 449,\n            \"h\": 59,\n            \"w\": 42,\n            \"time\": 16.975291666666667,\n            \"score\": 0.678132933579707\n        },\n        {\n            \"id\": \"ace144ed-f3e1-4c29-9de9-31a68fd018f4\",\n            \"person\": {\n                \"id\": \"9566f55f-0081-4740-a405-789d34f8f33c\",\n                \"name\": \"Anthony Albanese\"\n            },\n            \"x\": 53,\n            \"y\": 535,\n            \"h\": 48,\n            \"w\": 38,\n            \"time\": 16.975291666666667,\n            \"score\": 0.6768996563559564\n        },\n        {\n            \"id\": \"5628d705-b4b0-4644-a6a0-abf9d5d4b404\",\n            \"person\": {\n                \"id\": \"012b83bb-4327-463b-a20f-b9646ba7221f\",\n                \"name\": \"Unknown 93\"\n            },\n            \"x\": 257,\n            \"y\": 448,\n            \"h\": 61,\n            \"w\": 41,\n            \"time\": 18.017999999999997,\n            \"score\": 0.6733650606718689\n        },\n        {\n            \"id\": \"5395a0c7-c271-451c-86d1-f3542cae1cf0\",\n            \"person\": {\n                \"id\": \"9566f55f-0081-4740-a405-789d34f8f33c\",\n                \"name\": \"Anthony Albanese\"\n            },\n            \"x\": 53,\n            \"y\": 536,\n            \"h\": 48,\n            \"w\": 38,\n            \"time\": 18.017999999999997,\n            \"score\": 0.6877832363343135\n        },\n        {\n            \"id\": \"228ec1b2-a3a3-45d4-90f1-12d88f88de4e\",\n            \"person\": {\n                \"id\": \"b616881b-e050-4d32-99d5-bb19a987caf0\",\n                \"name\": \"Rishi Sunak\"\n            },\n            \"x\": 641,\n            \"y\": 371,\n            \"h\": 66,\n            \"w\": 49,\n            \"time\": 18.017999999999997,\n            \"score\": 0.7397604261054843\n        },\n        {\n            \"id\": \"85e53f48-6c8a-4c11-b73f-af2d0ded03bd\",\n            \"person\": {\n                \"id\": \"b616881b-e050-4d32-99d5-bb19a987caf0\",\n                \"name\": \"Rishi Sunak\"\n            },\n            \"x\": 638,\n            \"y\": 367,\n            \"h\": 66,\n            \"w\": 49,\n            \"time\": 21.020999999999997,\n            \"score\": 0.7731810876910585\n        },\n        {\n            \"id\": \"166eba4a-5825-4f1c-8017-15566d0036ab\",\n            \"person\": {\n                \"id\": \"012b83bb-4327-463b-a20f-b9646ba7221f\",\n                \"name\": \"Unknown 93\"\n            },\n            \"x\": 261,\n            \"y\": 447,\n            \"h\": 59,\n            \"w\": 43,\n            \"time\": 21.020999999999997,\n            \"score\": 0.6807905309074458\n        },\n        {\n            \"id\": \"500e8bbf-cbe2-4791-b569-e2c0cb1d1b8a\",\n            \"person\": {\n                \"id\": \"9566f55f-0081-4740-a405-789d34f8f33c\",\n                \"name\": \"Anthony Albanese\"\n            },\n            \"x\": 60,\n            \"y\": 533,\n            \"h\": 46,\n            \"w\": 37,\n            \"time\": 21.020999999999997,\n            \"score\": 0.7042313038470874\n        },\n        {\n            \"id\": \"65566a17-772f-4bc9-b743-dd8700a01146\",\n            \"person\": {\n                \"id\": \"9566f55f-0081-4740-a405-789d34f8f33c\",\n                \"name\": \"Anthony Albanese\"\n            },\n            \"x\": 108,\n            \"y\": 550,\n            \"h\": 40,\n            \"w\": 32,\n            \"time\": 24.023999999999997,\n            \"score\": 0.7022638198991409\n        },\n        {\n            \"id\": \"c907e554-c27a-4c49-ac68-23229cd1872a\",\n            \"person\": {\n                \"id\": \"b616881b-e050-4d32-99d5-bb19a987caf0\",\n                \"name\": \"Rishi Sunak\"\n            },\n            \"x\": 610,\n            \"y\": 409,\n            \"h\": 50,\n            \"w\": 41,\n            \"time\": 24.023999999999997,\n            \"score\": 0.7200555881165916\n        },\n        {\n            \"id\": \"79d726ea-7862-4ffe-a17e-aa7d75acc6d7\",\n            \"person\": {\n                \"id\": \"012b83bb-4327-463b-a20f-b9646ba7221f\",\n                \"name\": \"Unknown 93\"\n            },\n            \"x\": 287,\n            \"y\": 477,\n            \"h\": 49,\n            \"w\": 34,\n            \"time\": 24.023999999999997,\n            \"score\": 0.7039940866913371\n        },\n        {\n            \"id\": \"618119cc-60aa-4393-bee9-5f8bc48417da\",\n            \"person\": {\n                \"id\": \"b616881b-e050-4d32-99d5-bb19a987caf0\",\n                \"name\": \"Rishi Sunak\"\n            },\n            \"x\": 609,\n            \"y\": 406,\n            \"h\": 50,\n            \"w\": 41,\n            \"time\": 27.026999999999997,\n            \"score\": 0.7407438971104935\n        },\n        {\n            \"id\": \"a98adf71-f0fa-43bd-878a-ed94a16342bc\",\n            \"person\": {\n                \"id\": \"012b83bb-4327-463b-a20f-b9646ba7221f\",\n                \"name\": \"Unknown 93\"\n            },\n            \"x\": 287,\n            \"y\": 471,\n            \"h\": 54,\n            \"w\": 39,\n            \"time\": 27.026999999999997,\n            \"score\": 0.7140600035297034\n        },\n        {\n            \"id\": \"1ebbe8f3-7c8f-48c6-8ea9-26a42eab4eb1\",\n            \"person\": {\n                \"id\": \"9566f55f-0081-4740-a405-789d34f8f33c\",\n                \"name\": \"Anthony Albanese\"\n            },\n            \"x\": 106,\n            \"y\": 551,\n            \"h\": 40,\n            \"w\": 31,\n            \"time\": 27.026999999999997,\n            \"score\": 0.6871051095087565\n        },\n        {\n            \"id\": \"11247ac7-d69c-498a-9f63-3baa847e05d3\",\n            \"person\": {\n                \"id\": \"012b83bb-4327-463b-a20f-b9646ba7221f\",\n                \"name\": \"Unknown 93\"\n            },\n            \"x\": 287,\n            \"y\": 229,\n            \"h\": 264,\n            \"w\": 179,\n            \"time\": 27.27725,\n            \"score\": 0.7720794879144933\n        },\n        {\n            \"id\": \"3a155f32-12f6-404a-8665-2e8b871c5fa1\",\n            \"person\": {\n                \"id\": \"172f6d0c-237d-4665-a251-872283b5a2bf\",\n                \"name\": \"Joe Biden\"\n            },\n            \"x\": 584,\n            \"y\": 527,\n            \"h\": 60,\n            \"w\": 43,\n            \"time\": 28.486791666666665,\n            \"score\": 0.5835678577423096\n        },\n        {\n            \"id\": \"3d3c20cf-735b-4956-89bc-783dd220da1c\",\n            \"person\": {\n                \"id\": \"9566f55f-0081-4740-a405-789d34f8f33c\",\n                \"name\": \"Anthony Albanese\"\n            },\n            \"x\": 93,\n            \"y\": 544,\n            \"h\": 58,\n            \"w\": 40,\n            \"time\": 28.486791666666665,\n            \"score\": 0.6883982258878985\n        },\n        {\n            \"id\": \"ebc7ab69-fd2d-4dd2-9fc2-09fdd33bffd0\",\n            \"person\": {\n                \"id\": \"012b83bb-4327-463b-a20f-b9646ba7221f\",\n                \"name\": \"Unknown 93\"\n            },\n            \"x\": 584,\n            \"y\": 524,\n            \"h\": 60,\n            \"w\": 43,\n            \"time\": 30.029999999999998,\n            \"score\": 0.7047557831717336\n        },\n        {\n            \"id\": \"d5057b03-35ed-4e0b-a0e8-8f0266a858b2\",\n            \"person\": {\n                \"id\": \"50b1c7a4-21f1-4fb1-9ce8-88f63f38cd10\",\n                \"name\": \"Unknown 131\"\n            },\n            \"x\": 93,\n            \"y\": 542,\n            \"h\": 57,\n            \"w\": 40,\n            \"time\": 30.029999999999998,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"181c2c66-dfce-448d-928b-42c4ed060c44\",\n            \"person\": {\n                \"id\": \"b616881b-e050-4d32-99d5-bb19a987caf0\",\n                \"name\": \"Rishi Sunak\"\n            },\n            \"x\": 629,\n            \"y\": 501,\n            \"h\": 65,\n            \"w\": 44,\n            \"time\": 31.656625,\n            \"score\": 0.7818807640773737\n        },\n        {\n            \"id\": \"4fc8725b-9b75-4758-9ad0-8193e4548ed4\",\n            \"person\": {\n                \"id\": \"012b83bb-4327-463b-a20f-b9646ba7221f\",\n                \"name\": \"Unknown 93\"\n            },\n            \"x\": 107,\n            \"y\": 508,\n            \"h\": 67,\n            \"w\": 47,\n            \"time\": 31.656625,\n            \"score\": 0.6852029079266941\n        },\n        {\n            \"id\": \"f3c49fe4-75c0-43d7-83a3-57560f0fe218\",\n            \"person\": {\n                \"id\": \"b616881b-e050-4d32-99d5-bb19a987caf0\",\n                \"name\": \"Rishi Sunak\"\n            },\n            \"x\": 614,\n            \"y\": 510,\n            \"h\": 67,\n            \"w\": 46,\n            \"time\": 33.032999999999994,\n            \"score\": 0.7611594917212823\n        },\n        {\n            \"id\": \"76e3effc-2f18-404e-906e-3414ab622712\",\n            \"person\": {\n                \"id\": \"012b83bb-4327-463b-a20f-b9646ba7221f\",\n                \"name\": \"Unknown 93\"\n            },\n            \"x\": 100,\n            \"y\": 510,\n            \"h\": 68,\n            \"w\": 48,\n            \"time\": 33.032999999999994,\n            \"score\": 0.6738865728501414\n        },\n        {\n            \"id\": \"0fa1172b-cb72-4b68-a93c-87586bc73229\",\n            \"person\": {\n                \"id\": \"9566f55f-0081-4740-a405-789d34f8f33c\",\n                \"name\": \"Anthony Albanese\"\n            },\n            \"x\": 349,\n            \"y\": 291,\n            \"h\": 269,\n            \"w\": 154,\n            \"time\": 36.035999999999994,\n            \"score\": 0.6953760775812664\n        },\n        {\n            \"id\": \"6c0f8d7f-aa1f-40a0-8683-b0fcb1e72501\",\n            \"person\": {\n                \"id\": \"172f6d0c-237d-4665-a251-872283b5a2bf\",\n                \"name\": \"Joe Biden\"\n            },\n            \"x\": 107,\n            \"y\": 270,\n            \"h\": 275,\n            \"w\": 181,\n            \"time\": 39.038999999999994,\n            \"score\": 0.708868145942688\n        }\n    ]\n}"}],"_postman_id":"15253079-543b-4607-ad8c-1a700f4f9e6b"},{"name":"Get Persons Details by Id","id":"d8b78c76-4b31-43c5-959a-ab4cda76f8c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/faces/:face_id","description":"<p>Returns information for a specific person detection, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the detection</li>\n<li><code>person:id</code> : unique identifier of the person detected</li>\n<li><code>person:name</code> : name of the person detected</li>\n<li><code>time</code> : timestamp at which the detection occurs</li>\n<li><code>score</code> : the confidence score for the detection. Between 0 and 1</li>\n<li><code>x</code> , <code>y</code> , <code>w</code> , <code>h</code>: location of the persons face</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","faces",":face_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"},{"description":{"content":"<p>Person's detection Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"face_id"}]}},"response":[{"id":"93db2576-23b5-4d9c-888d-7ba070427861","name":"Get Persons Details by Id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/faces/:face_id","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","faces",":face_id"],"variable":[{"key":"asset_id","value":"{{asset_id}}"},{"key":"face_id","value":"6c0f8d7f-aa1f-40a0-8683-b0fcb1e72501"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 21:56:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"221"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6c0f8d7f-aa1f-40a0-8683-b0fcb1e72501\",\n        \"person\": {\n            \"id\": \"172f6d0c-237d-4665-a251-872283b5a2bf\",\n            \"name\": \"Joe Biden\"\n        },\n        \"x\": 107,\n        \"y\": 270,\n        \"h\": 275,\n        \"w\": 181,\n        \"time\": 39.038999999999994,\n        \"score\": 0.9996379613876343\n    }\n}"}],"_postman_id":"d8b78c76-4b31-43c5-959a-ab4cda76f8c5"},{"name":"Get Custom Tag Details","id":"991eb869-f401-4029-ac02-56b7f92d834d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/custom_tags","description":"<p>Returns an array of custom (unique to the Project) tag detections for the asset, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the detection</li>\n<li><code>name</code> : name of the custom tag detected</li>\n<li><code>time</code> : timestamp at which the detection occurs</li>\n<li><code>score</code> : the confidence score for the detection. Between 0 and 1</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","custom_tags"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"}]}},"response":[{"id":"093a1ffa-db94-4359-a3ac-4ff0ab7a70b7","name":"Get Custom Tag Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/custom_tags","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","custom_tags"],"variable":[{"key":"asset_id","value":"{{asset_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 22:39:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"119"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"7e7a9570-0e98-46e4-99be-8d22ee38801b\",\n            \"name\": \"grass\",\n            \"time\": 0.0,\n            \"score\": 0.5114357471466064\n        },\n        {\n            \"id\": \"872f28a5-8fc1-47b8-9381-0abb4fd4d185\",\n            \"name\": \"owl\",\n            \"time\": 3.0029999999999997,\n            \"score\": 0.6235405206680298\n        },\n        {\n            \"id\": \"415bdfc3-391f-46cf-84c2-0b5284893ab6\",\n            \"name\": \"owl\",\n            \"time\": 5.005,\n            \"score\": 0.7195185422897339\n        },\n        {\n            \"id\": \"c3f15c59-8ae9-4cfd-8c9e-e0b2f1ecc6f9\",\n            \"name\": \"owl\",\n            \"time\": 6.005999999999999,\n            \"score\": 0.7748937606811523\n        },\n        {\n            \"id\": \"fb627a61-be90-48c6-8f7a-771fb4a9a958\",\n            \"name\": \"owl\",\n            \"time\": 9.008999999999999,\n            \"score\": 0.5833777785301208\n        },\n        {\n            \"id\": \"be5f6ad1-06ca-420a-a6c7-a0d2df4a73e8\",\n            \"name\": \"owl\",\n            \"time\": 12.011999999999999,\n            \"score\": 0.50493323802948\n        },\n        {\n            \"id\": \"5b6a1d33-7ad2-4de9-a20c-0e2a195915e2\",\n            \"name\": \"owl\",\n            \"time\": 15.014999999999999,\n            \"score\": 0.7878340482711792\n        },\n        {\n            \"id\": \"c5244a32-2e0a-456d-bd18-b59c6842d00d\",\n            \"name\": \"owl\",\n            \"time\": 16.975291666666667,\n            \"score\": 0.7427071332931519\n        },\n        {\n            \"id\": \"f64e6de1-f429-49be-a7f0-22677dac505b\",\n            \"name\": \"owl\",\n            \"time\": 18.017999999999997,\n            \"score\": 0.7034515738487244\n        },\n        {\n            \"id\": \"8cb64a74-dd3b-46eb-aeb4-9876e900b257\",\n            \"name\": \"owl\",\n            \"time\": 21.020999999999997,\n            \"score\": 0.6994176506996155\n        },\n        {\n            \"id\": \"45cd5982-0907-45fc-a068-2e380914cdaf\",\n            \"name\": \"owl\",\n            \"time\": 24.023999999999997,\n            \"score\": 0.626729428768158\n        },\n        {\n            \"id\": \"3fcb000a-9a62-4975-af2a-a386f4a6584d\",\n            \"name\": \"owl\",\n            \"time\": 27.026999999999997,\n            \"score\": 0.586523711681366\n        },\n        {\n            \"id\": \"6d265d04-960b-48fc-b97d-6967c576bebb\",\n            \"name\": \"owl\",\n            \"time\": 27.27725,\n            \"score\": 0.7581719160079956\n        },\n        {\n            \"id\": \"72b8992d-296d-4bff-a9f1-df1330ce046c\",\n            \"name\": \"owl\",\n            \"time\": 28.486791666666665,\n            \"score\": 0.5759721994400024\n        },\n        {\n            \"id\": \"4c6794b7-d06e-4381-bb12-d64becf99c3a\",\n            \"name\": \"owl\",\n            \"time\": 30.029999999999998,\n            \"score\": 0.5724027156829834\n        },\n        {\n            \"id\": \"6e392c83-84ee-4b95-b00e-9fed35ebba62\",\n            \"name\": \"owl\",\n            \"time\": 31.656625,\n            \"score\": 0.6449269652366638\n        },\n        {\n            \"id\": \"41396e24-73db-403c-9069-b42c8e2cd066\",\n            \"name\": \"owl\",\n            \"time\": 33.032999999999994,\n            \"score\": 0.7204850316047668\n        },\n        {\n            \"id\": \"2ad5971f-a295-4012-80be-bd9e2384e9d4\",\n            \"name\": \"owl\",\n            \"time\": 36.035999999999994,\n            \"score\": 0.6996278762817383\n        },\n        {\n            \"id\": \"61894084-16af-4ea8-93e4-f251ba7673e2\",\n            \"name\": \"owl\",\n            \"time\": 39.038999999999994,\n            \"score\": 0.67582768201828\n        }\n    ]\n}"}],"_postman_id":"991eb869-f401-4029-ac02-56b7f92d834d"},{"name":"Get Custom Tag Details by Id","id":"bd8111d8-5296-4348-90e0-95a4283ac3d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/custom_tags/:tag_id","description":"<p>Returns information for a specific custom tag detection, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the detection</li>\n<li><code>name</code> : name of the custom tag detected</li>\n<li><code>time</code> : timestamp at which the detection occurs</li>\n<li><code>score</code> : the confidence score for the detection. Between 0 and 1</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","custom_tags",":tag_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"},{"description":{"content":"<p>Tag detection Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"tag_id"}]}},"response":[{"id":"aeb26055-d786-47a0-bb2f-56b1f1e9b661","name":"Get Custom Tag Details by Id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/custom_tags/:tag_id","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","custom_tags",":tag_id"],"variable":[{"key":"asset_id","value":"{{asset_id}}","description":"Media Asset Id (required)"},{"key":"tag_id","value":"61894084-16af-4ea8-93e4-f251ba7673e2","description":"Tag detection Id (required)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 22:46:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"117"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"61894084-16af-4ea8-93e4-f251ba7673e2\",\n        \"name\": \"owl\",\n        \"time\": 39.038999999999994,\n        \"score\": 0.67582768201828\n    }\n}"}],"_postman_id":"bd8111d8-5296-4348-90e0-95a4283ac3d0"},{"name":"Get Generic Tag Details","id":"cb21ddaf-f6cf-4ba5-8b00-eedf262b75b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/generic_tags","description":"<p>Returns an array of generic tag detections (also know as \"Visual Detections\") for the asset, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the detection</li>\n<li><code>name</code> : name of the generic tag detected</li>\n<li><code>time</code> : timestamp at which the detection occurs</li>\n<li><code>score</code> : the confidence score for the detection. Between 0 and 1</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","generic_tags"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"}]}},"response":[{"id":"c66544c0-8188-4fc5-8749-6521729f2472","name":"Get Generic Tag Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/generic_tags","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","generic_tags"],"variable":[{"key":"asset_id","value":"{{asset_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 22:48:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"15356"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"621b1e26-61c9-4621-a825-d56e7259ecd0\",\n            \"name\": \"Advertising\",\n            \"time\": 0.0,\n            \"score\": 0.5628646612167358\n        },\n        {\n            \"id\": \"dc265052-b500-4543-8e73-6ef761afcaeb\",\n            \"name\": \"Brand\",\n            \"time\": 3.0029999999999997,\n            \"score\": 0.5696905851364136\n        },\n        {\n            \"id\": \"bec0facf-3fd9-458f-971d-9018cd1376de\",\n            \"name\": \"Advertising\",\n            \"time\": 3.0029999999999997,\n            \"score\": 0.6401897668838501\n        },\n        {\n            \"id\": \"5e061cb5-6463-4f9a-bb62-e1eea3c24fcb\",\n            \"name\": \"Presentation\",\n            \"time\": 3.0029999999999997,\n            \"score\": 0.5014339685440063\n        },\n        {\n            \"id\": \"de594b25-d858-43e6-86a0-f318a9ed694f\",\n            \"name\": \"Person\",\n            \"time\": 6.005999999999999,\n            \"score\": 0.6304934024810791\n        },\n        {\n            \"id\": \"331437b8-4e30-49f9-9056-a4cfbd5bb119\",\n            \"name\": \"Speech\",\n            \"time\": 12.011999999999999,\n            \"score\": 0.7138363122940063\n        },\n        {\n            \"id\": \"2919c8d0-80e7-489c-a5e7-18d39c713b43\",\n            \"name\": \"Speech\",\n            \"time\": 15.014999999999999,\n            \"score\": 0.8156185150146484\n        },\n        {\n            \"id\": \"ddf41afa-8817-4c3f-a543-88f36f0430f3\",\n            \"name\": \"Person\",\n            \"time\": 15.014999999999999,\n            \"score\": 0.8219529986381531\n        },\n        {\n            \"id\": \"f3e37f7b-3ff1-40dc-a1c9-89538c94e3a0\",\n            \"name\": \"Speech\",\n            \"time\": 27.27725,\n            \"score\": 0.6697810292243958\n        },\n        {\n            \"id\": \"0656fe67-8965-466f-9c9b-0d832870b485\",\n            \"name\": \"Person\",\n            \"time\": 27.27725,\n            \"score\": 0.8118666410446167\n        },\n        {\n            \"id\": \"f5c8ae4a-8d86-40a8-bd83-df65b5c6d1eb\",\n            \"name\": \"Speech\",\n            \"time\": 30.029999999999998,\n            \"score\": 0.5626446008682251\n        },\n        {\n            \"id\": \"ffb0fe68-27b9-4956-b480-ce864a617597\",\n            \"name\": \"Person\",\n            \"time\": 36.035999999999994,\n            \"score\": 0.7796491384506226\n        },\n        {\n            \"id\": \"82a1c8b4-cef7-4ae1-b0e8-30bb68f7b087\",\n            \"name\": \"Speech\",\n            \"time\": 36.035999999999994,\n            \"score\": 0.8761566877365112\n        },\n        {\n            \"id\": \"2b9d7012-090c-41f3-94e5-61adaff96b6c\",\n            \"name\": \"Person\",\n            \"time\": 39.038999999999994,\n            \"score\": 0.5027733445167542\n        },\n        {\n            \"id\": \"b677d616-ecb4-454f-aee9-92db05443ae9\",\n            \"name\": \"Speech\",\n            \"time\": 39.038999999999994,\n            \"score\": 0.764919638633728\n        }\n    ]\n}"}],"_postman_id":"cb21ddaf-f6cf-4ba5-8b00-eedf262b75b5"},{"name":"Get Generic Tag Details by Id","id":"643ec06a-5aab-434e-b745-9f1239bba722","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/generic_tags/:tag_id","description":"<p>Returns information for a specific generic tag detection, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the detection</li>\n<li><code>name</code> : name of the generic tag detected</li>\n<li><code>time</code> : timestamp at which the detection occurs</li>\n<li><code>score</code> : the confidence score for the detection. Between 0 and 1</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","generic_tags",":tag_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"},{"description":{"content":"<p>Tag detection Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"tag_id"}]}},"response":[{"id":"ab4c6018-17db-4347-af3a-bb4e88b97d87","name":"Get Generic Tag Details by Id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/generic_tags/:tag_id","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","generic_tags",":tag_id"],"variable":[{"key":"asset_id","value":"{{asset_id}}"},{"key":"tag_id","value":"bec0facf-3fd9-458f-971d-9018cd1376de"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 22:49:13 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"116"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"bec0facf-3fd9-458f-971d-9018cd1376de\",\n        \"name\": \"Advertising\",\n        \"time\": 3.0029999999999997,\n        \"score\": 0.6401897668838501\n    }\n}"}],"_postman_id":"643ec06a-5aab-434e-b745-9f1239bba722"},{"name":"Get IAB Tag Details","id":"20e8fd44-56bf-4363-9b4e-77926c72f525","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/iab_tags","description":"<p>Returns an array of IAB tag detections (also known as \"Scenes\") for the asset, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the detection</li>\n<li><code>name</code> : name of the IAB tag detected</li>\n<li><code>time</code> : timestamp at which the detection occurs</li>\n<li><code>score</code> : the confidence score for the detection. Between 0 and 1</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","iab_tags"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"}]}},"response":[{"id":"bbaf6760-cc15-4726-ae80-9785e5be6187","name":"Get IAB Tag Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/iab_tags","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","iab_tags"],"variable":[{"key":"asset_id","value":"acbe9c10-0107-4be9-b844-daee2a861fe7"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 23:38:43 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"915"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"ad4c68f5-aafd-485d-9479-9c4174931fa4\",\n            \"name\": \"Large Animals\",\n            \"time\": 0.0,\n            \"score\": 0.5207421779632568\n        }\n    ]\n}"}],"_postman_id":"20e8fd44-56bf-4363-9b4e-77926c72f525"},{"name":"Get IAB Tag Details by Id","id":"625419ae-6c87-4c67-ae4a-1615242a60e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/iab_tags/:label_id","description":"<p>Returns information for a specific IAB tag detection, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the detection</li>\n<li><code>name</code> : name of the IAB tag detected</li>\n<li><code>time</code> : timestamp at which the detection occurs</li>\n<li><code>score</code> : the confidence score for the detection. Between 0 and 1</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","iab_tags",":label_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"},{"description":{"content":"<p>Tag detection Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"label_id"}]}},"response":[{"id":"ee3aec89-c664-4a39-9904-fdf7369d91f1","name":"Get IAB Tag Details by Id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/iab_tags/:label_id","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","iab_tags",":label_id"],"variable":[{"key":"asset_id","value":"acbe9c10-0107-4be9-b844-daee2a861fe7"},{"key":"label_id","value":"ad4c68f5-aafd-485d-9479-9c4174931fa4"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 23:39:04 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"134"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"ad4c68f5-aafd-485d-9479-9c4174931fa4\",\n        \"name\": \"Large Animals\",\n        \"time\": 0.0,\n        \"score\": 0.5207421779632568\n    }\n}"}],"_postman_id":"625419ae-6c87-4c67-ae4a-1615242a60e9"},{"name":"Get Keyphrases","id":"4b56c10f-ba0d-4ec5-8d2b-be04a7991bd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/keyphrases","description":"<p>Returns an array of key phrase detections for the asset, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the keyphrase</li>\n<li><code>keyphrase</code> : the keyphrase detected</li>\n<li><code>confidence</code> : the confidence score for the detection. Between 0 and 1</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","keyphrases"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"}]}},"response":[{"id":"d3ed43f6-9fd6-4259-8471-3c6f9266b3af","name":"Get Keyphrases","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/keyphrases","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","keyphrases"],"variable":[{"key":"asset_id","value":"{{asset_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 23:41:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"945"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"c5c98bb4-93b1-4f82-8494-293e0b4d5ee9\",\n            \"keyphrase\": \"peaceful\",\n            \"confidence\": 0.06353358302258184\n        },\n        {\n            \"id\": \"b58fa693-217d-4a60-988a-f9c92f5e38ca\",\n            \"keyphrase\": \"capable allies\",\n            \"confidence\": 0.04567271882225544\n        },\n        {\n            \"id\": \"a9e1afbe-b68a-475c-8e0e-98de6d1c9458\",\n            \"keyphrase\": \"today\",\n            \"confidence\": 0.04300654937407792\n        },\n        {\n            \"id\": \"ebe8b042-94a6-4164-9810-e236fb33c807\",\n            \"keyphrase\": \"strength\",\n            \"confidence\": 0.04250456826777748\n        },\n        {\n            \"id\": \"7f72582d-ea8e-45e8-be83-6dfd9aa94028\",\n            \"keyphrase\": \"stalwart\",\n            \"confidence\": 0.04222843260858667\n        },\n        {\n            \"id\": \"f0bf4ea8-1f31-49a9-8f3b-e2bd51c66581\",\n            \"keyphrase\": \"common values\",\n            \"confidence\": 0.041525495885342184\n        },\n        {\n            \"id\": \"b613a78b-b631-4622-860c-b3ca8411541b\",\n            \"keyphrase\": \"challenges\",\n            \"confidence\": 0.03957255185013716\n        },\n        {\n            \"id\": \"5cc89a77-b894-4fac-bedc-28d78cfe8d71\",\n            \"keyphrase\": \"tomorrow\",\n            \"confidence\": 0.0391687077243415\n        },\n        {\n            \"id\": \"d101f012-65ab-4d94-a3b8-131742edf747\",\n            \"keyphrase\": \"america\",\n            \"confidence\": 0.039117296067092695\n        },\n        {\n            \"id\": \"7b38c73c-a982-4389-86b6-fe82ce413549\",\n            \"keyphrase\": \"prosperous future\",\n            \"confidence\": 0.03909548189334816\n        }\n    ]\n}"}],"_postman_id":"4b56c10f-ba0d-4ec5-8d2b-be04a7991bd7"},{"name":"Get Named Entities Details","id":"6bef563b-a1f1-4306-90ea-19db37feb0bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/named_entities","description":"<p>Returns an array of named entity detections for the asset, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the detection</li>\n<li><code>named_entity:name</code> : name of the entity detected</li>\n<li><code>named_entity:entity_type</code> : type of named entity detected</li>\n<li><code>time</code> : timestamp at which the detection occurs</li>\n<li><code>score</code> : the confidence score for the detection. Between 0 and 1</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","named_entities"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"}]}},"response":[{"id":"121a80f8-8dce-4688-9b1c-53f16ad23d40","name":"Get Named Entities Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/named_entities","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","named_entities"],"variable":[{"key":"asset_id","value":"{{asset_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 23:44:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"268126"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"352413f0-bc39-4232-8972-17351a2a8559\",\n            \"named_entity\": {\n                \"name\": \"CA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 0.0,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"214abdec-b543-4eb2-8a45-c476ec12cc7c\",\n            \"named_entity\": {\n                \"name\": \"SAN DIEGO\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 0.0,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"10efd251-fea9-4679-a9fb-e9df8e7ab70a\",\n            \"named_entity\": {\n                \"name\": \"AK\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 0.0,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"028648e4-2784-4af1-832e-fcacdfd41e35\",\n            \"named_entity\": {\n                \"name\": \"Ted Kingdom\",\n                \"entity_type\": \"PERSON\"\n            },\n            \"time\": 3.0029999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"304ccbb6-f2b3-4aea-b3de-4b887a86538a\",\n            \"named_entity\": {\n                \"name\": \"CA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 3.0029999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"77357dcb-dc61-4b52-bd81-a5be05b21fac\",\n            \"named_entity\": {\n                \"name\": \"US\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 3.0029999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"3a241c4c-3269-4136-8552-a23c0bcdf08b\",\n            \"named_entity\": {\n                \"name\": \"AUSTRALIA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 3.0029999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"3f855f72-6850-4bf3-afba-001e8e123188\",\n            \"named_entity\": {\n                \"name\": \"DieGo\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 3.0029999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"558eb31d-3f3c-43d3-9bf8-3ef9d3bedf4c\",\n            \"named_entity\": {\n                \"name\": \"Sunak\",\n                \"entity_type\": \"PERSON\"\n            },\n            \"time\": 3.0029999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"efe7776f-25c3-4f5e-8fb7-1cf10b11e5c4\",\n            \"named_entity\": {\n                \"name\": \"AUKU\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 3.0029999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"41d5ad37-e09f-44d4-b781-bee3e6d12023\",\n            \"named_entity\": {\n                \"name\": \"CA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 3.0029999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"dc0553ad-581c-40f4-b1a2-9d5eed8c55ff\",\n            \"named_entity\": {\n                \"name\": \"Albanese\",\n                \"entity_type\": \"NORP\"\n            },\n            \"time\": 3.0029999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"db556948-67ee-44e2-9ee7-abe48c71cf5a\",\n            \"named_entity\": {\n                \"name\": \"United States\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 3.0029999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"3a9baf9a-99f5-4e1e-aeff-0865572a7f28\",\n            \"named_entity\": {\n                \"name\": \"United Kingdom\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 3.0029999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"5883182b-06ec-4d86-bd34-644c5a14621f\",\n            \"named_entity\": {\n                \"name\": \"Australia\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 3.0029999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"0098bcbf-5c82-4f2f-8015-212d9c181e85\",\n            \"named_entity\": {\n                \"name\": \"AK\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 5.005,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"1ae83f4a-7b93-47d8-aef9-52118c0b544d\",\n            \"named_entity\": {\n                \"name\": \"Australia\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 5.005,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"352eca0b-16c1-4efd-a85e-f8ca51be738f\",\n            \"named_entity\": {\n                \"name\": \"United Kingdom\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 5.005,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"32de8f81-bf71-4df6-b40c-0615ef7e97a7\",\n            \"named_entity\": {\n                \"name\": \"UNITED\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 6.005999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"b9eb0353-57f9-4f1f-8210-4d19dd1733df\",\n            \"named_entity\": {\n                \"name\": \"United Kingdom\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 6.005999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"15073dc1-7988-4ca2-b7fc-27dad7c417f6\",\n            \"named_entity\": {\n                \"name\": \"Australia\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 6.005999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"ac939a63-1072-47da-ad46-94cb7149562a\",\n            \"named_entity\": {\n                \"name\": \"US\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 6.005999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"6ce7cf78-44b0-4c7a-bde6-ec594e7a51dc\",\n            \"named_entity\": {\n                \"name\": \"AK\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 6.005999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"c9df7cd4-f09b-4d53-87e0-e1f06c09806e\",\n            \"named_entity\": {\n                \"name\": \"UNITED KINGD\",\n                \"entity_type\": \"PERSON\"\n            },\n            \"time\": 9.008999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"8aee261c-400e-4ba7-8fe8-aa83d701b4b7\",\n            \"named_entity\": {\n                \"name\": \"KUS\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 9.008999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"41a7556b-55b8-4dc3-b768-8f69ed9f619c\",\n            \"named_entity\": {\n                \"name\": \"AK\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 9.008999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"503eb0f2-0eba-491f-838c-62e9f47c51c8\",\n            \"named_entity\": {\n                \"name\": \"AUSTRALIA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 12.011999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"9eb444ee-1d56-4fe4-8fab-a0cf5ab596d1\",\n            \"named_entity\": {\n                \"name\": \"us allacioss\",\n                \"entity_type\": \"PERSON\"\n            },\n            \"time\": 15.014999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"444546d2-4ac1-4c46-b25c-b53664faa00d\",\n            \"named_entity\": {\n                \"name\": \"the'Atlantic\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 15.014999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"014e43e4-61c2-423d-945c-e727af8c69d0\",\n            \"named_entity\": {\n                \"name\": \"Pacific\",\n                \"entity_type\": \"LOC\"\n            },\n            \"time\": 15.014999999999999,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"566eecf3-eca2-40bd-97ca-dedb53846b5d\",\n            \"named_entity\": {\n                \"name\": \"AUKU\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 16.975291666666667,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"2b9600ef-eb03-41ac-83bb-a7cfa717ed67\",\n            \"named_entity\": {\n                \"name\": \"more than a century\",\n                \"entity_type\": \"DATE\"\n            },\n            \"time\": 16.975291666666667,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"7be3f0a8-1186-4611-8b7f-4084bdb704ef\",\n            \"named_entity\": {\n                \"name\": \"Australia\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 16.975291666666667,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"2740abc6-b675-44e2-a961-ac73d1bb2d83\",\n            \"named_entity\": {\n                \"name\": \"5\",\n                \"entity_type\": \"CARDINAL\"\n            },\n            \"time\": 16.975291666666667,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"3c99ba80-b031-4e4e-90e4-6c7e442a2d63\",\n            \"named_entity\": {\n                \"name\": \"CA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 16.975291666666667,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"2901aaf1-93e5-4e53-9851-2d12cd3de595\",\n            \"named_entity\": {\n                \"name\": \"United Kingdom-\",\n                \"entity_type\": \"NORP\"\n            },\n            \"time\": 16.975291666666667,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"1c0de24b-36d0-4b8e-9ca1-ad86090eff2b\",\n            \"named_entity\": {\n                \"name\": \"KUS\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 16.975291666666667,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"40dcc33c-27b5-4e48-89ca-55186bd3f4cf\",\n            \"named_entity\": {\n                \"name\": \"CA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 16.975291666666667,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"1345e872-e056-48c7-881f-15bd605f9b9b\",\n            \"named_entity\": {\n                \"name\": \"AUSTRALIA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 16.975291666666667,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"90486e73-2f09-4572-9401-70304681d643\",\n            \"named_entity\": {\n                \"name\": \"Diego\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 16.975291666666667,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"1d77d90c-0a95-401e-bf28-2fb28834803c\",\n            \"named_entity\": {\n                \"name\": \"UNITED K\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 16.975291666666667,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"5d1d994f-5b59-4d57-9393-e5acaae32121\",\n            \"named_entity\": {\n                \"name\": \"CA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 18.017999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"fac7fb4c-2beb-4d60-9e5a-e1f186e9eb12\",\n            \"named_entity\": {\n                \"name\": \"AustraLiA\",\n                \"entity_type\": \"CARDINAL\"\n            },\n            \"time\": 18.017999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"c6f9b798-f805-4dc5-9da1-5868e8e16fca\",\n            \"named_entity\": {\n                \"name\": \"more than a century\",\n                \"entity_type\": \"DATE\"\n            },\n            \"time\": 18.017999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"4df8d80b-766a-46ed-a309-d3841c362d9b\",\n            \"named_entity\": {\n                \"name\": \"AUKU\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 18.017999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"659080d7-6071-4ff7-b4be-de87e1c82bab\",\n            \"named_entity\": {\n                \"name\": \"XK\",\n                \"entity_type\": \"PERSON\"\n            },\n            \"time\": 18.017999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"0f3d1413-9537-433b-ab83-2e0f0327fa7d\",\n            \"named_entity\": {\n                \"name\": \"UNITED K\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 18.017999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"63d9231c-1e73-4806-bcc1-cd45c0377678\",\n            \"named_entity\": {\n                \"name\": \"Diego\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 18.017999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"b449a335-f69f-4954-a605-13fca635b874\",\n            \"named_entity\": {\n                \"name\": \"CA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 18.017999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"403c7905-b1b2-47ef-9069-c174ee73c05d\",\n            \"named_entity\": {\n                \"name\": \"AUSTRALIA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 18.017999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"01b88fec-045c-44f9-9a3d-9a820cac2167\",\n            \"named_entity\": {\n                \"name\": \"KUS\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 18.017999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"92fd35b0-436e-4136-a5bd-9318dfc708b4\",\n            \"named_entity\": {\n                \"name\": \"AUSTRALIA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 21.020999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"78ff0ce4-c229-416c-b2c0-a2c403eb6c31\",\n            \"named_entity\": {\n                \"name\": \"AUKU\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 21.020999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"818f7f1a-0007-4b7d-92b3-21af8cee97c4\",\n            \"named_entity\": {\n                \"name\": \"DiEgo\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 21.020999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"492ef863-a6f8-477d-b7da-44e31a4b33fe\",\n            \"named_entity\": {\n                \"name\": \"United Kingdom-\",\n                \"entity_type\": \"NORP\"\n            },\n            \"time\": 21.020999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"2b761810-3be0-47c7-a05b-2d0b005b59ae\",\n            \"named_entity\": {\n                \"name\": \"UNITED Kingdom\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 21.020999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"671ed0fb-0a25-4153-95ea-e63a1153a30a\",\n            \"named_entity\": {\n                \"name\": \"AustraliA\",\n                \"entity_type\": \"PERSON\"\n            },\n            \"time\": 21.020999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"fff1bec0-a40c-4cbc-896c-2350d614c973\",\n            \"named_entity\": {\n                \"name\": \"KUS\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 21.020999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"ec46e437-c283-4115-9b8c-39e00210adc5\",\n            \"named_entity\": {\n                \"name\": \"CA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 21.020999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"6a1076fe-1fee-4656-8a5e-b990215eecca\",\n            \"named_entity\": {\n                \"name\": \"UNITED K\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 21.020999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"0f3d6788-fd27-4e2a-9b68-aae4bb2daad8\",\n            \"named_entity\": {\n                \"name\": \"CA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 21.020999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"796f3f67-3b64-4dbc-b2ea-9c0306e4a243\",\n            \"named_entity\": {\n                \"name\": \"AUSTRALIA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 24.023999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"6ac93b62-5ef3-49f4-9f65-4ee8ba3e0e75\",\n            \"named_entity\": {\n                \"name\": \"ALstDiLuA\",\n                \"entity_type\": \"PRODUCT\"\n            },\n            \"time\": 24.023999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"5a6bda41-8c18-4a77-90fb-7a750dd3a35c\",\n            \"named_entity\": {\n                \"name\": \"CA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 24.023999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"b803d87e-c281-4917-94aa-6080ce4073db\",\n            \"named_entity\": {\n                \"name\": \"CA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 24.023999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"832de483-935d-45ee-8480-428541aaf166\",\n            \"named_entity\": {\n                \"name\": \"Idiego\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 24.023999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"24ed8490-786a-4ed1-ae0c-bd613c6cba27\",\n            \"named_entity\": {\n                \"name\": \"United StaTES\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 24.023999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"aa9c885f-4bf3-4e41-b627-3429b4d2551f\",\n            \"named_entity\": {\n                \"name\": \"AUSTRALIA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 24.023999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"c85e07d3-2ad3-42b0-98b1-dfe8ed5fc0fc\",\n            \"named_entity\": {\n                \"name\": \"UNITED KINGDC\",\n                \"entity_type\": \"PERSON\"\n            },\n            \"time\": 24.023999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"a0be9494-cd2e-4537-9db2-76e48cb64da7\",\n            \"named_entity\": {\n                \"name\": \"VaeDe\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 24.023999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"01ed453d-b657-4b52-90ad-5ef3d5eecf02\",\n            \"named_entity\": {\n                \"name\": \"Umited\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 24.023999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"0cc757ac-6fc6-4f98-9d4d-b641e856682b\",\n            \"named_entity\": {\n                \"name\": \"Austoalut\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 27.026999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"b7d3280d-9958-45e4-9ae0-abc05c07ec21\",\n            \"named_entity\": {\n                \"name\": \"today\",\n                \"entity_type\": \"DATE\"\n            },\n            \"time\": 27.026999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"0e9e8865-3b0c-41c3-8687-5664c09660c3\",\n            \"named_entity\": {\n                \"name\": \"tomorrow\",\n                \"entity_type\": \"DATE\"\n            },\n            \"time\": 27.026999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"a178d66d-1095-4201-9f47-5a691dcad27e\",\n            \"named_entity\": {\n                \"name\": \"Australia\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 27.026999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"70b27cba-364c-4cb5-9416-f50deef6d0ca\",\n            \"named_entity\": {\n                \"name\": \"CA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 27.026999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"d4891904-77d8-4924-8a5e-414847542bee\",\n            \"named_entity\": {\n                \"name\": \"Idiego\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 27.026999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"09179852-7e65-426d-aee0-89f9e24d2626\",\n            \"named_entity\": {\n                \"name\": \"AUSTRALIA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 27.026999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"b8d09d2b-d210-40aa-9d3d-7db2d83b01f8\",\n            \"named_entity\": {\n                \"name\": \"UNITED KINGDC\",\n                \"entity_type\": \"PERSON\"\n            },\n            \"time\": 27.026999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"e28d638d-6875-4e91-ac73-8f316e08a92c\",\n            \"named_entity\": {\n                \"name\": \"CA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 27.026999999999997,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"49d9f1cf-7935-43a2-be95-2b001186020b\",\n            \"named_entity\": {\n                \"name\": \"UNITED STATES\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 28.486791666666665,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"be27a7c5-19ba-48c1-a32e-4b2e6adfd93f\",\n            \"named_entity\": {\n                \"name\": \"the United States\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 30.029999999999998,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"a4815c4f-5ab1-4f55-bdc4-c9a18a1950b0\",\n            \"named_entity\": {\n                \"name\": \"UNITED STATES\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 30.029999999999998,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"35d6dd1a-9031-418b-9a5e-547147f83bc9\",\n            \"named_entity\": {\n                \"name\": \"two\",\n                \"entity_type\": \"CARDINAL\"\n            },\n            \"time\": 31.656625,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"b3009687-cef0-4d0b-98c5-2448f2177328\",\n            \"named_entity\": {\n                \"name\": \"AUSTRALIA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 31.656625,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"03b1ba11-65cf-42d5-b1da-ce1e259559e9\",\n            \"named_entity\": {\n                \"name\": \"UNITE\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 31.656625,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"e36c7628-6f94-4f6c-8f21-1b1dac2bcb12\",\n            \"named_entity\": {\n                \"name\": \"AUSTRALIA\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 33.032999999999994,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"a53dfc3d-ff8b-478a-834e-d79441a0f2f9\",\n            \"named_entity\": {\n                \"name\": \"UNITE\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 33.032999999999994,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"2d7402be-4061-4e9f-8c9c-76b1ca4d7f8e\",\n            \"named_entity\": {\n                \"name\": \"AUST\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 36.035999999999994,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"d7401c0d-0b1d-4050-81dd-5e119f3c435a\",\n            \"named_entity\": {\n                \"name\": \"NGDOM\",\n                \"entity_type\": \"ORG\"\n            },\n            \"time\": 39.038999999999994,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"b864ca5e-0363-4dea-8ab1-b5cd81ab58e8\",\n            \"named_entity\": {\n                \"name\": \"WASHINGTON\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 39.038999999999994,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"feba2153-58f2-4b3c-ba1a-d647edab7a35\",\n            \"named_entity\": {\n                \"name\": \"Abones\",\n                \"entity_type\": \"PERSON\"\n            },\n            \"time\": 20.5,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"27230733-1c8f-44e0-bf43-9b843a4b5582\",\n            \"named_entity\": {\n                \"name\": \"Eminisin\",\n                \"entity_type\": \"PERSON\"\n            },\n            \"time\": 20.5,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"4f6a9e46-38bf-471b-8c1d-e10292e69b34\",\n            \"named_entity\": {\n                \"name\": \"Australia\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 20.5,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"ff725f87-ff2b-4332-8a1b-031f82095267\",\n            \"named_entity\": {\n                \"name\": \"two\",\n                \"entity_type\": \"CARDINAL\"\n            },\n            \"time\": 20.5,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"2d23d0e2-2544-4e56-bb15-ba4cb68744b1\",\n            \"named_entity\": {\n                \"name\": \"America\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 20.5,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"52ccab7a-d1a8-43fb-b7e4-36232b34cd63\",\n            \"named_entity\": {\n                \"name\": \"Atlantic\",\n                \"entity_type\": \"LOC\"\n            },\n            \"time\": 20.5,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"5aaaa80c-52b9-4701-9b8e-063ba5a849f7\",\n            \"named_entity\": {\n                \"name\": \"Pacific\",\n                \"entity_type\": \"LOC\"\n            },\n            \"time\": 20.5,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"6055c0c9-913e-4201-a659-a45881ae5834\",\n            \"named_entity\": {\n                \"name\": \"more than a century\",\n                \"entity_type\": \"DATE\"\n            },\n            \"time\": 20.5,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"cd5e7824-9aeb-4764-96a0-d794177a9e74\",\n            \"named_entity\": {\n                \"name\": \"today\",\n                \"entity_type\": \"DATE\"\n            },\n            \"time\": 20.5,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"53350699-b0a1-420d-9d4a-cbf4cb75e815\",\n            \"named_entity\": {\n                \"name\": \"tomorrow\",\n                \"entity_type\": \"DATE\"\n            },\n            \"time\": 20.5,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"21ef2001-0f64-4637-90be-aa418bf67ff8\",\n            \"named_entity\": {\n                \"name\": \"the United States\",\n                \"entity_type\": \"GPE\"\n            },\n            \"time\": 20.5,\n            \"score\": 1.0\n        },\n        {\n            \"id\": \"3f78bd98-f4a5-4347-b8c4-dadee63fa8bc\",\n            \"named_entity\": {\n                \"name\": \"two\",\n                \"entity_type\": \"CARDINAL\"\n            },\n            \"time\": 20.5,\n            \"score\": 1.0\n        }\n    ]\n}"}],"_postman_id":"6bef563b-a1f1-4306-90ea-19db37feb0bc"},{"name":"Get Named Entities Details by Id","id":"895c5649-7faa-4e36-8613-8abcf8a5e411","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/named_entities/:entity_id","description":"<p>Returns information for a specific named entity detection, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the detection</li>\n<li><code>named_entity:name</code> : name of the entity detected</li>\n<li><code>named_entity:entity_type</code> : type of named entity detected</li>\n<li><code>time</code> : timestamp at which the detection occurs</li>\n<li><code>score</code> : the confidence score for the detection. Between 0 and 1</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","named_entities",":entity_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"},{"description":{"content":"<p>Named Entity Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"entity_id"}]}},"response":[{"id":"7c712914-c32b-4470-a7f1-1171582f7b7a","name":"Get Named Entities Details by Id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/named_entities/:entity_id","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","named_entities",":entity_id"],"variable":[{"key":"asset_id","value":"{{asset_id}}"},{"key":"entity_id","value":"214abdec-b543-4eb2-8a45-c476ec12cc7c"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 23:45:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"143"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"214abdec-b543-4eb2-8a45-c476ec12cc7c\",\n        \"named_entity\": {\n            \"name\": \"SAN DIEGO\",\n            \"entity_type\": \"GPE\"\n        },\n        \"time\": 0.0,\n        \"score\": 1.0\n    }\n}"}],"_postman_id":"895c5649-7faa-4e36-8613-8abcf8a5e411"},{"name":"Get Object Details","id":"c7d2e4ff-83f3-4f05-bc87-81efeddcbd5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_uid/object_detections","description":"<p>Returns an array of object detections for the asset, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the detection</li>\n<li><code>label:id</code> : unique identifier of the object detected</li>\n<li><code>label:name</code> : name of the object detected</li>\n<li><code>time</code> : timestamp at which the detection occurs</li>\n<li><code>score</code> : the confidence score for the detection. Between 0 and 1</li>\n<li><code>x</code> , <code>y</code> , <code>w</code> , <code>h</code>: location of the object</li>\n<li><code>frame_height</code> : height of the asset in pixels</li>\n<li><code>frame_width</code> : width of the asset in pixels</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_uid","object_detections"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_uid"}]}},"response":[{"id":"750d90f0-3297-49ef-8914-8ec17a2c76f0","name":"Get Object Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_uid/object_detections","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_uid","object_detections"],"variable":[{"key":"asset_uid","value":"{{asset_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 23:45:22 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"276327"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"31e53639-40e8-4880-8cd0-16af68265b2e\",\n            \"label\": {\n                \"id\": \"e015223b-5446-4b40-9dc0-d4b788b54964\",\n                \"name\": \"skateboard\"\n            },\n            \"x\": 163,\n            \"y\": 1043,\n            \"w\": 123,\n            \"h\": 59,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 0.0,\n            \"score\": 0.26191186904907227\n        },\n        {\n            \"id\": \"f9519c91-4b0f-433a-972b-7ed7395b7d57\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 378,\n            \"y\": 780,\n            \"w\": 74,\n            \"h\": 321,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 0.0,\n            \"score\": 0.398426353931427\n        },\n        {\n            \"id\": \"d62192e6-d88e-4601-922f-dc1757269ec1\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 179,\n            \"y\": 746,\n            \"w\": 171,\n            \"h\": 357,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 0.0,\n            \"score\": 0.8970626592636108\n        },\n        {\n            \"id\": \"22ed0180-ec53-4130-ac2d-963bd224d3ea\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 54,\n            \"y\": 551,\n            \"w\": 262,\n            \"h\": 165,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.3590632677078247\n        },\n        {\n            \"id\": \"a01c4fea-5405-4b85-b0d0-4cd3e5201a1a\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 624,\n            \"y\": 441,\n            \"w\": 97,\n            \"h\": 224,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.2832922339439392\n        },\n        {\n            \"id\": \"e5f78b37-92d8-4d03-bc2c-13549a0dbc1b\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 7,\n            \"y\": 561,\n            \"w\": 109,\n            \"h\": 170,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.542579710483551\n        },\n        {\n            \"id\": \"51314971-edeb-4f64-aef7-92907a2a20ab\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 252,\n            \"y\": 496,\n            \"w\": 140,\n            \"h\": 199,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.6173394322395325\n        },\n        {\n            \"id\": \"0785090b-7fe2-42fe-b426-e71936865f2f\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 73,\n            \"y\": 609,\n            \"w\": 83,\n            \"h\": 244,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 5.005,\n            \"score\": 0.253177672624588\n        },\n        {\n            \"id\": \"cfa5ed31-ef42-48df-bc29-27fdd3739724\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 3,\n            \"y\": 333,\n            \"w\": 135,\n            \"h\": 617,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 5.005,\n            \"score\": 0.396210640668869\n        },\n        {\n            \"id\": \"b1e6b6dc-68bc-4df1-b6a9-ddfc04ae5179\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 292,\n            \"y\": 255,\n            \"w\": 420,\n            \"h\": 1017,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 5.005,\n            \"score\": 0.9212400317192078\n        },\n        {\n            \"id\": \"ae3334d6-a2b9-419c-a53f-c9677156bf5f\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 226,\n            \"y\": 364,\n            \"w\": 188,\n            \"h\": 541,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 5.005,\n            \"score\": 0.5142041444778442\n        },\n        {\n            \"id\": \"4a380d6e-601e-450d-bf8a-872b79960f48\",\n            \"label\": {\n                \"id\": \"5943bd84-62de-4b58-ad66-834bd4bf2694\",\n                \"name\": \"tie\"\n            },\n            \"x\": 462,\n            \"y\": 421,\n            \"w\": 46,\n            \"h\": 196,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 5.005,\n            \"score\": 0.35638394951820374\n        },\n        {\n            \"id\": \"084e874d-0e0e-442a-b0e3-5051da08538f\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 4,\n            \"y\": 244,\n            \"w\": 266,\n            \"h\": 1031,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 6.005999999999999,\n            \"score\": 0.5068278312683105\n        },\n        {\n            \"id\": \"7f5ea7a0-5adf-4bd3-9c81-a6380ca136bc\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 239,\n            \"y\": 203,\n            \"w\": 469,\n            \"h\": 1071,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 6.005999999999999,\n            \"score\": 0.9032520055770874\n        },\n        {\n            \"id\": \"e69ca671-e5cb-42f6-9cee-7a25102bbc24\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 232,\n            \"y\": 310,\n            \"w\": 185,\n            \"h\": 329,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 6.005999999999999,\n            \"score\": 0.5117954611778259\n        },\n        {\n            \"id\": \"f6f215ca-95a0-4943-8dfc-551e5ae7f881\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 0,\n            \"y\": 394,\n            \"w\": 46,\n            \"h\": 99,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 6.005999999999999,\n            \"score\": 0.38084954023361206\n        },\n        {\n            \"id\": \"ce8f64f8-47a2-4a0d-a469-0f3b6a9bf093\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 151,\n            \"y\": 442,\n            \"w\": 79,\n            \"h\": 182,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 6.005999999999999,\n            \"score\": 0.3670986294746399\n        },\n        {\n            \"id\": \"95076e5c-9301-4745-a256-575645d35f3a\",\n            \"label\": {\n                \"id\": \"5943bd84-62de-4b58-ad66-834bd4bf2694\",\n                \"name\": \"tie\"\n            },\n            \"x\": 481,\n            \"y\": 408,\n            \"w\": 53,\n            \"h\": 187,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 6.005999999999999,\n            \"score\": 0.306738018989563\n        },\n        {\n            \"id\": \"71348080-a9e9-413b-832a-c52bf8c8a7d5\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 612,\n            \"y\": 346,\n            \"w\": 107,\n            \"h\": 168,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 6.005999999999999,\n            \"score\": 0.2241435945034027\n        },\n        {\n            \"id\": \"950ae869-6213-49f0-b9ae-2b2c41f47c2d\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 328,\n            \"y\": 201,\n            \"w\": 382,\n            \"h\": 1076,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 9.008999999999999,\n            \"score\": 0.8872083425521851\n        },\n        {\n            \"id\": \"59244f4e-f7d1-48bf-886e-a29e94679371\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 0,\n            \"y\": 224,\n            \"w\": 315,\n            \"h\": 1035,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 9.008999999999999,\n            \"score\": 0.7039322257041931\n        },\n        {\n            \"id\": \"037f364d-39e4-4f1e-b020-88714ed9e66d\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 223,\n            \"y\": 443,\n            \"w\": 153,\n            \"h\": 415,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 9.008999999999999,\n            \"score\": 0.6663104295730591\n        },\n        {\n            \"id\": \"eb0605ef-9e3e-4c49-b55c-3248f28ca719\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 120,\n            \"y\": 385,\n            \"w\": 105,\n            \"h\": 136,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 9.008999999999999,\n            \"score\": 0.5195168256759644\n        },\n        {\n            \"id\": \"5a38c2b8-83f0-4ac2-8259-a1dd350f6c99\",\n            \"label\": {\n                \"id\": \"5943bd84-62de-4b58-ad66-834bd4bf2694\",\n                \"name\": \"tie\"\n            },\n            \"x\": 465,\n            \"y\": 455,\n            \"w\": 63,\n            \"h\": 254,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 9.008999999999999,\n            \"score\": 0.3626888394355774\n        },\n        {\n            \"id\": \"ade42eb6-0641-4c01-ad4a-f8e2db4fcae2\",\n            \"label\": {\n                \"id\": \"5943bd84-62de-4b58-ad66-834bd4bf2694\",\n                \"name\": \"tie\"\n            },\n            \"x\": 254,\n            \"y\": 549,\n            \"w\": 45,\n            \"h\": 132,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 9.008999999999999,\n            \"score\": 0.34709450602531433\n        },\n        {\n            \"id\": \"91e04310-ea6f-49dc-895d-f1f1009b346c\",\n            \"label\": {\n                \"id\": \"48c655fc-bb76-4b62-8e2e-a6bfa6e19582\",\n                \"name\": \"handbag\"\n            },\n            \"x\": 339,\n            \"y\": 840,\n            \"w\": 73,\n            \"h\": 110,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 9.008999999999999,\n            \"score\": 0.2984749972820282\n        },\n        {\n            \"id\": \"8e9f8820-070e-48ee-b4d9-60c1f696651a\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 123,\n            \"y\": 414,\n            \"w\": 156,\n            \"h\": 333,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 9.008999999999999,\n            \"score\": 0.2601962089538574\n        },\n        {\n            \"id\": \"26a5ac82-6385-4e02-ae3f-7bc9c8f2cba9\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 574,\n            \"y\": 362,\n            \"w\": 63,\n            \"h\": 54,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 9.008999999999999,\n            \"score\": 0.2462484985589981\n        },\n        {\n            \"id\": \"9ea817f2-b3ea-4867-9dfb-0e88582a76bd\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 180,\n            \"y\": 567,\n            \"w\": 68,\n            \"h\": 93,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 12.011999999999999,\n            \"score\": 0.29180729389190674\n        },\n        {\n            \"id\": \"19c3eafe-78ba-469b-83fd-fe04a0fc83ca\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 3,\n            \"y\": 412,\n            \"w\": 231,\n            \"h\": 583,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 12.011999999999999,\n            \"score\": 0.7306689023971558\n        },\n        {\n            \"id\": \"eb946429-d1d9-4656-a88f-d21379bac3c8\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 318,\n            \"y\": 475,\n            \"w\": 203,\n            \"h\": 432,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 12.011999999999999,\n            \"score\": 0.7220949530601501\n        },\n        {\n            \"id\": \"a592252f-36ba-4282-8e9e-e354cd5831b6\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 510,\n            \"y\": 443,\n            \"w\": 206,\n            \"h\": 577,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 12.011999999999999,\n            \"score\": 0.68310546875\n        },\n        {\n            \"id\": \"6a22e238-dbde-45cc-ab7c-181e35276973\",\n            \"label\": {\n                \"id\": \"8e7b17a8-c2ba-4c75-b94d-11487ac28e2a\",\n                \"name\": \"chair\"\n            },\n            \"x\": 602,\n            \"y\": 799,\n            \"w\": 115,\n            \"h\": 240,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 12.011999999999999,\n            \"score\": 0.49952468276023865\n        },\n        {\n            \"id\": \"85095483-8dd0-4555-af6a-575c9cd8bb2a\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 513,\n            \"y\": 544,\n            \"w\": 117,\n            \"h\": 197,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 12.011999999999999,\n            \"score\": 0.4563838839530945\n        },\n        {\n            \"id\": \"071d09bd-6cd1-47fa-9afc-e1e2bd087faf\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 149,\n            \"y\": 560,\n            \"w\": 108,\n            \"h\": 315,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 12.011999999999999,\n            \"score\": 0.4562510550022125\n        },\n        {\n            \"id\": \"fa9d6b87-9b28-4f86-ab8e-dda8a5114401\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 278,\n            \"y\": 583,\n            \"w\": 73,\n            \"h\": 77,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 12.011999999999999,\n            \"score\": 0.40077099204063416\n        },\n        {\n            \"id\": \"677d4874-3a17-404e-873e-44b445790ad4\",\n            \"label\": {\n                \"id\": \"8e7b17a8-c2ba-4c75-b94d-11487ac28e2a\",\n                \"name\": \"chair\"\n            },\n            \"x\": 0,\n            \"y\": 782,\n            \"w\": 116,\n            \"h\": 243,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 12.011999999999999,\n            \"score\": 0.39015454053878784\n        },\n        {\n            \"id\": \"a1f471f5-f632-49ec-86a5-dae09aa6f6ac\",\n            \"label\": {\n                \"id\": \"5943bd84-62de-4b58-ad66-834bd4bf2694\",\n                \"name\": \"tie\"\n            },\n            \"x\": 50,\n            \"y\": 537,\n            \"w\": 38,\n            \"h\": 92,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 12.011999999999999,\n            \"score\": 0.35749387741088867\n        },\n        {\n            \"id\": \"d6340c96-e871-476c-b620-9c956a3251e3\",\n            \"label\": {\n                \"id\": \"5943bd84-62de-4b58-ad66-834bd4bf2694\",\n                \"name\": \"tie\"\n            },\n            \"x\": 410,\n            \"y\": 580,\n            \"w\": 36,\n            \"h\": 77,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 12.011999999999999,\n            \"score\": 0.22713953256607056\n        },\n        {\n            \"id\": \"3f71b129-2aee-441a-9076-0f8e568dc179\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 143,\n            \"y\": 564,\n            \"w\": 56,\n            \"h\": 78,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 12.011999999999999,\n            \"score\": 0.20772385597229004\n        },\n        {\n            \"id\": \"f7c6435f-2389-4718-8832-86d3492fe1c6\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 5,\n            \"y\": 247,\n            \"w\": 728,\n            \"h\": 1027,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 15.014999999999999,\n            \"score\": 0.9415017366409302\n        },\n        {\n            \"id\": \"1154bb3e-ace2-40e5-985e-3c4b4b09c3e0\",\n            \"label\": {\n                \"id\": \"5943bd84-62de-4b58-ad66-834bd4bf2694\",\n                \"name\": \"tie\"\n            },\n            \"x\": 336,\n            \"y\": 630,\n            \"w\": 171,\n            \"h\": 375,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 15.014999999999999,\n            \"score\": 0.8078679442405701\n        },\n        {\n            \"id\": \"6d40fa9b-b096-4eaf-9f39-cd6236d0bbb3\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 136,\n            \"y\": 436,\n            \"w\": 256,\n            \"h\": 238,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 16.975291666666667,\n            \"score\": 0.7761879563331604\n        },\n        {\n            \"id\": \"c013bd9d-baef-4389-b873-c95d0c642087\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 29,\n            \"y\": 520,\n            \"w\": 114,\n            \"h\": 155,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 16.975291666666667,\n            \"score\": 0.4835076332092285\n        },\n        {\n            \"id\": \"f72fbe61-3d41-427a-980a-ea7672a00bff\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 443,\n            \"y\": 358,\n            \"w\": 277,\n            \"h\": 259,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 16.975291666666667,\n            \"score\": 0.42631885409355164\n        },\n        {\n            \"id\": \"5be9e82b-d1c9-4198-938b-24c0e9cddc84\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 636,\n            \"y\": 356,\n            \"w\": 83,\n            \"h\": 150,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 16.975291666666667,\n            \"score\": 0.32213449478149414\n        },\n        {\n            \"id\": \"926137da-9cb9-4437-a94d-f86ce852c806\",\n            \"label\": {\n                \"id\": \"901a77cd-5301-46a2-b132-0467e93775ea\",\n                \"name\": \"tennis racket\"\n            },\n            \"x\": 109,\n            \"y\": 532,\n            \"w\": 92,\n            \"h\": 106,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 16.975291666666667,\n            \"score\": 0.2863384783267975\n        },\n        {\n            \"id\": \"ecf5b3ee-fc7b-425d-b0a4-af375c08be5f\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 653,\n            \"y\": 567,\n            \"w\": 64,\n            \"h\": 50,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 16.975291666666667,\n            \"score\": 0.2200796753168106\n        },\n        {\n            \"id\": \"6ddef788-4280-41f1-836c-ca9b726a65cd\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 134,\n            \"y\": 435,\n            \"w\": 258,\n            \"h\": 242,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 18.017999999999997,\n            \"score\": 0.7929431200027466\n        },\n        {\n            \"id\": \"e4107521-5ef2-4fa7-b923-7f4ace89e443\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 27,\n            \"y\": 520,\n            \"w\": 118,\n            \"h\": 158,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 18.017999999999997,\n            \"score\": 0.47694331407546997\n        },\n        {\n            \"id\": \"8eb76e9a-c189-49d1-bdaf-b3e23ba9e8c1\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 440,\n            \"y\": 357,\n            \"w\": 280,\n            \"h\": 264,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 18.017999999999997,\n            \"score\": 0.46072545647621155\n        },\n        {\n            \"id\": \"66fdcfae-3cd0-4269-aa7c-a08de43ffa18\",\n            \"label\": {\n                \"id\": \"901a77cd-5301-46a2-b132-0467e93775ea\",\n                \"name\": \"tennis racket\"\n            },\n            \"x\": 109,\n            \"y\": 533,\n            \"w\": 92,\n            \"h\": 104,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 18.017999999999997,\n            \"score\": 0.3151369094848633\n        },\n        {\n            \"id\": \"e5424977-fa74-4296-890a-ec049de65efa\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 636,\n            \"y\": 355,\n            \"w\": 82,\n            \"h\": 151,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 18.017999999999997,\n            \"score\": 0.3018919825553894\n        },\n        {\n            \"id\": \"56526a03-41ff-419e-ae54-b455baa6526f\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 503,\n            \"y\": 405,\n            \"w\": 79,\n            \"h\": 62,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 18.017999999999997,\n            \"score\": 0.20068992674350739\n        },\n        {\n            \"id\": \"68c2e690-aa58-42bb-831d-6d0a665ea22e\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 141,\n            \"y\": 436,\n            \"w\": 250,\n            \"h\": 237,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 21.020999999999997,\n            \"score\": 0.7661789059638977\n        },\n        {\n            \"id\": \"a14bb343-4374-41f0-9f4f-bbbc57375444\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 502,\n            \"y\": 405,\n            \"w\": 80,\n            \"h\": 63,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 21.020999999999997,\n            \"score\": 0.21295365691184998\n        },\n        {\n            \"id\": \"4a87a8d2-50a7-47be-a553-49a0573de4c7\",\n            \"label\": {\n                \"id\": \"901a77cd-5301-46a2-b132-0467e93775ea\",\n                \"name\": \"tennis racket\"\n            },\n            \"x\": 110,\n            \"y\": 532,\n            \"w\": 91,\n            \"h\": 106,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 21.020999999999997,\n            \"score\": 0.3164924681186676\n        },\n        {\n            \"id\": \"be997c2f-2f30-4bd6-abe7-21e980b4ca41\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 636,\n            \"y\": 349,\n            \"w\": 83,\n            \"h\": 157,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 21.020999999999997,\n            \"score\": 0.3904601037502289\n        },\n        {\n            \"id\": \"e19582e0-a3d2-4ae8-8ff5-0a3e2c5adde2\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 439,\n            \"y\": 353,\n            \"w\": 280,\n            \"h\": 268,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 21.020999999999997,\n            \"score\": 0.4087170958518982\n        },\n        {\n            \"id\": \"57822168-ad76-40e3-bc8e-1a6be8763201\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 30,\n            \"y\": 520,\n            \"w\": 115,\n            \"h\": 154,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 21.020999999999997,\n            \"score\": 0.49862536787986755\n        },\n        {\n            \"id\": \"3c14ccad-b16d-46ce-b203-dc161e68ee38\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 139,\n            \"y\": 541,\n            \"w\": 100,\n            \"h\": 101,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 24.023999999999997,\n            \"score\": 0.21162235736846924\n        },\n        {\n            \"id\": \"fbde8407-b928-4b66-bf7b-460fe641f119\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 180,\n            \"y\": 466,\n            \"w\": 199,\n            \"h\": 208,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 24.023999999999997,\n            \"score\": 0.7029366493225098\n        },\n        {\n            \"id\": \"c717dd25-d8d3-44a5-be7c-8ec06b481ae3\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 484,\n            \"y\": 394,\n            \"w\": 232,\n            \"h\": 216,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 24.023999999999997,\n            \"score\": 0.5619548559188843\n        },\n        {\n            \"id\": \"6546543e-68cf-421f-b446-748ddb70ca88\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 92,\n            \"y\": 544,\n            \"w\": 74,\n            \"h\": 120,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 24.023999999999997,\n            \"score\": 0.458383709192276\n        },\n        {\n            \"id\": \"c781f959-bf53-4cd3-a71f-787d39a9a95b\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 423,\n            \"y\": 441,\n            \"w\": 128,\n            \"h\": 169,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 24.023999999999997,\n            \"score\": 0.2221081405878067\n        },\n        {\n            \"id\": \"ba9dbc92-b745-4c80-aa1b-3c2037834e7d\",\n            \"label\": {\n                \"id\": \"901a77cd-5301-46a2-b132-0467e93775ea\",\n                \"name\": \"tennis racket\"\n            },\n            \"x\": 451,\n            \"y\": 446,\n            \"w\": 97,\n            \"h\": 112,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 24.023999999999997,\n            \"score\": 0.21896159648895264\n        },\n        {\n            \"id\": \"123e6f76-fbe7-4760-86e1-57aa21a85842\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 1,\n            \"y\": 598,\n            \"w\": 65,\n            \"h\": 68,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 24.023999999999997,\n            \"score\": 0.21015842258930206\n        },\n        {\n            \"id\": \"2f4fe7bc-3faa-4e94-9bd4-46fb60d67c82\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 1,\n            \"y\": 597,\n            \"w\": 64,\n            \"h\": 68,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 27.026999999999997,\n            \"score\": 0.2092275172472\n        },\n        {\n            \"id\": \"112915c6-7729-4ea5-a89a-040eaf50d3dd\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 93,\n            \"y\": 542,\n            \"w\": 81,\n            \"h\": 121,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 27.026999999999997,\n            \"score\": 0.42402350902557373\n        },\n        {\n            \"id\": \"e9f8cc7e-4330-4c11-8916-036d9e69c942\",\n            \"label\": {\n                \"id\": \"901a77cd-5301-46a2-b132-0467e93775ea\",\n                \"name\": \"tennis racket\"\n            },\n            \"x\": 452,\n            \"y\": 448,\n            \"w\": 95,\n            \"h\": 110,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 27.026999999999997,\n            \"score\": 0.23267847299575806\n        },\n        {\n            \"id\": \"53fe8621-8b05-448d-a89c-93ed456c1c7f\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 183,\n            \"y\": 463,\n            \"w\": 194,\n            \"h\": 209,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 27.026999999999997,\n            \"score\": 0.7177253365516663\n        },\n        {\n            \"id\": \"55726cf0-6825-4000-aae5-22a3c74744ec\",\n            \"label\": {\n                \"id\": \"901a77cd-5301-46a2-b132-0467e93775ea\",\n                \"name\": \"tennis racket\"\n            },\n            \"x\": 139,\n            \"y\": 541,\n            \"w\": 98,\n            \"h\": 99,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 27.026999999999997,\n            \"score\": 0.21773098409175873\n        },\n        {\n            \"id\": \"1a1c0e6a-1a23-4a25-b25e-edb32f6dac7d\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 466,\n            \"y\": 392,\n            \"w\": 256,\n            \"h\": 226,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 27.026999999999997,\n            \"score\": 0.629489004611969\n        },\n        {\n            \"id\": \"fe1e0f35-db83-4d7c-8e29-adf609279ae8\",\n            \"label\": {\n                \"id\": \"d74bc735-0b8c-4c6f-a955-8983367bd71f\",\n                \"name\": \"bottle\"\n            },\n            \"x\": 539,\n            \"y\": 770,\n            \"w\": 72,\n            \"h\": 132,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 27.27725,\n            \"score\": 0.30014288425445557\n        },\n        {\n            \"id\": \"07eedccf-3a75-41c4-96b5-b642c2c03963\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 0,\n            \"y\": 184,\n            \"w\": 732,\n            \"h\": 989,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 27.27725,\n            \"score\": 0.9102354645729065\n        },\n        {\n            \"id\": \"16a8d69e-e673-48a8-83ec-2ad8d222c4a4\",\n            \"label\": {\n                \"id\": \"5943bd84-62de-4b58-ad66-834bd4bf2694\",\n                \"name\": \"tie\"\n            },\n            \"x\": 315,\n            \"y\": 554,\n            \"w\": 100,\n            \"h\": 374,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 27.27725,\n            \"score\": 0.37215831875801086\n        },\n        {\n            \"id\": \"a92b1f90-648d-4862-990b-94dec69296de\",\n            \"label\": {\n                \"id\": \"a6b8a944-fd9c-4b6c-afb0-9f72e760dd4b\",\n                \"name\": \"clock\"\n            },\n            \"x\": 417,\n            \"y\": 896,\n            \"w\": 248,\n            \"h\": 261,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 27.27725,\n            \"score\": 0.372061163187027\n        },\n        {\n            \"id\": \"dbb285f0-5e2d-43aa-8c30-2266aa1e4aa4\",\n            \"label\": {\n                \"id\": \"d74bc735-0b8c-4c6f-a955-8983367bd71f\",\n                \"name\": \"bottle\"\n            },\n            \"x\": 404,\n            \"y\": 759,\n            \"w\": 96,\n            \"h\": 175,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 27.27725,\n            \"score\": 0.3028182089328766\n        },\n        {\n            \"id\": \"c18c6cbf-8b56-4565-8389-778135c47c50\",\n            \"label\": {\n                \"id\": \"8e7b17a8-c2ba-4c75-b94d-11487ac28e2a\",\n                \"name\": \"chair\"\n            },\n            \"x\": 11,\n            \"y\": 643,\n            \"w\": 252,\n            \"h\": 295,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 28.486791666666665,\n            \"score\": 0.32532158493995667\n        },\n        {\n            \"id\": \"7bf8b35c-b4f9-420d-a3bc-dabbc482f6da\",\n            \"label\": {\n                \"id\": \"5943bd84-62de-4b58-ad66-834bd4bf2694\",\n                \"name\": \"tie\"\n            },\n            \"x\": 88,\n            \"y\": 605,\n            \"w\": 52,\n            \"h\": 132,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 28.486791666666665,\n            \"score\": 0.2991061210632324\n        },\n        {\n            \"id\": \"ab6f86eb-6105-4637-a500-410a9bd8042a\",\n            \"label\": {\n                \"id\": \"8e7b17a8-c2ba-4c75-b94d-11487ac28e2a\",\n                \"name\": \"chair\"\n            },\n            \"x\": 0,\n            \"y\": 1197,\n            \"w\": 143,\n            \"h\": 80,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 28.486791666666665,\n            \"score\": 0.256206214427948\n        },\n        {\n            \"id\": \"1bffed25-55dd-430c-b160-a00d2f988d36\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 491,\n            \"y\": 507,\n            \"w\": 214,\n            \"h\": 394,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 28.486791666666665,\n            \"score\": 0.8107662796974182\n        },\n        {\n            \"id\": \"9c51a406-03f1-4f6c-b59c-8bdb163b36f6\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 7,\n            \"y\": 534,\n            \"w\": 256,\n            \"h\": 388,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 28.486791666666665,\n            \"score\": 0.7945369482040405\n        },\n        {\n            \"id\": \"0a3f3b77-abd8-44dd-b109-fb0bfb7f2084\",\n            \"label\": {\n                \"id\": \"2431ded2-3ed0-408a-8317-6c195ab8ffca\",\n                \"name\": \"potted plant\"\n            },\n            \"x\": 274,\n            \"y\": 618,\n            \"w\": 139,\n            \"h\": 100,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 28.486791666666665,\n            \"score\": 0.6236228346824646\n        },\n        {\n            \"id\": \"93d27e5b-ffbc-4b42-af7e-cf913192d0fc\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 0,\n            \"y\": 833,\n            \"w\": 267,\n            \"h\": 339,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 28.486791666666665,\n            \"score\": 0.5183006525039673\n        },\n        {\n            \"id\": \"3a74fce6-b935-486c-9f6a-edd6030b7b2e\",\n            \"label\": {\n                \"id\": \"8e7b17a8-c2ba-4c75-b94d-11487ac28e2a\",\n                \"name\": \"chair\"\n            },\n            \"x\": 468,\n            \"y\": 653,\n            \"w\": 231,\n            \"h\": 255,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 28.486791666666665,\n            \"score\": 0.441803514957428\n        },\n        {\n            \"id\": \"c9c8ddaa-d532-4839-8820-0ef2249996c4\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 0,\n            \"y\": 786,\n            \"w\": 273,\n            \"h\": 388,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 30.029999999999998,\n            \"score\": 0.5263789892196655\n        },\n        {\n            \"id\": \"ef37ae77-374e-4638-ab57-ac7d47e3b5ba\",\n            \"label\": {\n                \"id\": \"8e7b17a8-c2ba-4c75-b94d-11487ac28e2a\",\n                \"name\": \"chair\"\n            },\n            \"x\": 2,\n            \"y\": 686,\n            \"w\": 133,\n            \"h\": 191,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 30.029999999999998,\n            \"score\": 0.31762412190437317\n        },\n        {\n            \"id\": \"261cff68-37ca-4ccb-ad57-21478f4abf08\",\n            \"label\": {\n                \"id\": \"5943bd84-62de-4b58-ad66-834bd4bf2694\",\n                \"name\": \"tie\"\n            },\n            \"x\": 89,\n            \"y\": 601,\n            \"w\": 51,\n            \"h\": 134,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 30.029999999999998,\n            \"score\": 0.31211939454078674\n        },\n        {\n            \"id\": \"4538bba3-c987-4faf-b110-a1599f0abe11\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 3,\n            \"y\": 520,\n            \"w\": 238,\n            \"h\": 364,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 30.029999999999998,\n            \"score\": 0.7770041823387146\n        },\n        {\n            \"id\": \"8cc13e62-e13c-412a-b843-4cba8a7e3d20\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 481,\n            \"y\": 517,\n            \"w\": 219,\n            \"h\": 365,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 30.029999999999998,\n            \"score\": 0.7003850340843201\n        },\n        {\n            \"id\": \"9452ee23-025d-48a7-8622-c3841548896b\",\n            \"label\": {\n                \"id\": \"2431ded2-3ed0-408a-8317-6c195ab8ffca\",\n                \"name\": \"potted plant\"\n            },\n            \"x\": 274,\n            \"y\": 616,\n            \"w\": 137,\n            \"h\": 100,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 30.029999999999998,\n            \"score\": 0.6006930470466614\n        },\n        {\n            \"id\": \"90e4411e-5446-43b3-8516-3040ba535ce1\",\n            \"label\": {\n                \"id\": \"8e7b17a8-c2ba-4c75-b94d-11487ac28e2a\",\n                \"name\": \"chair\"\n            },\n            \"x\": 469,\n            \"y\": 620,\n            \"w\": 240,\n            \"h\": 276,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 30.029999999999998,\n            \"score\": 0.36348724365234375\n        },\n        {\n            \"id\": \"95cdd82f-5f53-4f71-ade9-9f85c8b4db81\",\n            \"label\": {\n                \"id\": \"8e7b17a8-c2ba-4c75-b94d-11487ac28e2a\",\n                \"name\": \"chair\"\n            },\n            \"x\": 499,\n            \"y\": 522,\n            \"w\": 221,\n            \"h\": 436,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 31.656625,\n            \"score\": 0.30522072315216064\n        },\n        {\n            \"id\": \"73db5eef-88be-4073-bc61-27a913997f8f\",\n            \"label\": {\n                \"id\": \"8e7b17a8-c2ba-4c75-b94d-11487ac28e2a\",\n                \"name\": \"chair\"\n            },\n            \"x\": 595,\n            \"y\": 763,\n            \"w\": 124,\n            \"h\": 149,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 31.656625,\n            \"score\": 0.23264501988887787\n        },\n        {\n            \"id\": \"9b7e92dd-9a16-4f6c-9e6f-9374e47bceab\",\n            \"label\": {\n                \"id\": \"a6b8a944-fd9c-4b6c-afb0-9f72e760dd4b\",\n                \"name\": \"clock\"\n            },\n            \"x\": 274,\n            \"y\": 713,\n            \"w\": 215,\n            \"h\": 102,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 31.656625,\n            \"score\": 0.20371825993061066\n        },\n        {\n            \"id\": \"0890f7ac-7fd4-4881-81e2-8d352b005926\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 472,\n            \"y\": 477,\n            \"w\": 242,\n            \"h\": 490,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 31.656625,\n            \"score\": 0.8688968420028687\n        },\n        {\n            \"id\": \"16728fa5-94e2-4738-9f28-69ea07a62870\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 6,\n            \"y\": 484,\n            \"w\": 272,\n            \"h\": 457,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 31.656625,\n            \"score\": 0.8571524620056152\n        },\n        {\n            \"id\": \"94d0b155-d8d4-4aad-9a94-7ff2531b7061\",\n            \"label\": {\n                \"id\": \"2431ded2-3ed0-408a-8317-6c195ab8ffca\",\n                \"name\": \"potted plant\"\n            },\n            \"x\": 328,\n            \"y\": 601,\n            \"w\": 136,\n            \"h\": 108,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 31.656625,\n            \"score\": 0.5853208899497986\n        },\n        {\n            \"id\": \"e52377e5-b710-4cd6-9ea2-2c0c4dfc68c6\",\n            \"label\": {\n                \"id\": \"8e7b17a8-c2ba-4c75-b94d-11487ac28e2a\",\n                \"name\": \"chair\"\n            },\n            \"x\": 5,\n            \"y\": 611,\n            \"w\": 268,\n            \"h\": 325,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 31.656625,\n            \"score\": 0.4250725507736206\n        },\n        {\n            \"id\": \"79243c27-afca-43bf-9001-849f4080fb07\",\n            \"label\": {\n                \"id\": \"5943bd84-62de-4b58-ad66-834bd4bf2694\",\n                \"name\": \"tie\"\n            },\n            \"x\": 96,\n            \"y\": 576,\n            \"w\": 41,\n            \"h\": 101,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 31.656625,\n            \"score\": 0.23807987570762634\n        },\n        {\n            \"id\": \"9574285b-d4b9-4b05-b0bd-a4aa3221b878\",\n            \"label\": {\n                \"id\": \"8e7b17a8-c2ba-4c75-b94d-11487ac28e2a\",\n                \"name\": \"chair\"\n            },\n            \"x\": 598,\n            \"y\": 767,\n            \"w\": 121,\n            \"h\": 147,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 33.032999999999994,\n            \"score\": 0.21370111405849457\n        },\n        {\n            \"id\": \"1f680cbb-02f2-49ec-9d8d-03eb850193f9\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 481,\n            \"y\": 484,\n            \"w\": 232,\n            \"h\": 482,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 33.032999999999994,\n            \"score\": 0.8650842905044556\n        },\n        {\n            \"id\": \"0804ab2e-348b-4c43-aebe-d758f7c80980\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 6,\n            \"y\": 487,\n            \"w\": 260,\n            \"h\": 456,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 33.032999999999994,\n            \"score\": 0.864793598651886\n        },\n        {\n            \"id\": \"1308e2d8-46f1-41eb-8c8f-26523b7351cb\",\n            \"label\": {\n                \"id\": \"2431ded2-3ed0-408a-8317-6c195ab8ffca\",\n                \"name\": \"potted plant\"\n            },\n            \"x\": 317,\n            \"y\": 607,\n            \"w\": 144,\n            \"h\": 104,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 33.032999999999994,\n            \"score\": 0.5537644028663635\n        },\n        {\n            \"id\": \"f0268f72-2878-45c0-b5be-a98a3712173d\",\n            \"label\": {\n                \"id\": \"8e7b17a8-c2ba-4c75-b94d-11487ac28e2a\",\n                \"name\": \"chair\"\n            },\n            \"x\": 5,\n            \"y\": 599,\n            \"w\": 255,\n            \"h\": 322,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 33.032999999999994,\n            \"score\": 0.4260425269603729\n        },\n        {\n            \"id\": \"84196ac4-ea1f-4487-8cd6-234bfddb2f41\",\n            \"label\": {\n                \"id\": \"a6b8a944-fd9c-4b6c-afb0-9f72e760dd4b\",\n                \"name\": \"clock\"\n            },\n            \"x\": 257,\n            \"y\": 714,\n            \"w\": 228,\n            \"h\": 134,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 33.032999999999994,\n            \"score\": 0.3598822057247162\n        },\n        {\n            \"id\": \"7ebe7901-21eb-424e-931d-a7d6e024f80e\",\n            \"label\": {\n                \"id\": \"5943bd84-62de-4b58-ad66-834bd4bf2694\",\n                \"name\": \"tie\"\n            },\n            \"x\": 93,\n            \"y\": 584,\n            \"w\": 37,\n            \"h\": 94,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 33.032999999999994,\n            \"score\": 0.2887086868286133\n        },\n        {\n            \"id\": \"1c925a29-3314-4521-a218-22947d1bcfa9\",\n            \"label\": {\n                \"id\": \"8e7b17a8-c2ba-4c75-b94d-11487ac28e2a\",\n                \"name\": \"chair\"\n            },\n            \"x\": 490,\n            \"y\": 550,\n            \"w\": 228,\n            \"h\": 390,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 33.032999999999994,\n            \"score\": 0.28321897983551025\n        },\n        {\n            \"id\": \"3a998379-f7ec-4660-a95a-c01898d36dfe\",\n            \"label\": {\n                \"id\": \"5943bd84-62de-4b58-ad66-834bd4bf2694\",\n                \"name\": \"tie\"\n            },\n            \"x\": 349,\n            \"y\": 601,\n            \"w\": 73,\n            \"h\": 272,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 36.035999999999994,\n            \"score\": 0.39738747477531433\n        },\n        {\n            \"id\": \"9d5957d1-c1cd-4c39-aa77-e134092e4025\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 0,\n            \"y\": 239,\n            \"w\": 709,\n            \"h\": 1036,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 36.035999999999994,\n            \"score\": 0.9267895817756653\n        },\n        {\n            \"id\": \"0d671581-e68a-4a84-9359-87d4e730a9ab\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 528,\n            \"y\": 982,\n            \"w\": 190,\n            \"h\": 286,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 39.038999999999994,\n            \"score\": 0.27523720264434814\n        },\n        {\n            \"id\": \"1f876b3b-fe06-4822-9171-7fdf70338403\",\n            \"label\": {\n                \"id\": \"5943bd84-62de-4b58-ad66-834bd4bf2694\",\n                \"name\": \"tie\"\n            },\n            \"x\": 176,\n            \"y\": 597,\n            \"w\": 74,\n            \"h\": 164,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 39.038999999999994,\n            \"score\": 0.722036600112915\n        },\n        {\n            \"id\": \"8dee6f41-e6f3-4ae0-90b7-c3f8e0038801\",\n            \"label\": {\n                \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n                \"name\": \"person\"\n            },\n            \"x\": 0,\n            \"y\": 235,\n            \"w\": 555,\n            \"h\": 530,\n            \"frame_height\": 1280,\n            \"frame_width\": 720,\n            \"time\": 39.038999999999994,\n            \"score\": 0.8524115085601807\n        }\n    ]\n}"}],"_postman_id":"c7d2e4ff-83f3-4f05-bc87-81efeddcbd5a"},{"name":"Get Object Details by Id","id":"97888860-1118-4c31-b864-d5271ff98fb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_uid/object_detections/:object_detection_id","description":"<p>Returns information for a specific object detection, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the detection</li>\n<li><code>label:id</code> : unique identifier of the object detected</li>\n<li><code>label:name</code> : name of the object detected</li>\n<li><code>time</code> : timestamp at which the detection occurs</li>\n<li><code>score</code> : the confidence score for the detection. Between 0 and 1</li>\n<li><code>x</code> , <code>y</code> , <code>w</code> , <code>h</code>: location of the object</li>\n<li><code>frame_height</code> : height of the asset in pixels</li>\n<li><code>frame_width</code> : width of the asset in pixels</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_uid","object_detections",":object_detection_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_uid"},{"description":{"content":"<p>Object Detection Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"object_detection_id"}]}},"response":[{"id":"a4e6d7cf-3965-4e94-b1cb-534e613ab90a","name":"Get Object Details by Id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_uid/object_detections/:object_detection_id","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_uid","object_detections",":object_detection_id"],"variable":[{"key":"asset_uid","value":"{{asset_id}}"},{"key":"object_detection_id","value":"f9519c91-4b0f-433a-972b-7ed7395b7d57"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 23:45:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"255"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"f9519c91-4b0f-433a-972b-7ed7395b7d57\",\n        \"label\": {\n            \"id\": \"8b6eeb81-64ab-4827-8694-8ebd7880ec63\",\n            \"name\": \"person\"\n        },\n        \"x\": 378,\n        \"y\": 780,\n        \"w\": 74,\n        \"h\": 321,\n        \"frame_height\": 1280,\n        \"frame_width\": 720,\n        \"time\": 0.0,\n        \"score\": 0.398426353931427\n    }\n}"}],"_postman_id":"97888860-1118-4c31-b864-d5271ff98fb5"},{"name":"Get OCR Details","id":"66c00463-ce0f-445b-a337-be284ceeb9c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_uid/ocr","description":"<p>Returns an array on screen text detections for the asset, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the detection</li>\n<li><code>text</code> : text content detected</li>\n<li><code>time</code> : timestamp at which the detection occurs</li>\n<li><code>score</code> : the confidence score for the detection. Between 0 and 1</li>\n<li><code>x</code> , <code>y</code> , <code>w</code> , <code>h</code>: location of the text detected</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_uid","ocr"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_uid"}]}},"response":[{"id":"f282691d-d21d-4a91-a9b7-e2e96020ca3d","name":"Get OCR Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_uid/ocr","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_uid","ocr"],"variable":[{"key":"asset_uid","value":"{{asset_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 23:53:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"308034"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"47ce4938-ebe4-4e02-8072-23bced0d97f9\",\n            \"text\": \"AUKUS\",\n            \"x\": 449,\n            \"y\": 737,\n            \"w\": 281,\n            \"h\": 87,\n            \"time\": 0.0,\n            \"score\": 0.9996005236525094\n        },\n        {\n            \"id\": \"3eb94aa3-4d5e-4bf3-8e2e-16f3300bdfcc\",\n            \"text\": \"AK\",\n            \"x\": 544,\n            \"y\": 602,\n            \"w\": 76,\n            \"h\": 52,\n            \"time\": 0.0,\n            \"score\": 0.44526058790471335\n        },\n        {\n            \"id\": \"e58c746f-6b8c-4cad-8c23-6b6bcf54823d\",\n            \"text\": \"Ak;:\",\n            \"x\": 474,\n            \"y\": 606,\n            \"w\": 64,\n            \"h\": 32,\n            \"time\": 0.0,\n            \"score\": 0.18152214586734772\n        },\n        {\n            \"id\": \"b811fdb7-1a4f-45cf-a4e1-d7a30dde0266\",\n            \"text\": \"SAN DIEGO, CA\",\n            \"x\": 512,\n            \"y\": 814,\n            \"w\": 146,\n            \"h\": 24,\n            \"time\": 0.0,\n            \"score\": 0.7028509363917065\n        },\n        {\n            \"id\": \"c88bfad5-106c-4e3f-9e0f-249327e0970f\",\n            \"text\": \"DIEGO,\",\n            \"x\": 265,\n            \"y\": 716,\n            \"w\": 77,\n            \"h\": 18,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.9672668146248441\n        },\n        {\n            \"id\": \"bee210ba-0813-4762-b1a2-ed50ff426b8d\",\n            \"text\": \"Australia\",\n            \"x\": 54,\n            \"y\": 308,\n            \"w\": 130,\n            \"h\": 32,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.9996998466856005\n        },\n        {\n            \"id\": \"22afcf6d-305b-4df7-8033-b81770fe9293\",\n            \"text\": \"AUKU\",\n            \"x\": 508,\n            \"y\": 770,\n            \"w\": 209,\n            \"h\": 68,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.997969925403595\n        },\n        {\n            \"id\": \"6edb8b3f-3283-4211-b2ad-a81cd7ecd760\",\n            \"text\": \"United Kingdom\",\n            \"x\": 431,\n            \"y\": 307,\n            \"w\": 238,\n            \"h\": 38,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.9999811387116205\n        },\n        {\n            \"id\": \"30ac625c-dd4f-466a-a61a-c08d3b4a322d\",\n            \"text\": \"Kin\",\n            \"x\": 693,\n            \"y\": 839,\n            \"w\": 30,\n            \"h\": 14,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.5287570284156884\n        },\n        {\n            \"id\": \"bc6a0b83-835b-4b76-8c85-1a5e82ae6517\",\n            \"text\": \"XKE\",\n            \"x\": 81,\n            \"y\": 821,\n            \"w\": 62,\n            \"h\": 36,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.06837319420970477\n        },\n        {\n            \"id\": \"255df806-6cee-4436-92ed-7612ff5d776e\",\n            \"text\": \"Ted Kingdom\",\n            \"x\": -1,\n            \"y\": 865,\n            \"w\": 62,\n            \"h\": 18,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.39598043156675455\n        },\n        {\n            \"id\": \"57a7aac2-451f-4ada-967e-d331e7d68316\",\n            \"text\": \"US\",\n            \"x\": -4,\n            \"y\": 818,\n            \"w\": 64,\n            \"h\": 50,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.9976507008155816\n        },\n        {\n            \"id\": \"80ee2dea-8ece-4810-bec4-ae7b5f8a7fee\",\n            \"text\": \"GdOM-\",\n            \"x\": 299,\n            \"y\": 849,\n            \"w\": 42,\n            \"h\": 16,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.26962497897782584\n        },\n        {\n            \"id\": \"4cfc6bcf-c1eb-4553-92f2-ed9e7f5abae0\",\n            \"text\": \"AUKUS\",\n            \"x\": 60,\n            \"y\": 148,\n            \"w\": 614,\n            \"h\": 144,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.998640167882961\n        },\n        {\n            \"id\": \"d0019463-8c10-43b7-b393-aa4a5eea6a08\",\n            \"text\": \"AUSTRALIA\",\n            \"x\": 503,\n            \"y\": 839,\n            \"w\": 102,\n            \"h\": 16,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.9988248868975635\n        },\n        {\n            \"id\": \"39772c64-d754-4f7f-bf7c-0f1ddba67229\",\n            \"text\": \"DieGo;\",\n            \"x\": 11,\n            \"y\": 753,\n            \"w\": 57,\n            \"h\": 17,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.205261436742111\n        },\n        {\n            \"id\": \"ea038300-55a0-4bee-949d-753ab5415062\",\n            \"text\": \"SAN DIE\",\n            \"x\": 596,\n            \"y\": 688,\n            \"w\": 126,\n            \"h\": 26,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.9785879927942065\n        },\n        {\n            \"id\": \"0883182f-4b10-49ed-a196-6a652acae10e\",\n            \"text\": \"AUKUS\",\n            \"x\": 160,\n            \"y\": 787,\n            \"w\": 177,\n            \"h\": 75,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.8870598288524191\n        },\n        {\n            \"id\": \"4427982d-ffe4-4d26-8b7b-b5ac88115102\",\n            \"text\": \"and Prime Minister Sunak\",\n            \"x\": 86,\n            \"y\": 904,\n            \"w\": 548,\n            \"h\": 50,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.7537674545015806\n        },\n        {\n            \"id\": \"e0d93953-2d57-4d55-a6d5-7a0dfb20c0bc\",\n            \"text\": \"United States\",\n            \"x\": 207,\n            \"y\": 305,\n            \"w\": 202,\n            \"h\": 36,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.6172038691800538\n        },\n        {\n            \"id\": \"e8ff91df-4ed1-48d7-ac62-0e6e44bb3e34\",\n            \"text\": \"CA\",\n            \"x\": 66,\n            \"y\": 746,\n            \"w\": 28,\n            \"h\": 24,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.9938903946466988\n        },\n        {\n            \"id\": \"51484ad7-d6ec-4c9d-8c42-f2b0246f18ea\",\n            \"text\": \"~usPrime\\\"Minister Albanese\",\n            \"x\": 60,\n            \"y\": 846,\n            \"w\": 556,\n            \"h\": 52,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.37504315278105166\n        },\n        {\n            \"id\": \"f54eb2b8-6c67-45f9-b3ba-386fb259f1a4\",\n            \"text\": \"UNITED\",\n            \"x\": 619,\n            \"y\": 835,\n            \"w\": 70,\n            \"h\": 20,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.9788064111076019\n        },\n        {\n            \"id\": \"d2609343-b463-4552-85ee-d2068c18731f\",\n            \"text\": \"CA\",\n            \"x\": 342,\n            \"y\": 706,\n            \"w\": 34,\n            \"h\": 26,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.9996463219688247\n        },\n        {\n            \"id\": \"076a4473-dd9a-41c1-9140-97a709af86b8\",\n            \"text\": \"SAN\",\n            \"x\": 222,\n            \"y\": 720,\n            \"w\": 49,\n            \"h\": 29,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.9991892794705368\n        },\n        {\n            \"id\": \"e6f0baab-3dd1-4177-b461-a61e7678b283\",\n            \"text\": \"UNITEd STATES\",\n            \"x\": 347,\n            \"y\": 841,\n            \"w\": 102,\n            \"h\": 20,\n            \"time\": 3.0029999999999997,\n            \"score\": 0.6461368030985174\n        },\n        {\n            \"id\": \"1d7ccd39-60b0-4f44-ab08-5291ed475874\",\n            \"text\": \"Australia and the\",\n            \"x\": 186,\n            \"y\": 848,\n            \"w\": 352,\n            \"h\": 50,\n            \"time\": 5.005,\n            \"score\": 0.744496285091852\n        },\n        {\n            \"id\": \"da909f68-83a0-4c90-97c4-dbb22ad3d1d5\",\n            \"text\": \"United Kingdom\",\n            \"x\": 187,\n            \"y\": 901,\n            \"w\": 348,\n            \"h\": 66,\n            \"time\": 5.005,\n            \"score\": 0.8029638180615596\n        },\n        {\n            \"id\": \"156aee9c-2474-4e87-b423-07475b74fb1d\",\n            \"text\": \"ED StaTES\",\n            \"x\": -2,\n            \"y\": 278,\n            \"w\": 196,\n            \"h\": 30,\n            \"time\": 5.005,\n            \"score\": 0.20447833434343038\n        },\n        {\n            \"id\": \"d8c0a80e-f4fa-4255-97a8-57b5198887ff\",\n            \"text\": \"AK\",\n            \"x\": -6,\n            \"y\": 176,\n            \"w\": 198,\n            \"h\": 80,\n            \"time\": 5.005,\n            \"score\": 0.3661467504512367\n        },\n        {\n            \"id\": \"628f63e3-4732-4d77-803e-776511a041e2\",\n            \"text\": \"D KI'\",\n            \"x\": 2,\n            \"y\": 270,\n            \"w\": 86,\n            \"h\": 30,\n            \"time\": 6.005999999999999,\n            \"score\": 0.5279425524347484\n        },\n        {\n            \"id\": \"b6e0b1e9-ab7f-4fc2-97eb-28c8fecd48f5\",\n            \"text\": \"United Kingdom\",\n            \"x\": 187,\n            \"y\": 901,\n            \"w\": 346,\n            \"h\": 63,\n            \"time\": 6.005999999999999,\n            \"score\": 0.9999554588243362\n        },\n        {\n            \"id\": \"60f3e88a-5752-4aff-8196-1de85959b3a0\",\n            \"text\": \"Australia and the\",\n            \"x\": 186,\n            \"y\": 848,\n            \"w\": 352,\n            \"h\": 50,\n            \"time\": 6.005999999999999,\n            \"score\": 0.6705698953447832\n        },\n        {\n            \"id\": \"99580d9f-480d-44a6-93ba-9251eb631716\",\n            \"text\": \"UNITED STe\",\n            \"x\": 238,\n            \"y\": 266,\n            \"w\": 190,\n            \"h\": 30,\n            \"time\": 6.005999999999999,\n            \"score\": 0.5616913839414143\n        },\n        {\n            \"id\": \"15d2940a-f970-4f78-8cc5-ac8cf1e307ca\",\n            \"text\": \"US\",\n            \"x\": -10,\n            \"y\": 140,\n            \"w\": 188,\n            \"h\": 120,\n            \"time\": 6.005999999999999,\n            \"score\": 0.9832839688043403\n        },\n        {\n            \"id\": \"87e19336-97eb-41be-8239-b4b08e42a4dc\",\n            \"text\": \"AK\",\n            \"x\": 292,\n            \"y\": 162,\n            \"w\": 120,\n            \"h\": 80,\n            \"time\": 6.005999999999999,\n            \"score\": 0.648545203087302\n        },\n        {\n            \"id\": \"fa3dde64-a786-493e-b2c7-e6f1a73feeca\",\n            \"text\": \"UNITED KINGD\",\n            \"x\": 162,\n            \"y\": 321,\n            \"w\": 257,\n            \"h\": 38,\n            \"time\": 9.008999999999999,\n            \"score\": 0.9841884432479056\n        },\n        {\n            \"id\": \"fd89c51c-4f57-4853-a55e-eb2e97e5905a\",\n            \"text\": \"KUS\",\n            \"x\": 144,\n            \"y\": 191,\n            \"w\": 295,\n            \"h\": 128,\n            \"time\": 9.008999999999999,\n            \"score\": 0.9976631204636951\n        },\n        {\n            \"id\": \"8522f91c-6072-4510-87ae-aeb931192e5f\",\n            \"text\": \"AK\",\n            \"x\": 588,\n            \"y\": 220,\n            \"w\": 90,\n            \"h\": 72,\n            \"time\": 9.008999999999999,\n            \"score\": 0.6906733929654336\n        },\n        {\n            \"id\": \"4d0dd0f0-b574-4175-a4e9-06de4a33d54f\",\n            \"text\": \"capable allies\",\n            \"x\": 209,\n            \"y\": 894,\n            \"w\": 297,\n            \"h\": 76,\n            \"time\": 9.008999999999999,\n            \"score\": 0.6825135488061396\n        },\n        {\n            \"id\": \"e2aea2bc-171a-4bc0-b496-cc87b50abf73\",\n            \"text\": \"ED STA\",\n            \"x\": 586,\n            \"y\": 316,\n            \"w\": 132,\n            \"h\": 32,\n            \"time\": 9.008999999999999,\n            \"score\": 0.8998889922495676\n        },\n        {\n            \"id\": \"76e1cefc-51c2-4bef-a0d7-d8598438d067\",\n            \"text\": \"AUSTRALIA\",\n            \"x\": 119,\n            \"y\": 400,\n            \"w\": 161,\n            \"h\": 31,\n            \"time\": 12.011999999999999,\n            \"score\": 0.9998226087099984\n        },\n        {\n            \"id\": \"fe9eab89-194c-4004-a163-4051de40b60b\",\n            \"text\": \"AUKUS\",\n            \"x\": 127,\n            \"y\": 296,\n            \"w\": 411,\n            \"h\": 101,\n            \"time\": 12.011999999999999,\n            \"score\": 0.8853516193962628\n        },\n        {\n            \"id\": \"62883b9a-c479-4b21-9477-a0ff8880dfd4\",\n            \"text\": \"UNITED\",\n            \"x\": 586,\n            \"y\": 398,\n            \"w\": 114,\n            \"h\": 26,\n            \"time\": 12.011999999999999,\n            \"score\": 0.999928896961433\n        },\n        {\n            \"id\": \"369132f8-b2f4-427a-b9f7-dc555bdd71a5\",\n            \"text\": \"and prosperous future\",\n            \"x\": 129,\n            \"y\": 903,\n            \"w\": 460,\n            \"h\": 60,\n            \"time\": 12.011999999999999,\n            \"score\": 0.9598098121394683\n        },\n        {\n            \"id\": \"d0c3dab2-beaa-4148-be4d-be72a035c096\",\n            \"text\": \"peaceful\",\n            \"x\": 372,\n            \"y\": 843,\n            \"w\": 190,\n            \"h\": 65,\n            \"time\": 12.011999999999999,\n            \"score\": 0.9999977662159955\n        },\n        {\n            \"id\": \"d3ae6be1-c6b2-49f8-9d75-1597008109b9\",\n            \"text\": \"UNITED KINGDOM\",\n            \"x\": 303,\n            \"y\": 396,\n            \"w\": 257,\n            \"h\": 33,\n            \"time\": 12.011999999999999,\n            \"score\": 0.7620578109057577\n        },\n        {\n            \"id\": \"572df3a2-bfa7-4dbe-98e4-f43992c14377\",\n            \"text\": \"for a more\",\n            \"x\": 158,\n            \"y\": 850,\n            \"w\": 222,\n            \"h\": 48,\n            \"time\": 12.011999999999999,\n            \"score\": 0.9978795023603806\n        },\n        {\n            \"id\": \"495509f0-f946-4304-8199-95049716ecce\",\n            \"text\": \"unite us allacioss\",\n            \"x\": 176,\n            \"y\": 850,\n            \"w\": 368,\n            \"h\": 48,\n            \"time\": 15.014999999999999,\n            \"score\": 0.773965801511928\n        },\n        {\n            \"id\": \"23530f58-5b68-4544-bedf-ddf0d5679880\",\n            \"text\": \"the'Atlantic and Pacific\",\n            \"x\": 116,\n            \"y\": 902,\n            \"w\": 478,\n            \"h\": 54,\n            \"time\": 15.014999999999999,\n            \"score\": 0.5362021582414283\n        },\n        {\n            \"id\": \"c746b491-22e2-4012-af8f-b762bd16b9da\",\n            \"text\": \"AUKU\",\n            \"x\": 506,\n            \"y\": 724,\n            \"w\": 223,\n            \"h\": 80,\n            \"time\": 16.975291666666667,\n            \"score\": 0.9974799391575709\n        },\n        {\n            \"id\": \"0284e1bb-822e-4f78-b0d2-c8c1a540745b\",\n            \"text\": \"together to\",\n            \"x\": 333,\n            \"y\": 899,\n            \"w\": 238,\n            \"h\": 65,\n            \"time\": 16.975291666666667,\n            \"score\": 0.8138122021485327\n        },\n        {\n            \"id\": \"caf55508-16d5-4154-aedb-a98f1cb2f599\",\n            \"text\": \"United\",\n            \"x\": 77,\n            \"y\": 851,\n            \"w\": 38,\n            \"h\": 10,\n            \"time\": 16.975291666666667,\n            \"score\": 0.47947679505996077\n        },\n        {\n            \"id\": \"550fcb7c-61a8-4ef7-a3d7-9fe7bc57afe9\",\n            \"text\": \"Ak\",\n            \"x\": 369,\n            \"y\": 763,\n            \"w\": 46,\n            \"h\": 42,\n            \"time\": 16.975291666666667,\n            \"score\": 0.1991521923869888\n        },\n        {\n            \"id\": \"b68d91d3-7754-4848-b0a6-eb968605d827\",\n            \"text\": \"For more than a century;\",\n            \"x\": 109,\n            \"y\": 847,\n            \"w\": 503,\n            \"h\": 61,\n            \"time\": 16.975291666666667,\n            \"score\": 0.9368056169238222\n        },\n        {\n            \"id\": \"1bfb7257-5ca8-447e-943a-3d1f3ed0a89f\",\n            \"text\": \"Australia 5\",\n            \"x\": 172,\n            \"y\": 838,\n            \"w\": 64,\n            \"h\": 10,\n            \"time\": 16.975291666666667,\n            \"score\": 0.11775085680305808\n        },\n        {\n            \"id\": \"5b9b49e2-7f8b-429d-97da-9de40ad38c27\",\n            \"text\": \"CA\",\n            \"x\": 346,\n            \"y\": 670,\n            \"w\": 32,\n            \"h\": 28,\n            \"time\": 16.975291666666667,\n            \"score\": 0.9972872433939831\n        },\n        {\n            \"id\": \"fe8c0f0d-6b39-4392-9087-61b6a46da8a5\",\n            \"text\": \"AUKUS\",\n            \"x\": 171,\n            \"y\": 779,\n            \"w\": 165,\n            \"h\": 43,\n            \"time\": 16.975291666666667,\n            \"score\": 0.9999421029538809\n        },\n        {\n            \"id\": \"a67d7318-640d-43f0-aafc-42ef392c5d18\",\n            \"text\": \"SAN DI\",\n            \"x\": 602,\n            \"y\": 638,\n            \"w\": 114,\n            \"h\": 32,\n            \"time\": 16.975291666666667,\n            \"score\": 0.9832468323777956\n        },\n        {\n            \"id\": \"edb40918-0d76-4504-a2d1-19dc91bf34fc\",\n            \"text\": \"United Kingdom-\",\n            \"x\": 240,\n            \"y\": 819,\n            \"w\": 105,\n            \"h\": 29,\n            \"time\": 16.975291666666667,\n            \"score\": 0.5346109319613112\n        },\n        {\n            \"id\": \"90a57b55-16ac-498c-89fe-325fc24a7aaf\",\n            \"text\": \"KUS\",\n            \"x\": -6,\n            \"y\": 809,\n            \"w\": 78,\n            \"h\": 42,\n            \"time\": 16.975291666666667,\n            \"score\": 0.9996024055884967\n        },\n        {\n            \"id\": \"0dafa1db-1251-451b-ad8b-827f56fb45c3\",\n            \"text\": \"CA\",\n            \"x\": 78,\n            \"y\": 724,\n            \"w\": 28,\n            \"h\": 24,\n            \"time\": 16.975291666666667,\n            \"score\": 0.7791117061371813\n        },\n        {\n            \"id\": \"bf8ba056-fe7f-4a8c-9492-968c837a3782\",\n            \"text\": \"United KinGDoM\",\n            \"x\": 0,\n            \"y\": 851,\n            \"w\": 77,\n            \"h\": 25,\n            \"time\": 16.975291666666667,\n            \"score\": 0.119045557476071\n        },\n        {\n            \"id\": \"83b5b724-8873-4117-82ab-e7f1405e3315\",\n            \"text\": \"United\",\n            \"x\": 348,\n            \"y\": 817,\n            \"w\": 50,\n            \"h\": 13,\n            \"time\": 16.975291666666667,\n            \"score\": 0.8382376913196267\n        },\n        {\n            \"id\": \"8d2b3820-64d9-465b-a61a-c4a38f45be6f\",\n            \"text\": \"SAN \",\n            \"x\": -2,\n            \"y\": 740,\n            \"w\": 34,\n            \"h\": 24,\n            \"time\": 16.975291666666667,\n            \"score\": 0.7229162454605103\n        },\n        {\n            \"id\": \"884f58f2-d4d6-43ea-bd78-2a1bea6c7d1b\",\n            \"text\": \"we stood\",\n            \"x\": 152,\n            \"y\": 906,\n            \"w\": 186,\n            \"h\": 48,\n            \"time\": 16.975291666666667,\n            \"score\": 0.7388939137696798\n        },\n        {\n            \"id\": \"da492dc5-2261-4b72-98fc-1c3c8d369528\",\n            \"text\": \"SiatEs\",\n            \"x\": 112,\n            \"y\": 846,\n            \"w\": 38,\n            \"h\": 13,\n            \"time\": 16.975291666666667,\n            \"score\": 0.08574602462380983\n        },\n        {\n            \"id\": \"5de7443f-b4dd-4759-8fe8-e698c7f3738a\",\n            \"text\": \"AUSTRALIA\",\n            \"x\": 503,\n            \"y\": 797,\n            \"w\": 111,\n            \"h\": 25,\n            \"time\": 16.975291666666667,\n            \"score\": 0.9992807604871237\n        },\n        {\n            \"id\": \"30b1214d-91ca-4125-a265-ebbde1c8a340\",\n            \"text\": \"Diego;\",\n            \"x\": 23,\n            \"y\": 736,\n            \"w\": 56,\n            \"h\": 13,\n            \"time\": 16.975291666666667,\n            \"score\": 0.459473855189835\n        },\n        {\n            \"id\": \"75ed6ae2-21c4-4216-905d-a0eb58670805\",\n            \"text\": \"STATES\",\n            \"x\": 396,\n            \"y\": 806,\n            \"w\": 57,\n            \"h\": 25,\n            \"time\": 16.975291666666667,\n            \"score\": 0.9985653578054946\n        },\n        {\n            \"id\": \"e6c929b0-aac6-4637-a3db-06031dd7526a\",\n            \"text\": \"SAN\",\n            \"x\": 229,\n            \"y\": 693,\n            \"w\": 45,\n            \"h\": 21,\n            \"time\": 16.975291666666667,\n            \"score\": 0.9994174835730498\n        },\n        {\n            \"id\": \"d8932804-7f85-4b0e-a4c5-9fa2739a4d82\",\n            \"text\": \"UNITED K\",\n            \"x\": 625,\n            \"y\": 794,\n            \"w\": 99,\n            \"h\": 26,\n            \"time\": 16.975291666666667,\n            \"score\": 0.9948850293193265\n        },\n        {\n            \"id\": \"fff15277-860e-4696-8d43-49a99585f656\",\n            \"text\": \"DIEGO,\",\n            \"x\": 269,\n            \"y\": 685,\n            \"w\": 75,\n            \"h\": 15,\n            \"time\": 16.975291666666667,\n            \"score\": 0.770784751384266\n        },\n        {\n            \"id\": \"a7018c44-4040-49f6-9fc9-f130c047c5d4\",\n            \"text\": \"SaN\",\n            \"x\": -2,\n            \"y\": 740,\n            \"w\": 32,\n            \"h\": 24,\n            \"time\": 18.017999999999997,\n            \"score\": 0.49504373451031697\n        },\n        {\n            \"id\": \"3183f0a5-55bf-47e9-bccf-f8554493885b\",\n            \"text\": \"together to\",\n            \"x\": 333,\n            \"y\": 899,\n            \"w\": 238,\n            \"h\": 65,\n            \"time\": 18.017999999999997,\n            \"score\": 0.7372676523568653\n        },\n        {\n            \"id\": \"11bdf673-cfad-40dc-a011-172baa7ba328\",\n            \"text\": \"AustraLiA\",\n            \"x\": 172,\n            \"y\": 838,\n            \"w\": 64,\n            \"h\": 9,\n            \"time\": 18.017999999999997,\n            \"score\": 0.34330591816925315\n        },\n        {\n            \"id\": \"0136ade4-9be9-4f1f-b1d3-a3178eb883da\",\n            \"text\": \"SAN DI\",\n            \"x\": 602,\n            \"y\": 638,\n            \"w\": 114,\n            \"h\": 32,\n            \"time\": 18.017999999999997,\n            \"score\": 0.9877048122997939\n        },\n        {\n            \"id\": \"60a9b733-a51c-43f5-913c-b69687b9d544\",\n            \"text\": \"For more than a century;\",\n            \"x\": 109,\n            \"y\": 847,\n            \"w\": 503,\n            \"h\": 61,\n            \"time\": 18.017999999999997,\n            \"score\": 0.934584909469596\n        },\n        {\n            \"id\": \"9eb607b1-a045-4792-a216-492744d2fbdf\",\n            \"text\": \"United\",\n            \"x\": 348,\n            \"y\": 817,\n            \"w\": 50,\n            \"h\": 13,\n            \"time\": 18.017999999999997,\n            \"score\": 0.8165890742463147\n        },\n        {\n            \"id\": \"372fef8b-93bc-4bd7-9fd8-ea6bbc219d52\",\n            \"text\": \"AUKU\",\n            \"x\": 506,\n            \"y\": 724,\n            \"w\": 223,\n            \"h\": 80,\n            \"time\": 18.017999999999997,\n            \"score\": 0.9972817301750183\n        },\n        {\n            \"id\": \"f97fb3a8-0f04-49c3-bc2f-330e87c65caf\",\n            \"text\": \"DIEGO,\",\n            \"x\": 270,\n            \"y\": 685,\n            \"w\": 75,\n            \"h\": 15,\n            \"time\": 18.017999999999997,\n            \"score\": 0.5740111750165589\n        },\n        {\n            \"id\": \"5f3720ba-5bf7-4911-8adf-781711c0cd08\",\n            \"text\": \"STATES\",\n            \"x\": 396,\n            \"y\": 806,\n            \"w\": 56,\n            \"h\": 25,\n            \"time\": 18.017999999999997,\n            \"score\": 0.9990721157556504\n        },\n        {\n            \"id\": \"4cd88210-e619-4763-93ed-ebfc42035a82\",\n            \"text\": \"XK\",\n            \"x\": 365,\n            \"y\": 762,\n            \"w\": 84,\n            \"h\": 36,\n            \"time\": 18.017999999999997,\n            \"score\": 0.0920649279744895\n        },\n        {\n            \"id\": \"11c2447d-e38d-4b7a-98cc-162382c0204c\",\n            \"text\": \"CA\",\n            \"x\": 78,\n            \"y\": 724,\n            \"w\": 26,\n            \"h\": 24,\n            \"time\": 18.017999999999997,\n            \"score\": 0.8162127997478944\n        },\n        {\n            \"id\": \"dcf00614-160f-47a4-b70a-13aca41c95ae\",\n            \"text\": \"we stood\",\n            \"x\": 152,\n            \"y\": 904,\n            \"w\": 186,\n            \"h\": 50,\n            \"time\": 18.017999999999997,\n            \"score\": 0.8080010187604961\n        },\n        {\n            \"id\": \"01944791-ebd2-421f-af09-6b6cab6613c7\",\n            \"text\": \"United\",\n            \"x\": 241,\n            \"y\": 832,\n            \"w\": 42,\n            \"h\": 10,\n            \"time\": 18.017999999999997,\n            \"score\": 0.8027213230354246\n        },\n        {\n            \"id\": \"10c83e21-abc0-4d07-a7e8-47dfc2678c8a\",\n            \"text\": \"UNITED K\",\n            \"x\": 627,\n            \"y\": 797,\n            \"w\": 96,\n            \"h\": 20,\n            \"time\": 18.017999999999997,\n            \"score\": 0.9799188534118454\n        },\n        {\n            \"id\": \"991d912f-8d96-40d4-9d18-890f3583eed0\",\n            \"text\": \"Diego;\",\n            \"x\": 24,\n            \"y\": 736,\n            \"w\": 55,\n            \"h\": 13,\n            \"time\": 18.017999999999997,\n            \"score\": 0.3558954353584668\n        },\n        {\n            \"id\": \"da4bf657-7a67-4fc8-87e9-cb8bc09b0150\",\n            \"text\": \"CA\",\n            \"x\": 346,\n            \"y\": 670,\n            \"w\": 34,\n            \"h\": 30,\n            \"time\": 18.017999999999997,\n            \"score\": 0.9942734330567656\n        },\n        {\n            \"id\": \"269de6a7-c0ba-4d04-a753-f3c2b4fc5f3e\",\n            \"text\": \"UNiteD KinGDoM\",\n            \"x\": 0,\n            \"y\": 851,\n            \"w\": 78,\n            \"h\": 25,\n            \"time\": 18.017999999999997,\n            \"score\": 0.08570316672923828\n        },\n        {\n            \"id\": \"3777be7b-ddb8-494a-8516-e4fc63b29c9b\",\n            \"text\": \"AUKUS\",\n            \"x\": 171,\n            \"y\": 778,\n            \"w\": 165,\n            \"h\": 44,\n            \"time\": 18.017999999999997,\n            \"score\": 0.6775003020745927\n        },\n        {\n            \"id\": \"e812fde1-c972-45db-bfaf-9d2e2aed90e1\",\n            \"text\": \"AUSTRALIA\",\n            \"x\": 503,\n            \"y\": 797,\n            \"w\": 111,\n            \"h\": 25,\n            \"time\": 18.017999999999997,\n            \"score\": 0.9991017151898424\n        },\n        {\n            \"id\": \"5bd4126d-4522-4557-a74c-9aa38fbae992\",\n            \"text\": \"SAN\",\n            \"x\": 227,\n            \"y\": 694,\n            \"w\": 47,\n            \"h\": 19,\n            \"time\": 18.017999999999997,\n            \"score\": 0.9944350582383837\n        },\n        {\n            \"id\": \"84733580-6dd3-4e9a-8283-2cab5b2da8fb\",\n            \"text\": \"Uhited\",\n            \"x\": 77,\n            \"y\": 851,\n            \"w\": 38,\n            \"h\": 10,\n            \"time\": 18.017999999999997,\n            \"score\": 0.19414645749975087\n        },\n        {\n            \"id\": \"5d1f9b03-69f8-4614-ae38-eaecad1cba36\",\n            \"text\": \"KINgDom=\",\n            \"x\": 282,\n            \"y\": 819,\n            \"w\": 63,\n            \"h\": 25,\n            \"time\": 18.017999999999997,\n            \"score\": 0.3547103995534587\n        },\n        {\n            \"id\": \"0be3fef4-8d66-4197-a809-9ed6fc7e76a5\",\n            \"text\": \"KUS\",\n            \"x\": -6,\n            \"y\": 809,\n            \"w\": 78,\n            \"h\": 42,\n            \"time\": 18.017999999999997,\n            \"score\": 0.9995725369659842\n        },\n        {\n            \"id\": \"c9f93cbb-9e2c-4a2c-8bcf-5b91d72d3e80\",\n            \"text\": \"SiAtEs\",\n            \"x\": 112,\n            \"y\": 846,\n            \"w\": 38,\n            \"h\": 13,\n            \"time\": 18.017999999999997,\n            \"score\": 0.060746907364985274\n        },\n        {\n            \"id\": \"3ebe3073-d54a-422c-a193-847e99165936\",\n            \"text\": \"AUKU\",\n            \"x\": 506,\n            \"y\": 724,\n            \"w\": 223,\n            \"h\": 80,\n            \"time\": 21.020999999999997,\n            \"score\": 0.9974073171615601\n        },\n        {\n            \"id\": \"3a01e6ed-417b-4774-a510-dfcbccd9dd96\",\n            \"text\": \"CA\",\n            \"x\": 78,\n            \"y\": 724,\n            \"w\": 26,\n            \"h\": 24,\n            \"time\": 21.020999999999997,\n            \"score\": 0.4159859720236884\n        },\n        {\n            \"id\": \"fd33b497-89ad-451b-8ac3-4b8c5fbf4ee4\",\n            \"text\": \"SAN \",\n            \"x\": -2,\n            \"y\": 740,\n            \"w\": 34,\n            \"h\": 24,\n            \"time\": 21.020999999999997,\n            \"score\": 0.795066237449646\n        },\n        {\n            \"id\": \"f727c271-25c0-46e3-845f-662c11847f10\",\n            \"text\": \"DIEGO;\",\n            \"x\": 270,\n            \"y\": 685,\n            \"w\": 75,\n            \"h\": 15,\n            \"time\": 21.020999999999997,\n            \"score\": 0.7386886343318693\n        },\n        {\n            \"id\": \"35326673-16ad-4894-ab56-5e8e8e9bfda4\",\n            \"text\": \"AUSTRALIA\",\n            \"x\": 503,\n            \"y\": 797,\n            \"w\": 111,\n            \"h\": 25,\n            \"time\": 21.020999999999997,\n            \"score\": 0.9976003856876048\n        },\n        {\n            \"id\": \"f5e2f13d-1757-45f7-a292-2b81a4727ae3\",\n            \"text\": \"SAN\",\n            \"x\": 228,\n            \"y\": 693,\n            \"w\": 46,\n            \"h\": 19,\n            \"time\": 21.020999999999997,\n            \"score\": 0.9988612999176685\n        },\n        {\n            \"id\": \"075c4d57-e648-4c1c-ba41-efe87b2528ba\",\n            \"text\": \"United\",\n            \"x\": 77,\n            \"y\": 851,\n            \"w\": 38,\n            \"h\": 10,\n            \"time\": 21.020999999999997,\n            \"score\": 0.3727552670108149\n        },\n        {\n            \"id\": \"fb6059c3-7122-4a3a-be50-40fe6454797d\",\n            \"text\": \"DiEgo;\",\n            \"x\": 24,\n            \"y\": 736,\n            \"w\": 55,\n            \"h\": 13,\n            \"time\": 21.020999999999997,\n            \"score\": 0.22220968651222087\n        },\n        {\n            \"id\": \"9c29f152-9288-4bcb-bc86-f8dcc171a0a4\",\n            \"text\": \"United Kingdom-\",\n            \"x\": 240,\n            \"y\": 819,\n            \"w\": 105,\n            \"h\": 29,\n            \"time\": 21.020999999999997,\n            \"score\": 0.6345140385880104\n        },\n        {\n            \"id\": \"263055de-6648-4d5b-b1ce-403b539e0ba2\",\n            \"text\": \"'UnitEd\",\n            \"x\": 346,\n            \"y\": 815,\n            \"w\": 52,\n            \"h\": 16,\n            \"time\": 21.020999999999997,\n            \"score\": 0.11534168454214283\n        },\n        {\n            \"id\": \"58565246-d220-43bd-92f0-bb74dc449f2c\",\n            \"text\": \"SAN DI\",\n            \"x\": 602,\n            \"y\": 638,\n            \"w\": 114,\n            \"h\": 32,\n            \"time\": 21.020999999999997,\n            \"score\": 0.6740567440545293\n        },\n        {\n            \"id\": \"31c08c1b-564e-4525-92b7-ac49e9153bd0\",\n            \"text\": \"UNITED Kingdom\",\n            \"x\": 1,\n            \"y\": 852,\n            \"w\": 75,\n            \"h\": 21,\n            \"time\": 21.020999999999997,\n            \"score\": 0.21599829582146293\n        },\n        {\n            \"id\": \"3b6284b8-61d7-4fad-beff-4a1005d1f3ea\",\n            \"text\": \"AustraliA\",\n            \"x\": 172,\n            \"y\": 838,\n            \"w\": 64,\n            \"h\": 9,\n            \"time\": 21.020999999999997,\n            \"score\": 0.3654866890446997\n        },\n        {\n            \"id\": \"8dd0b601-a44e-46f7-b05c-2301c7407d53\",\n            \"text\": \") STATES\",\n            \"x\": 394,\n            \"y\": 804,\n            \"w\": 59,\n            \"h\": 27,\n            \"time\": 21.020999999999997,\n            \"score\": 0.9553252469076015\n        },\n        {\n            \"id\": \"d3885239-f28d-41c6-ad5d-bbbe84a3e9fd\",\n            \"text\": \"KUS\",\n            \"x\": -5,\n            \"y\": 807,\n            \"w\": 77,\n            \"h\": 44,\n            \"time\": 21.020999999999997,\n            \"score\": 0.9975128541628968\n        },\n        {\n            \"id\": \"d34f53f7-655c-4f4c-a9ff-7b791ec1245e\",\n            \"text\": \"CA\",\n            \"x\": 346,\n            \"y\": 670,\n            \"w\": 34,\n            \"h\": 30,\n            \"time\": 21.020999999999997,\n            \"score\": 0.9965057939440465\n        },\n        {\n            \"id\": \"4f1c62aa-f7fd-41d0-b4a7-a72ad7c2f0b2\",\n            \"text\": \"defend freedom and\",\n            \"x\": 154,\n            \"y\": 848,\n            \"w\": 412,\n            \"h\": 50,\n            \"time\": 21.020999999999997,\n            \"score\": 0.6595525337924928\n        },\n        {\n            \"id\": \"76e53292-6ba1-4ba3-9794-304ed83b5b8d\",\n            \"text\": \"UNITED K\",\n            \"x\": 625,\n            \"y\": 794,\n            \"w\": 99,\n            \"h\": 26,\n            \"time\": 21.020999999999997,\n            \"score\": 0.7793131233915225\n        },\n        {\n            \"id\": \"68f29ed7-4c7b-427b-a60c-93b713eaf9be\",\n            \"text\": \"AUKUS\",\n            \"x\": 173,\n            \"y\": 774,\n            \"w\": 165,\n            \"h\": 49,\n            \"time\": 21.020999999999997,\n            \"score\": 0.9997924004699577\n        },\n        {\n            \"id\": \"422402cb-75de-4dc9-ba35-9fe87d92dfd8\",\n            \"text\": \"strengthen democracy\",\n            \"x\": 124,\n            \"y\": 902,\n            \"w\": 467,\n            \"h\": 64,\n            \"time\": 21.020999999999997,\n            \"score\": 0.9999587354480302\n        },\n        {\n            \"id\": \"a20080be-77b7-4dac-95c9-25fa12e6f847\",\n            \"text\": \"States\",\n            \"x\": 112,\n            \"y\": 847,\n            \"w\": 37,\n            \"h\": 10,\n            \"time\": 21.020999999999997,\n            \"score\": 0.37405619960402064\n        },\n        {\n            \"id\": \"daafd0f3-8ce4-4d9d-8a02-f5805d94bd82\",\n            \"text\": \"SAN DIEGC\",\n            \"x\": 572,\n            \"y\": 632,\n            \"w\": 152,\n            \"h\": 32,\n            \"time\": 24.023999999999997,\n            \"score\": 0.9231798302844929\n        },\n        {\n            \"id\": \"94598d00-c816-4205-945d-72facd1ee664\",\n            \"text\": \"AUSTRALIA\",\n            \"x\": 488,\n            \"y\": 775,\n            \"w\": 95,\n            \"h\": 21,\n            \"time\": 24.023999999999997,\n            \"score\": 0.9996185733724167\n        },\n        {\n            \"id\": \"32d812b0-5bb1-461f-9f62-6211bb2d0a5e\",\n            \"text\": \"DIeGo;\",\n            \"x\": 287,\n            \"y\": 676,\n            \"w\": 65,\n            \"h\": 14,\n            \"time\": 24.023999999999997,\n            \"score\": 0.18424479960260842\n        },\n        {\n            \"id\": \"59e204ef-a452-4a3c-a45c-be845c8ed51f\",\n            \"text\": \"SAN\",\n            \"x\": 53,\n            \"y\": 725,\n            \"w\": 30,\n            \"h\": 20,\n            \"time\": 24.023999999999997,\n            \"score\": 0.49555019928488825\n        },\n        {\n            \"id\": \"bf09ad28-b6cf-42b7-ac1b-b68f82df2b4f\",\n            \"text\": \"strongest possible\",\n            \"x\": 173,\n            \"y\": 842,\n            \"w\": 376,\n            \"h\": 68,\n            \"time\": 24.023999999999997,\n            \"score\": 0.9376523429620679\n        },\n        {\n            \"id\": \"5f5cf2ed-6ca7-41b7-8b24-a6c3db9b26c4\",\n            \"text\": \"VaeDe\",\n            \"x\": 57,\n            \"y\": 827,\n            \"w\": 30,\n            \"h\": 8,\n            \"time\": 24.023999999999997,\n            \"score\": 0.0012382308168290138\n        },\n        {\n            \"id\": \"6d9b8865-79a9-43be-8e28-40c369484976\",\n            \"text\": \"SAN\",\n            \"x\": 252,\n            \"y\": 683,\n            \"w\": 40,\n            \"h\": 22,\n            \"time\": 24.023999999999997,\n            \"score\": 0.9965134953131998\n        },\n        {\n            \"id\": \"13c3aaaa-3bb2-4671-85db-8f7abcdc0e4a\",\n            \"text\": \"UNITED KINGDC\",\n            \"x\": 595,\n            \"y\": 771,\n            \"w\": 128,\n            \"h\": 20,\n            \"time\": 24.023999999999997,\n            \"score\": 0.9860787253466649\n        },\n        {\n            \"id\": \"805fb597-129c-4bb7-8f41-23486f1f9e5e\",\n            \"text\": \"Kingdom\",\n            \"x\": 299,\n            \"y\": 798,\n            \"w\": 50,\n            \"h\": 8,\n            \"time\": 24.023999999999997,\n            \"score\": 0.8513126767956747\n        },\n        {\n            \"id\": \"475cec72-46d2-44b9-bb0c-6adad46d1a9b\",\n            \"text\": \"position to navigate\",\n            \"x\": 153,\n            \"y\": 899,\n            \"w\": 411,\n            \"h\": 67,\n            \"time\": 24.023999999999997,\n            \"score\": 0.9266874802675898\n        },\n        {\n            \"id\": \"468ccb1f-0a68-409a-ac0d-68c3788d48b1\",\n            \"text\": \"ngdou\",\n            \"x\": 83,\n            \"y\": 823,\n            \"w\": 38,\n            \"h\": 9,\n            \"time\": 24.023999999999997,\n            \"score\": 0.015229120999891458\n        },\n        {\n            \"id\": \"e9829750-9d7e-4098-9f8d-318e22585671\",\n            \"text\": \"AUKUS\",\n            \"x\": 490,\n            \"y\": 708,\n            \"w\": 239,\n            \"h\": 73,\n            \"time\": 24.023999999999997,\n            \"score\": 0.9933386520762665\n        },\n        {\n            \"id\": \"48b3503e-4c9e-4b5a-a7a3-132c5c950843\",\n            \"text\": \"AUKUS\",\n            \"x\": 11,\n            \"y\": 787,\n            \"w\": 109,\n            \"h\": 33,\n            \"time\": 24.023999999999997,\n            \"score\": 0.998389077552995\n        },\n        {\n            \"id\": \"da449025-5ebf-4d5f-9a05-bc0496e7b660\",\n            \"text\": \"AUSTRALIA\",\n            \"x\": 206,\n            \"y\": 803,\n            \"w\": 55,\n            \"h\": 20,\n            \"time\": 24.023999999999997,\n            \"score\": 0.6729507683079085\n        },\n        {\n            \"id\": \"b3bc0441-c617-43bc-bf82-84faf69c8f68\",\n            \"text\": \"AUKUS\",\n            \"x\": 201,\n            \"y\": 758,\n            \"w\": 144,\n            \"h\": 37,\n            \"time\": 24.023999999999997,\n            \"score\": 0.9999476474395173\n        },\n        {\n            \"id\": \"e68ab538-6af4-4d0e-874e-96498076e43b\",\n            \"text\": \"United StaTES\",\n            \"x\": 125,\n            \"y\": 812,\n            \"w\": 65,\n            \"h\": 19,\n            \"time\": 24.023999999999997,\n            \"score\": 0.11110593556945197\n        },\n        {\n            \"id\": \"ee1619c4-b1f5-4acf-8526-16879d67463b\",\n            \"text\": \"Idiego;\",\n            \"x\": 77,\n            \"y\": 719,\n            \"w\": 47,\n            \"h\": 15,\n            \"time\": 24.023999999999997,\n            \"score\": 0.2670314251284734\n        },\n        {\n            \"id\": \"4c417560-c533-4fa3-af3e-65e9de3ccded\",\n            \"text\": \"XE\",\n            \"x\": 138,\n            \"y\": 778,\n            \"w\": 52,\n            \"h\": 32,\n            \"time\": 24.023999999999997,\n            \"score\": 0.06119601754481129\n        },\n        {\n            \"id\": \"a1b11a2e-1fb1-4e50-b587-615a62989e9e\",\n            \"text\": \"CA\",\n            \"x\": 352,\n            \"y\": 664,\n            \"w\": 30,\n            \"h\": 24,\n            \"time\": 24.023999999999997,\n            \"score\": 0.9978294535481113\n        },\n        {\n            \"id\": \"f50e5dc5-0849-4b29-b00e-2a426e749c16\",\n            \"text\": \"XE\",\n            \"x\": 368,\n            \"y\": 740,\n            \"w\": 75,\n            \"h\": 36,\n            \"time\": 24.023999999999997,\n            \"score\": 0.15077139502720605\n        },\n        {\n            \"id\": \"2e484c16-5740-4d49-ae22-5e9871f7e194\",\n            \"text\": \"United\",\n            \"x\": 265,\n            \"y\": 799,\n            \"w\": 38,\n            \"h\": 16,\n            \"time\": 24.023999999999997,\n            \"score\": 0.8658565816543665\n        },\n        {\n            \"id\": \"b52a1da0-f080-4798-b915-a02ffe7b759e\",\n            \"text\": \"CA\",\n            \"x\": 125,\n            \"y\": 711,\n            \"w\": 22,\n            \"h\": 20,\n            \"time\": 24.023999999999997,\n            \"score\": 0.660011178479414\n        },\n        {\n            \"id\": \"bf16d783-e767-4c97-a7dc-02e8416db769\",\n            \"text\": \"STATES\",\n            \"x\": 396,\n            \"y\": 786,\n            \"w\": 46,\n            \"h\": 10,\n            \"time\": 24.023999999999997,\n            \"score\": 0.1589679730776985\n        },\n        {\n            \"id\": \"23df3085-7be3-40d5-bf7c-a1e6aadf56da\",\n            \"text\": \"ALstDiLuA\",\n            \"x\": 16,\n            \"y\": 828,\n            \"w\": 39,\n            \"h\": 14,\n            \"time\": 24.023999999999997,\n            \"score\": 0.013807485676148146\n        },\n        {\n            \"id\": \"d3910585-2cfe-4dd1-bd3c-90ce0a3c9264\",\n            \"text\": \"Umited\",\n            \"x\": 355,\n            \"y\": 792,\n            \"w\": 42,\n            \"h\": 10,\n            \"time\": 24.023999999999997,\n            \"score\": 0.6766263412190459\n        },\n        {\n            \"id\": \"7bebd750-241b-4663-9320-c2c03386a03d\",\n            \"text\": \"UNITED KINGDC\",\n            \"x\": 595,\n            \"y\": 771,\n            \"w\": 130,\n            \"h\": 20,\n            \"time\": 27.026999999999997,\n            \"score\": 0.9880798635092778\n        },\n        {\n            \"id\": \"b64d7cfb-5dbb-438e-943c-c09f9c529e09\",\n            \"text\": \"DIEGO,\",\n            \"x\": 288,\n            \"y\": 675,\n            \"w\": 66,\n            \"h\": 16,\n            \"time\": 27.026999999999997,\n            \"score\": 0.6192315915515294\n        },\n        {\n            \"id\": \"b36cd497-16f8-4cb8-aaaf-5138eb346445\",\n            \"text\": \"bu\",\n            \"x\": 83,\n            \"y\": 823,\n            \"w\": 38,\n            \"h\": 9,\n            \"time\": 27.026999999999997,\n            \"score\": 0.00673863897100091\n        },\n        {\n            \"id\": \"b9e99b54-1708-4c3e-a92a-25e1cf98de09\",\n            \"text\": \"CA\",\n            \"x\": 352,\n            \"y\": 664,\n            \"w\": 30,\n            \"h\": 24,\n            \"time\": 27.026999999999997,\n            \"score\": 0.9972547320594821\n        },\n        {\n            \"id\": \"030ba56e-8508-48a0-a14b-72d74e34d1da\",\n            \"text\": \"Austoalut\",\n            \"x\": 16,\n            \"y\": 828,\n            \"w\": 39,\n            \"h\": 14,\n            \"time\": 27.026999999999997,\n            \"score\": 0.023583695066059326\n        },\n        {\n            \"id\": \"5077bcbc-60a6-4d34-8d7e-9776d4369588\",\n            \"text\": \"SAN\",\n            \"x\": 252,\n            \"y\": 684,\n            \"w\": 39,\n            \"h\": 20,\n            \"time\": 27.026999999999997,\n            \"score\": 0.9947014250203569\n        },\n        {\n            \"id\": \"13042457-6c5d-42ec-8bfe-0a8a9e17bc2a\",\n            \"text\": \"challenges of\",\n            \"x\": 256,\n            \"y\": 840,\n            \"w\": 284,\n            \"h\": 73,\n            \"time\": 27.026999999999997,\n            \"score\": 0.9972279463153039\n        },\n        {\n            \"id\": \"cff4a2c8-4820-4d30-9472-4f6467a818b6\",\n            \"text\": \"Kingdom\",\n            \"x\": 299,\n            \"y\": 798,\n            \"w\": 50,\n            \"h\": 8,\n            \"time\": 27.026999999999997,\n            \"score\": 0.8048809489493689\n        },\n        {\n            \"id\": \"d3642b1d-cc60-4ec0-93b9-e8fdb3cbf463\",\n            \"text\": \"SAN DIEGC\",\n            \"x\": 572,\n            \"y\": 632,\n            \"w\": 152,\n            \"h\": 32,\n            \"time\": 27.026999999999997,\n            \"score\": 0.8047675525467024\n        },\n        {\n            \"id\": \"00680cc6-d7cc-4f36-b5ed-fe05d1270c84\",\n            \"text\": \"XE\",\n            \"x\": 138,\n            \"y\": 778,\n            \"w\": 52,\n            \"h\": 32,\n            \"time\": 27.026999999999997,\n            \"score\": 0.04968605459643469\n        },\n        {\n            \"id\": \"7c830aba-391c-47f2-b467-704010a04d61\",\n            \"text\": \"today and tomorrow\",\n            \"x\": 144,\n            \"y\": 899,\n            \"w\": 426,\n            \"h\": 65,\n            \"time\": 27.026999999999997,\n            \"score\": 0.9902838907370759\n        },\n        {\n            \"id\": \"44bedae2-1bce-4692-9f02-e2002396ef48\",\n            \"text\": \"Australia\",\n            \"x\": 205,\n            \"y\": 809,\n            \"w\": 54,\n            \"h\": 8,\n            \"time\": 27.026999999999997,\n            \"score\": 0.3409640805062935\n        },\n        {\n            \"id\": \"85b01012-656e-43b0-be3f-c46fe4582284\",\n            \"text\": \"AUKUS\",\n            \"x\": 488,\n            \"y\": 708,\n            \"w\": 241,\n            \"h\": 74,\n            \"time\": 27.026999999999997,\n            \"score\": 0.9980148010228872\n        },\n        {\n            \"id\": \"c2dbecbe-3628-4803-ac8c-8a085bab7091\",\n            \"text\": \"the\",\n            \"x\": 184,\n            \"y\": 850,\n            \"w\": 78,\n            \"h\": 48,\n            \"time\": 27.026999999999997,\n            \"score\": 0.9210667014122009\n        },\n        {\n            \"id\": \"f508f194-2b4d-4a57-99bd-c001dad3f37b\",\n            \"text\": \"AUKUS\",\n            \"x\": 201,\n            \"y\": 756,\n            \"w\": 145,\n            \"h\": 40,\n            \"time\": 27.026999999999997,\n            \"score\": 0.999206413965497\n        },\n        {\n            \"id\": \"daa46ae7-c295-464b-a831-88b93609624f\",\n            \"text\": \"CA\",\n            \"x\": 125,\n            \"y\": 711,\n            \"w\": 22,\n            \"h\": 20,\n            \"time\": 27.026999999999997,\n            \"score\": 0.6748117612380287\n        },\n        {\n            \"id\": \"751a5383-ba18-4745-a2e1-309d0a028a39\",\n            \"text\": \"UNITEd STATES\",\n            \"x\": 355,\n            \"y\": 780,\n            \"w\": 90,\n            \"h\": 28,\n            \"time\": 27.026999999999997,\n            \"score\": 0.45250489513359626\n        },\n        {\n            \"id\": \"8e23e396-9fad-4e52-95f5-868f42956e0e\",\n            \"text\": \"Lted [\",\n            \"x\": 59,\n            \"y\": 825,\n            \"w\": 30,\n            \"h\": 14,\n            \"time\": 27.026999999999997,\n            \"score\": 0.057944143482257154\n        },\n        {\n            \"id\": \"5316aff3-6970-4ec3-b5e0-836a697fb6b8\",\n            \"text\": \"Idiego;\",\n            \"x\": 77,\n            \"y\": 719,\n            \"w\": 47,\n            \"h\": 15,\n            \"time\": 27.026999999999997,\n            \"score\": 0.184842356749444\n        },\n        {\n            \"id\": \"6866f51f-9430-496e-a3d8-d750e84cffa2\",\n            \"text\": \"SAN\",\n            \"x\": 52,\n            \"y\": 722,\n            \"w\": 32,\n            \"h\": 24,\n            \"time\": 27.026999999999997,\n            \"score\": 0.790991023076406\n        },\n        {\n            \"id\": \"1281329a-cc5f-44e9-a6fd-8670b7adfd7a\",\n            \"text\": \"XE\",\n            \"x\": 368,\n            \"y\": 740,\n            \"w\": 75,\n            \"h\": 36,\n            \"time\": 27.026999999999997,\n            \"score\": 0.062048418518910284\n        },\n        {\n            \"id\": \"38bd424e-6439-4d21-a703-713b0474ad44\",\n            \"text\": \"AUSTRALIA\",\n            \"x\": 488,\n            \"y\": 775,\n            \"w\": 95,\n            \"h\": 21,\n            \"time\": 27.026999999999997,\n            \"score\": 0.9995623348068601\n        },\n        {\n            \"id\": \"08fcba9d-98e4-4ab2-bdad-43a96fed839c\",\n            \"text\": \"United\",\n            \"x\": 265,\n            \"y\": 799,\n            \"w\": 38,\n            \"h\": 16,\n            \"time\": 27.026999999999997,\n            \"score\": 0.8687496366234249\n        },\n        {\n            \"id\": \"24f8798d-67a8-42da-9975-d4d84a291a7b\",\n            \"text\": \"AUKUS\",\n            \"x\": 11,\n            \"y\": 786,\n            \"w\": 109,\n            \"h\": 34,\n            \"time\": 27.026999999999997,\n            \"score\": 0.9972048693971294\n        },\n        {\n            \"id\": \"7888a851-9df0-4eee-b1ec-9420cb65e6cd\",\n            \"text\": \"UNiTED states\",\n            \"x\": 125,\n            \"y\": 811,\n            \"w\": 64,\n            \"h\": 20,\n            \"time\": 27.026999999999997,\n            \"score\": 0.2845840984444942\n        },\n        {\n            \"id\": \"aa5bf697-0f5f-4d4a-a017-157b2959fb1f\",\n            \"text\": \"AUKUS\",\n            \"x\": 300,\n            \"y\": 740,\n            \"w\": 83,\n            \"h\": 30,\n            \"time\": 28.486791666666665,\n            \"score\": 0.9841100967677376\n        },\n        {\n            \"id\": \"26943d28-c6b5-4012-8791-b4f43261cd46\",\n            \"text\": \"A\",\n            \"x\": -2,\n            \"y\": 246,\n            \"w\": 28,\n            \"h\": 32,\n            \"time\": 28.486791666666665,\n            \"score\": 0.9998683972744402\n        },\n        {\n            \"id\": \"2edd0824-1506-4d10-a055-799022706f63\",\n            \"text\": \"IKUS\",\n            \"x\": -11,\n            \"y\": 111,\n            \"w\": 370,\n            \"h\": 129,\n            \"time\": 28.486791666666665,\n            \"score\": 0.5492766499519348\n        },\n        {\n            \"id\": \"da0e1b69-b1c1-4d80-9b19-dda884561e67\",\n            \"text\": \"UNITED STATES\",\n            \"x\": 424,\n            \"y\": 254,\n            \"w\": 268,\n            \"h\": 32,\n            \"time\": 28.486791666666665,\n            \"score\": 0.9932302385719328\n        },\n        {\n            \"id\": \"7e7afc06-1752-40e9-a38c-c15b71a824c8\",\n            \"text\": \"UNITED KINGDOM\",\n            \"x\": 61,\n            \"y\": 247,\n            \"w\": 332,\n            \"h\": 36,\n            \"time\": 28.486791666666665,\n            \"score\": 0.889888492360305\n        },\n        {\n            \"id\": \"936f662e-ab20-479d-9fbd-e4f191c6eb18\",\n            \"text\": \"could not ask\",\n            \"x\": 220,\n            \"y\": 904,\n            \"w\": 278,\n            \"h\": 50,\n            \"time\": 30.029999999999998,\n            \"score\": 0.9916487074708756\n        },\n        {\n            \"id\": \"cd4fc3f6-dd72-4c6e-a1d7-919f32745270\",\n            \"text\": \"And the United States\",\n            \"x\": 138,\n            \"y\": 848,\n            \"w\": 448,\n            \"h\": 50,\n            \"time\": 30.029999999999998,\n            \"score\": 0.8160287665425571\n        },\n        {\n            \"id\": \"cfeef586-ea44-4556-8995-0cb89ab02bd6\",\n            \"text\": \"UNITED STATES\",\n            \"x\": 422,\n            \"y\": 248,\n            \"w\": 273,\n            \"h\": 37,\n            \"time\": 30.029999999999998,\n            \"score\": 0.9995803268110891\n        },\n        {\n            \"id\": \"f98a142b-cb68-4dae-a8ce-ae727554f126\",\n            \"text\": \"UNITED KINGDOM\",\n            \"x\": 60,\n            \"y\": 242,\n            \"w\": 333,\n            \"h\": 39,\n            \"time\": 30.029999999999998,\n            \"score\": 0.9995621920457644\n        },\n        {\n            \"id\": \"9fcc041f-f602-4ac4-9258-2326abd74f6a\",\n            \"text\": \"A\",\n            \"x\": -2,\n            \"y\": 244,\n            \"w\": 28,\n            \"h\": 30,\n            \"time\": 30.029999999999998,\n            \"score\": 0.9997471730792462\n        },\n        {\n            \"id\": \"1c194c76-e54d-4f46-bfbf-23ca2e32e12a\",\n            \"text\": \"IKUS\",\n            \"x\": -11,\n            \"y\": 108,\n            \"w\": 372,\n            \"h\": 128,\n            \"time\": 30.029999999999998,\n            \"score\": 0.573466956615448\n        },\n        {\n            \"id\": \"f0e1ecf7-e478-4a87-938f-fcda0933b5b7\",\n            \"text\": \"AUKUS\",\n            \"x\": 298,\n            \"y\": 738,\n            \"w\": 85,\n            \"h\": 30,\n            \"time\": 30.029999999999998,\n            \"score\": 0.9892504678871534\n        },\n        {\n            \"id\": \"a880475c-b775-4248-be67-679d00bfd049\",\n            \"text\": \"UNITED KINGDOM\",\n            \"x\": 236,\n            \"y\": 244,\n            \"w\": 340,\n            \"h\": 53,\n            \"time\": 31.656625,\n            \"score\": 0.9928642255146869\n        },\n        {\n            \"id\": \"59c75bb2-78e0-4b0a-b0ac-906bc96763e1\",\n            \"text\": \"Aeee#att\",\n            \"x\": 404,\n            \"y\": 764,\n            \"w\": 46,\n            \"h\": 8,\n            \"time\": 31.656625,\n            \"score\": 5.7845377882309387e-05\n        },\n        {\n            \"id\": \"cbb6c6dd-17ff-4f02-8354-529bf1450c78\",\n            \"text\": \"for two better\",\n            \"x\": 214,\n            \"y\": 848,\n            \"w\": 290,\n            \"h\": 50,\n            \"time\": 31.656625,\n            \"score\": 0.9665564035691439\n        },\n        {\n            \"id\": \"4ba9536c-6caf-49a4-838b-41dac3e73a2c\",\n            \"text\": \"AUSTRALIA\",\n            \"x\": 4,\n            \"y\": 260,\n            \"w\": 207,\n            \"h\": 50,\n            \"time\": 31.656625,\n            \"score\": 0.9994669044759654\n        },\n        {\n            \"id\": \"f61ebaa9-f286-4cdc-9c55-e36d1869c2e2\",\n            \"text\": \"UNITE\",\n            \"x\": 609,\n            \"y\": 239,\n            \"w\": 119,\n            \"h\": 40,\n            \"time\": 31.656625,\n            \"score\": 0.9919456082336608\n        },\n        {\n            \"id\": \"aaf76e48-eef4-444b-8bcb-baf770624f90\",\n            \"text\": \"friends or partners\",\n            \"x\": 163,\n            \"y\": 903,\n            \"w\": 393,\n            \"h\": 61,\n            \"time\": 31.656625,\n            \"score\": 0.9837211161871648\n        },\n        {\n            \"id\": \"74de8458-d91a-4c4e-acc5-e9de6618441c\",\n            \"text\": \"AUKUS\",\n            \"x\": 10,\n            \"y\": 109,\n            \"w\": 535,\n            \"h\": 156,\n            \"time\": 31.656625,\n            \"score\": 0.9992511463344064\n        },\n        {\n            \"id\": \"65454f93-8a39-4514-8970-76e39426de42\",\n            \"text\": \"AUKUS\",\n            \"x\": 302,\n            \"y\": 740,\n            \"w\": 90,\n            \"h\": 26,\n            \"time\": 31.656625,\n            \"score\": 0.9983051480550573\n        },\n        {\n            \"id\": \"790071f8-b2e7-4e38-8d85-e2df3449676a\",\n            \"text\": \"work to create a safer;\",\n            \"x\": 132,\n            \"y\": 900,\n            \"w\": 456,\n            \"h\": 60,\n            \"time\": 33.032999999999994,\n            \"score\": 0.8321402770046373\n        },\n        {\n            \"id\": \"d8600056-d925-47e7-8e15-d75392b55fd1\",\n            \"text\": \"AUSTRALIA\",\n            \"x\": -2,\n            \"y\": 264,\n            \"w\": 207,\n            \"h\": 48,\n            \"time\": 33.032999999999994,\n            \"score\": 0.5266203355787166\n        },\n        {\n            \"id\": \"349b2d7b-e79c-4dbc-9ee3-72892134f4a6\",\n            \"text\": \"to stand with as we\",\n            \"x\": 164,\n            \"y\": 850,\n            \"w\": 394,\n            \"h\": 48,\n            \"time\": 33.032999999999994,\n            \"score\": 0.8887106857176283\n        },\n        {\n            \"id\": \"754c1c61-dc48-4c40-b811-c6836e1460e8\",\n            \"text\": \"AUKUS\",\n            \"x\": 14,\n            \"y\": 115,\n            \"w\": 523,\n            \"h\": 152,\n            \"time\": 33.032999999999994,\n            \"score\": 0.9995809038829945\n        },\n        {\n            \"id\": \"c9114314-e0d0-4a09-8b3c-36cfa1354349\",\n            \"text\": \"UNITE\",\n            \"x\": 602,\n            \"y\": 245,\n            \"w\": 123,\n            \"h\": 39,\n            \"time\": 33.032999999999994,\n            \"score\": 0.999671165109233\n        },\n        {\n            \"id\": \"43f78fb9-0d09-472d-97aa-ecf3f2314e04\",\n            \"text\": \"UNITED KINGDOM\",\n            \"x\": 231,\n            \"y\": 250,\n            \"w\": 339,\n            \"h\": 50,\n            \"time\": 33.032999999999994,\n            \"score\": 0.9997295660358142\n        },\n        {\n            \"id\": \"b2c48d3e-a3a4-414c-9901-d0afe4bc0af5\",\n            \"text\": \"AUKUS\",\n            \"x\": 291,\n            \"y\": 743,\n            \"w\": 92,\n            \"h\": 26,\n            \"time\": 33.032999999999994,\n            \"score\": 0.9995293484567731\n        },\n        {\n            \"id\": \"ed6900a9-a40f-4fc0-ae42-3617d5e87b6f\",\n            \"text\": \"AUST\",\n            \"x\": 482,\n            \"y\": 374,\n            \"w\": 248,\n            \"h\": 98,\n            \"time\": 36.035999999999994,\n            \"score\": 0.6022251844406128\n        },\n        {\n            \"id\": \"6a0096f1-7c84-4e0c-aedd-6dc38ededdf5\",\n            \"text\": \"A\",\n            \"x\": 519,\n            \"y\": 67,\n            \"w\": 204,\n            \"h\": 240,\n            \"time\": 36.035999999999994,\n            \"score\": 0.9368132911666329\n        },\n        {\n            \"id\": \"a97f0ca6-e792-4381-a0f9-966f3aaa06cb\",\n            \"text\": \"TE\",\n            \"x\": -3,\n            \"y\": 217,\n            \"w\": 155,\n            \"h\": 87,\n            \"time\": 39.038999999999994,\n            \"score\": 0.2227399721800581\n        },\n        {\n            \"id\": \"c40d4f73-0984-4cec-845e-d58595574411\",\n            \"text\": \"peaceful future\",\n            \"x\": 254,\n            \"y\": 843,\n            \"w\": 323,\n            \"h\": 65,\n            \"time\": 39.038999999999994,\n            \"score\": 0.6470411953341875\n        },\n        {\n            \"id\": \"0614177e-b12a-4247-961b-1633cce91624\",\n            \"text\": \"(ud\",\n            \"x\": -14,\n            \"y\": -14,\n            \"w\": 638,\n            \"h\": 168,\n            \"time\": 39.038999999999994,\n            \"score\": 0.0076106296651224535\n        },\n        {\n            \"id\": \"10c6ed1b-b8ca-4601-8bd4-e37e6e968e43\",\n            \"text\": \"for the people everywhere:\",\n            \"x\": 84,\n            \"y\": 897,\n            \"w\": 547,\n            \"h\": 72,\n            \"time\": 39.038999999999994,\n            \"score\": 0.7493803301485004\n        },\n        {\n            \"id\": \"2cb5eff5-958d-480f-8bca-f8db3cb899db\",\n            \"text\": \"M @ @ B\",\n            \"x\": 410,\n            \"y\": 586,\n            \"w\": 74,\n            \"h\": 24,\n            \"time\": 39.038999999999994,\n            \"score\": 0.07078080053729907\n        },\n        {\n            \"id\": \"ef7eddae-07cf-4012-bb97-9ffcda20ba13\",\n            \"text\": \"NGDOM\",\n            \"x\": 346,\n            \"y\": 219,\n            \"w\": 384,\n            \"h\": 88,\n            \"time\": 39.038999999999994,\n            \"score\": 0.6991384596360424\n        },\n        {\n            \"id\": \"1d8ec45b-968f-40c2-a912-0446a46f463c\",\n            \"text\": \"B\",\n            \"x\": 467,\n            \"y\": 609,\n            \"w\": 16,\n            \"h\": 24,\n            \"time\": 39.038999999999994,\n            \"score\": 0.404807336423918\n        },\n        {\n            \"id\": \"77a87a92-f2fd-4ce5-a319-8f39e75ec54e\",\n            \"text\": \"more\",\n            \"x\": 146,\n            \"y\": 861,\n            \"w\": 112,\n            \"h\": 36,\n            \"time\": 39.038999999999994,\n            \"score\": 0.9999852180480957\n        },\n        {\n            \"id\": \"1595be46-852c-4a1a-a834-f8d7dbe3900f\",\n            \"text\": \"WASHINGTON\",\n            \"x\": 303,\n            \"y\": 709,\n            \"w\": 118,\n            \"h\": 16,\n            \"time\": 39.038999999999994,\n            \"score\": 0.9996222317119995\n        },\n        {\n            \"id\": \"883df77b-2b44-4738-babb-4572a84e6984\",\n            \"text\": \"THE WHITE HOUSE\",\n            \"x\": 232,\n            \"y\": 680,\n            \"w\": 258,\n            \"h\": 26,\n            \"time\": 39.038999999999994,\n            \"score\": 0.994014982149371\n        }\n    ]\n}"}],"_postman_id":"66c00463-ce0f-445b-a337-be284ceeb9c7"},{"name":"Get OCR Details by Id","id":"b00a0c3e-6e74-4c65-8a19-18893a6ec667","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_uid/ocr/:appearance_id","description":"<p>Returns information for a specific OCR detection, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the detection</li>\n<li><code>text</code> : text content detected</li>\n<li><code>time</code> : timestamp at which the detection occurs</li>\n<li><code>score</code> : the confidence score for the detection. Between 0 and 1</li>\n<li><code>x</code> , <code>y</code> , <code>w</code> , <code>h</code>: location of the text detected</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_uid","ocr",":appearance_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_uid"},{"description":{"content":"<p>OCR Detection Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"appearance_id"}]}},"response":[{"id":"db379e3f-a8c7-4b67-bdc7-4aa9b2eff7c9","name":"Get OCR Details by Id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_uid/ocr/:appearance_id","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_uid","ocr",":appearance_id"],"variable":[{"key":"asset_uid","value":"{{asset_id}}"},{"key":"appearance_id","value":"47ce4938-ebe4-4e02-8072-23bced0d97f9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 24 Mar 2023 23:54:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"152"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"47ce4938-ebe4-4e02-8072-23bced0d97f9\",\n        \"text\": \"AUKUS\",\n        \"x\": 449,\n        \"y\": 737,\n        \"w\": 281,\n        \"h\": 87,\n        \"time\": 0.0,\n        \"score\": 0.9996005236525094\n    }\n}"}],"_postman_id":"b00a0c3e-6e74-4c65-8a19-18893a6ec667"},{"name":"Get Transcript Details by Id","id":"749f7d09-c14b-4afd-97cf-279c4d783d52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/transcripts/:transcript_id","description":"<p>Returns an array of transcript chunks generated for the asset, including:</p>\n<ul>\n<li><code>id</code> : unique identifier of the transcript chunk</li>\n<li><code>text</code> : text content in the transcript chunk</li>\n<li><code>start_time</code> : timestamp the transcript chunk starts</li>\n<li><code>end_time</code> : timestamp the transcript chunk ends</li>\n<li><code>duration</code> : duration of the transcript chunk</li>\n<li><code>language:id</code> : unique identifier of the transcript language</li>\n<li><code>language:name</code> : name of the transcript language</li>\n<li><code>language:slug</code> : ISO language code of the transcript language</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:feeditems</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","transcripts",":transcript_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Media Asset Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"asset_id"},{"description":{"content":"<p>Transcript Detection Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"transcript_id"}]}},"response":[{"id":"79e9ca0a-21cb-463f-8137-0ba61e88a1eb","name":"Get Transcript Details by Id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/metadata/:asset_id/transcripts/:transcript_id","host":["https://api.vidrovr.com"],"path":["v2","metadata",":asset_id","transcripts",":transcript_id"],"variable":[{"key":"asset_id","value":"{{asset_id}}"},{"key":"transcript_id","value":"eb139480-bf99-466f-ad18-b857a60cefe7"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 00:00:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"261"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"eb139480-bf99-466f-ad18-b857a60cefe7\",\n        \"text\": \"It's an honor to be here to welcome primers Abones, and Eminisin, Australia, and our kingdom are two America's most stalwart and capable allies, Common values, Our shared vision, more peaceful and prosperous future, unite us all across Atlantic and Pacific, for more than a century we stood together to defend freedom and strength and democracy of putting ourselves in the strongest possible position to navigate the challenges of today and tomorrow together and the United States could not ask for two better friends or partners to stand with, as we work, the greatest safer, more peaceful future for the people everywhere.\",\n        \"start_time\": 0.0,\n        \"end_time\": 41.0,\n        \"duration\": 41.0,\n        \"language\": {\n            \"id\": \"6cd57e3d-74ec-4fac-bc35-fea9442896e7\",\n            \"name\": \"english\",\n            \"slug\": \"en-US\"\n        }\n    }\n}"}],"_postman_id":"749f7d09-c14b-4afd-97cf-279c4d783d52"},{"name":"Get Trajectories","id":"2a5a75b4-c3fe-4694-9534-27ffb4d61740","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/metadata/:asset_id/trajectories?source&limit","description":"<h1 id=\"get-trajectories\">Get Trajectories</h1>\n<p><code>https://api.vidrovr.com/v2/metadata/:asset_id/trajectories</code></p>\n<p>Returns a list of geospatial points and/or trajectories associated with the feed.</p>\n<blockquote>\n<p>Required user permissions: read:feed_items </p>\n</blockquote>\n<h3 id=\"query-params\">Query Params</h3>\n<ul>\n<li><p><code>source</code> : Source of geospatial information. Options include <code>user</code> , <code>feed</code>, or <code>extracted</code>. Default is <code>none</code> (optional)</p>\n</li>\n<li><p><code>limit</code>: Set limit for results. If provided, must be integer. Default is <code>none</code> (optional)</p>\n</li>\n</ul>\n<h3 id=\"code-snippet\">Code Snippet</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --location 'https://api.vidrovr.com/v2/metadata/:asset_id/trajectories?limit=1' \\\n--header 'x-api-key: [[x-api-key-masked-secret]]'\n\n</code></pre><h3 id=\"response\">Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": [\n        {\n            \"type\": \"trajectories\",\n            \"id\": \"9e3025e2-81d4-4eed-b35a-1239b7518588\",\n            \"geojson\": {\n                \"type\": \"Feature\",\n                \"geometry\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        -79.047150,\n                        43.092461,\n                        614\n                    ]\n                },\n                \"properties\": {\n                    \"feed_item_id\": \"549005dd-3003-4b3b-85e5-92356d8ca09f\",\n                    \"creation_date\": \"2025-02-07T20:07:55.974944\",\n                    \"updated_date\": \"2025-02-07T20:07:55.974952\",\n                    \"source\": \"user\",\n                    \"name\": \"Niagara Falls\"\n                }\n            }\n        }\n    ],\n    \"count\": 1\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","trajectories"],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>Optional. Choose from <code>user</code>, <code>feed</code>, or <code>extracted</code></p>\n","type":"text/plain"},"key":"source","value":null},{"description":{"content":"<p>Optional. Limit number of trajectories returned.</p>\n","type":"text/plain"},"key":"limit","value":null}],"variable":[{"type":"any","value":"","key":"asset_id"}]}},"response":[],"_postman_id":"2a5a75b4-c3fe-4694-9534-27ffb4d61740"},{"name":"Get Trajectories Detail","id":"e8acd1d5-ac74-4091-8b25-61ef77d4ee0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/metadata/:asset_id/trajectories/:trajectory_id","description":"<h1 id=\"get-trajectories\">Get Trajectories</h1>\n<p><code>https://api.vidrovr.com/v2/metadata/:asset_id/trajectories</code></p>\n<p>Returns a specific geospatial point or trajectory associated with the feed.</p>\n<blockquote>\n<p>Required user permissions: read:feed_items </p>\n</blockquote>\n<h3 id=\"code-snippet\">Code Snippet</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --location 'https://api.vidrovr.com/v2/metadata/:asset_id/trajectories?limit=1' \\\n--header 'x-api-key: [[x-api-key-masked-secret]]'\n\n</code></pre><h3 id=\"response\">Response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": [\n        {\n            \"type\": \"trajectories\",\n            \"id\": \"9e3025e2-81d4-4eed-b35a-1239b7518588\",\n            \"geojson\": {\n                \"type\": \"Feature\",\n                \"geometry\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        -79.047150,\n                        43.092461,\n                        614\n                    ]\n                },\n                \"properties\": {\n                    \"feed_item_id\": \"549005dd-3003-4b3b-85e5-92356d8ca09f\",\n                    \"creation_date\": \"2025-02-07T20:07:55.974944\",\n                    \"updated_date\": \"2025-02-07T20:07:55.974952\",\n                    \"source\": \"user\",\n                    \"name\": \"Niagara Falls\"\n                }\n            }\n        }\n    ],\n    \"count\": 1\n}\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","trajectories",":trajectory_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"type":"any","value":"","key":"asset_id"},{"type":"any","value":"","key":"trajectory_id"}]}},"response":[],"_postman_id":"e8acd1d5-ac74-4091-8b25-61ef77d4ee0e"},{"name":"Create Trajectories","id":"cdcf66d9-6ff2-424c-9a8c-eafe268f4561","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"project_uid\": \"[[project_uid]]\",\n    \"type\": \"Feature\",\n    \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [\n            125.6,\n            10.1,\n            150\n        ]\n    },\n    \"properties\": {\n        \"name\": \"My location\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/metadata/:asset_id/trajectories","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"project_uid\": \"[[project_uid]]\",\n        \"type\": \"Feature\",\n        \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n                125.6,\n                10.1,\n                150\n            ]\n        },\n        \"properties\": {\n            \"name\": \"My location\",\n        }\n    }\n}\n\n</code></pre>\n<p><strong>Note:</strong></p>\n<ul>\n<li><p>The data body must be valid GeoJson format.</p>\n<ul>\n<li>GeoJson format requires decimal degrees format.</li>\n</ul>\n</li>\n<li><p>The coordinates must be in [longitude, latitude] order. The third coordinate value is optional and usually associated with altitude.</p>\n</li>\n<li><p>A Point requires one set of brackets []. A Linestring requires an additional set of brackets to differentiate between points. (e.g. <code>[ [lon1, lat1], [lon2, lat2], ... ]</code>)</p>\n</li>\n</ul>\n<blockquote>\n<p>Required user permissions: create:feed_items</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","trajectories"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"type":"any","value":"","key":"asset_id"}]}},"response":[],"_postman_id":"cdcf66d9-6ff2-424c-9a8c-eafe268f4561"},{"name":"Update Trajectories","id":"afa0f3cd-f50a-4229-b3e5-55f23691f348","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"project_uid\": \"[[project_uid]]\",\n    \"type\": \"Feature\",\n    \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [\n            125.6,\n            10.1,\n            150\n        ]\n    },\n    \"properties\": {\n        \"name\": \"My location\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/metadata/:asset_id/trajectories/:trajectory_id","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"project_uid\": \"[[project_uid]]\",\n        \"type\": \"Feature\",\n        \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n                125.6,\n                10.1,\n                150\n            ]\n        },\n        \"properties\": {\n            \"name\": \"My location\",\n        }\n    }\n}\n\n</code></pre>\n<p><strong>PATCH endpoint is only for appending a Point to an existing Linestring trajectory.</strong></p>\n<p>Note:</p>\n<ul>\n<li><p>The data body must be valid GeoJson format.</p>\n<ul>\n<li>GeoJson format requires decimal degrees format.</li>\n</ul>\n</li>\n<li><p>The coordinates must be in [longitude, latitude] order. The third coordinate value is optional and usually associated with altitude.</p>\n</li>\n<li><p>This endpoint only accepts Point geometry types.</p>\n</li>\n</ul>\n<blockquote>\n<p>Required user permissions: update:feed_items</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","trajectories",":trajectory_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"type":"any","value":"","key":"asset_id"},{"type":"any","value":"","key":"trajectory_id"}]}},"response":[],"_postman_id":"afa0f3cd-f50a-4229-b3e5-55f23691f348"},{"name":"Replace Trajectories","id":"34fa2d37-aab0-4891-9bf0-195901d1edd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"project_uid\": \"[[project_uid]]\",\n    \"type\": \"Feature\",\n    \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [\n            125.6,\n            10.1,\n            150\n        ]\n    },\n    \"properties\": {\n        \"name\": \"My location\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/metadata/:asset_id/trajectories/:trajectory_id","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"project_uid\": \"[[project_uid]]\",\n        \"type\": \"Feature\",\n        \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n                125.6,\n                10.1,\n                150\n            ]\n        },\n        \"properties\": {\n            \"name\": \"My location\",\n        }\n    }\n}\n\n</code></pre>\n<p><strong>PUT endpoint replaces an existing trajectory.</strong></p>\n<p>Note:</p>\n<ul>\n<li><p>The data body must be valid GeoJson format.</p>\n<ul>\n<li>GeoJson format requires decimal degrees format.</li>\n</ul>\n</li>\n<li><p>The coordinates must be in [longitude, latitude] order. The third coordinate value is optional and usually associated with altitude.</p>\n</li>\n<li><p>This endpoint accepts Points or Linestrings.</p>\n</li>\n</ul>\n<blockquote>\n<p>Required user permissions: update:feed_items</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","trajectories",":trajectory_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"type":"any","value":"","key":"asset_id"},{"type":"any","value":"","key":"trajectory_id"}]}},"response":[],"_postman_id":"34fa2d37-aab0-4891-9bf0-195901d1edd9"},{"name":"Delete Trajectories","id":"5b07afe8-d619-47c6-8f1b-1cd9e270cf13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.vidrovr.com/v2/metadata/:asset_id/trajectories/:trajectory_id","description":"<p>DELETE endpoint deletes a feed trajectory.</p>\n<p><strong>WARNING:</strong> If a trajectory ID is not passed, the endpoint will delete all trajectories associated with feed item.</p>\n<blockquote>\n<p>Required user permissions: delete:feed_items</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","metadata",":asset_id","trajectories",":trajectory_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"type":"any","value":"","key":"asset_id"},{"type":"any","value":"","key":"trajectory_id"}]}},"response":[],"_postman_id":"5b07afe8-d619-47c6-8f1b-1cd9e270cf13"}],"id":"1fc5b0ac-b25f-4564-895c-8394dad18c8b","_postman_id":"1fc5b0ac-b25f-4564-895c-8394dad18c8b","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}}},{"name":"Upload","item":[{"name":"Upload","id":"b2a26d40-6072-45e9-bdf3-1db7952700eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"project_id","value":"","type":"text","description":"<p>User's project Id</p>\n"},{"key":"file_data","type":"file","description":"<p>File to upload</p>\n","value":null},{"key":"url","value":"","description":"<p>URL pointed to a hosted media file</p>\n","type":"text"}]},"url":"https://api.vidrovr.com/v2/upload/","description":"<p><strong>Required permissions</strong>: <code>create:feeditems</code></p>\n<p>Upload media to the Vidrovr platform. Processing begins once an upload completes.</p>\n<p>Media files may either be paths to local files on the client, or they may be hosted at a public URL.</p>\n<p>Upload requests must be form-encoded. A single request can provide <em>either</em> a <code>url</code>, or a multipart-form encoded <code>file_data</code>. Both requests must include a <code>project_id</code> to select the project to which the file will be added.</p>\n<p>URL and file uploads have different behaviors.</p>\n<h1 id=\"file-upload\">File upload</h1>\n<p>A file upload request will not complete until the entire file has been received by the server.</p>\n<p>The return body will include the new id of the media asset and its status.</p>\n<h1 id=\"url-upload\">URL upload</h1>\n<p>A URL upload request will complete as soon as the server <em>starts a download job</em>.</p>\n<p>The return body will include an identifier for the download job. That job identifier can be used to request the status of the download job subsequently.</p>\n<p><strong>IMPORTANT</strong>: The download job completing does not mean that the processing pipeline has completed. You may use the metadata endpoints to check the processing status.</p>\n","urlObject":{"path":["v2","upload",""],"host":["https://api.vidrovr.com"],"query":[],"variable":[]}},"response":[{"id":"881a5e33-6ea1-4fde-986c-098a1692e7eb","name":"Upload a local file","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"01234567-89ab-cdef-0123-456789abcdef","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"project_id","value":"01234567-89ab-cdef-0123-456789abcdef","type":"text","description":"User's project Id"},{"key":"file_data","type":"file","description":"File to upload","value":null}]},"url":"https://api.vidrovr.com/v2/upload/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 00:03:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"78"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"01234567-89ab-cdef-0123-456789abcdef\",\n        \"status\": \"RECEIVED\"\n    }\n}"},{"id":"2d811e27-68e7-4141-b58c-d2f2b5a2d098","name":"Upload from a URL","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"01234567-89ab-cdef-0123-456789abcdef","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"project_id","value":"01234567-89ab-cdef-0123-456789abcdef","type":"text","description":"User's project Id"},{"key":"url","value":"https://en.wikipedia.org/static/images/icons/wikipedia.png","description":"URL to a media file","type":"text"}]},"url":"https://api.vidrovr.com/v2/upload/"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"01234567-89ab-cdef-0123-456789abcdef\",\n        \"state\": 0,\n        \"feed_item_ids\": [],\n        \"type\": \"upload_jobs\"\n    }\n}"}],"_postman_id":"b2a26d40-6072-45e9-bdf3-1db7952700eb"},{"name":"Upload Job Status","id":"76e5d958-a96a-4250-a9f6-b0474b102f63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/upload/job/:job-id","description":"<p><strong>Required permissions</strong>: <code>read:feeditems</code></p>\n<p>The response from a URL upload request will contain an upload job ID in <code>response.data.id</code>. That ID can be used to query the status of the upload job.</p>\n<p><strong>IMPORTANT</strong>: The download job completing does not mean that the processing pipeline has completed. You may use the metadata endpoints to check the processing status.</p>\n<p><strong>IMPORTANT</strong>: Job statuses expire one week after upload. Attempting to access an expired (or other non-existent) upload job will result in a 404.</p>\n<h2 id=\"status-values\">Status values</h2>\n<p>The statuses are returned as integers in <code>response.data.state</code>. Their meanings are:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>0: RECEIVED\n1: PENDING\n2: DOWNLOADING\n3: UPLOADING\n4: SUCCESS\n5: FAILURE\n</code></pre>","urlObject":{"path":["v2","upload","job",":job-id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Job identifier - from a URL upload response</p>\n","type":"text/plain"},"type":"any","value":"","key":"job-id"}]}},"response":[{"id":"4a990a76-4a2c-4102-946c-9c2d50054883","name":"Check upload job status","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"01234567-89ab-cdef-0123-456789abcdef","description":"API key","type":"text"}],"url":{"raw":"https://api.vidrovr.com/v2/upload/job/:job-id","host":["https://api.vidrovr.com"],"path":["v2","upload","job",":job-id"],"variable":[{"key":"job-id","value":"01234567-89ab-cdef-0123-456789abcdef","description":"Job identifier - from a URL upload response"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"01234567-89ab-cdef-0123-456789abcdef\",\n        \"state\": 4,\n        \"feed_item_ids\": [\n            \"01234567-89ab-cdef-0123-456789abcdef\"\n        ],\n        \"type\": \"upload_jobs\"\n    }\n}"}],"_postman_id":"76e5d958-a96a-4250-a9f6-b0474b102f63"}],"id":"dd6ff49b-da31-4a0b-8cb6-eb254cfbb639","description":"<p>Allows clients to upload media files directly to Vidrovr.</p>\n<p>Supported file types:</p>\n<ul>\n<li><p>Video: <code>mp4</code>, <code>mov</code>, <code>ogg</code>, <code>webm</code></p>\n</li>\n<li><p>Images: <code>png</code>, <code>jpg</code>, <code>webp</code>, <code>mpo</code></p>\n</li>\n<li><p>Audio: <code>mp3</code>, <code>wav</code>, <code>raw</code></p>\n</li>\n</ul>\n","_postman_id":"dd6ff49b-da31-4a0b-8cb6-eb254cfbb639","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}}},{"name":"Custom Tags","item":[{"name":"Get Tags","id":"9cbaabcd-32c0-4c76-9c6a-746f9be27b1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/customdata/tags/?project_uid=","description":"<p>Returns an array with the Custom Tags associated to the project uid.</p>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:tags</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","tags",""],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""}],"variable":[]}},"response":[{"id":"45289a25-431b-4525-b111-c1996621fc3d","name":"Get Tags","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/customdata/tags/?project_uid={{project_uid}}","host":["https://api.vidrovr.com"],"path":["v2","customdata","tags",""],"query":[{"key":"project_uid","value":"{{project_uid}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 00:41:16 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"146"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"e33ad9e7-1c41-436d-8f37-c02005b76f71\",\n            \"name\": \"owl\"\n        },\n        {\n            \"id\": \"641147b8-fcf0-44f1-b826-60db72b14854\",\n            \"name\": \"grass\"\n        }\n    ]\n}"}],"_postman_id":"9cbaabcd-32c0-4c76-9c6a-746f9be27b1a"},{"name":"Create Tag","id":"fa7bc74a-e8f8-41da-bf17-b45a06b1336f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\":{\n        \"name\": \"bald eagle\",\n        \"project_uid\": \"{{project_uid}}\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/customdata/tags","description":"<p>Creates a new tag for the given project.</p>\n<blockquote>\n<p><strong>Required user permissions:</strong> create:tags</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","tags"],"host":["https://api.vidrovr.com"],"query":[{"disabled":true,"key":"","value":null}],"variable":[]}},"response":[{"id":"f4340049-bcd8-4be2-936f-c721e2918181","name":"Create Tag","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\":{\n        \"name\": \"eagle\",\n        \"project_uid\": \"74888693-c08a-40c4-becb-6966567b3877\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.vidrovr.com/v2/customdata/tags","host":["https://api.vidrovr.com"],"path":["v2","customdata","tags"],"query":[{"key":"","value":null,"type":"text","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 00:41:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"78"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"2cf1bccc-bcb7-40eb-af75-ccba8e46ba3f\",\n        \"name\": \"eagle\"\n    }\n}"}],"_postman_id":"fa7bc74a-e8f8-41da-bf17-b45a06b1336f"},{"name":"Get Tag Details","id":"c6275e98-17d4-4804-9adf-f7c04a3dd33b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/customdata/tags/:tag_id?project_uid=","description":"<p>Return information about a Tag including:</p>\n<ul>\n<li><code>id</code>: unique identifier of the Tag</li>\n<li><code>name</code>: Given name of the Tag</li>\n<li><code>creation_date</code>: UTC date of creation</li>\n<li><code>is_active</code>: Whether the Tag should be detected by the Vidrovr system or not</li>\n<li><code>num_examples</code>: Total number of examples for the Tag</li>\n<li><code>num_reviewed</code>: Number of User-approved Tag examples, a minimum of 25 is required</li>\n<li><code>num_unreviewed</code>: Number of Tag examples that need approval from the user</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:tags</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","tags",":tag_id"],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""}],"variable":[{"description":{"content":"<p>Tag Id (Required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"tag_id"}]}},"response":[{"id":"2304b77c-572b-4a90-9531-7e62edc21c89","name":"Get Tag Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/customdata/tags/:tag_id?project_uid={{project_uid}}","host":["https://api.vidrovr.com"],"path":["v2","customdata","tags",":tag_id"],"query":[{"key":"project_uid","value":"{{project_uid}}"}],"variable":[{"key":"tag_id","value":"641147b8-fcf0-44f1-b826-60db72b14854"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 00:43:19 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"237"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"641147b8-fcf0-44f1-b826-60db72b14854\",\n        \"name\": \"grass\",\n        \"creation_date\": \"2023-03-28T19:19:08.566354\",\n        \"is_active\": true,\n        \"num_examples\": 88,\n        \"num_reviewed\": 28,\n        \"num_unreviewed\": 33,\n        \"search_query\": [\n            \"grass the plant\"\n        ]\n    }\n}"}],"_postman_id":"c6275e98-17d4-4804-9adf-f7c04a3dd33b"},{"name":"Delete Tags","id":"c1cf214d-1569-4b8d-84a8-237371065b55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.vidrovr.com/v2/customdata/tags/:tag_id?project_uid=","description":"<p>Deletes a Tag from the VIdrovr system.</p>\n<blockquote>\n<p><strong>Required user permissions:</strong> delete:tags</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","tags",":tag_id"],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""}],"variable":[{"description":{"content":"<p>Tag Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"tag_id"}]}},"response":[{"id":"4cb4834a-57c9-4360-90bb-f9da34217e37","name":"Delete Tags","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.vidrovr.com/v2/customdata/tags/:tag_id?project_uid={{project_uid}}","host":["https://api.vidrovr.com"],"path":["v2","customdata","tags",":tag_id"],"query":[{"key":"project_uid","value":"{{project_uid}}"}],"variable":[{"key":"tag_id","value":"641147b8-fcf0-44f1-b826-60db72b14854"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 00:44:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"79"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"custom_tags\",\n        \"id\": \"641147b8-fcf0-44f1-b826-60db72b14854\"\n    }\n}"}],"_postman_id":"c1cf214d-1569-4b8d-84a8-237371065b55"},{"name":"Get Tag Examples","id":"2a655791-5877-41c3-b6be-c108587a1586","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.vidrovr.com/v2/customdata/tags/:tag_id/examples?project_uid=&status=&page_size=&page=","description":"<p>Returns an array of tag examples identifiers, paginated, and filtered by <code>status</code>, which can be one of three values: <code>accepted</code>, <code>rejected</code> or <code>candidate</code>. The first value of <code>page</code> is always <code>0</code></p>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:labels</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","tags",":tag_id","examples"],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""},{"description":{"content":"<p>rejected, accepted or candidate (required)</p>\n","type":"text/plain"},"key":"status","value":""},{"description":{"content":"<p>Size of the page, integer &gt;1</p>\n","type":"text/plain"},"key":"page_size","value":""},{"description":{"content":"<p>Current page, starts at 0</p>\n","type":"text/plain"},"key":"page","value":""}],"variable":[{"description":{"content":"<p>Tag Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"tag_id"}]}},"response":[{"id":"7154eb6d-78b6-40fb-9505-78d20d6a802f","name":"Get Tag Candidate Examples","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.vidrovr.com/v2/customdata/tags/:tag_id/examples?project_uid={{project_uid}}&status=candidate&page_size=20&page=0","host":["https://api.vidrovr.com"],"path":["v2","customdata","tags",":tag_id","examples"],"query":[{"key":"project_uid","value":"{{project_uid}}"},{"key":"status","value":"candidate"},{"key":"page_size","value":"20"},{"key":"page","value":"0"}],"variable":[{"key":"tag_id","value":"2cf1bccc-bcb7-40eb-af75-ccba8e46ba3f"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 00:44:36 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"970"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"221d7ff1-62e9-43a2-924f-5cfacb12d08e\"\n        },\n        {\n            \"id\": \"a1c2b83c-c8e1-41d8-95a9-b327a2a96e5e\"\n        },\n        {\n            \"id\": \"7d849901-87be-4050-b555-e23e23d65e15\"\n        },\n        {\n            \"id\": \"b4b9db81-4217-4df2-986a-f2080c4d9bc6\"\n        },\n        {\n            \"id\": \"5b97ded2-88c1-4a60-bc5c-923fe54040b6\"\n        },\n        {\n            \"id\": \"9ca8c726-2552-4e45-86e6-c9a1557c36d4\"\n        },\n        {\n            \"id\": \"7db070c4-85bb-494f-bd8c-68fac9436708\"\n        },\n        {\n            \"id\": \"4ed1928e-a07b-4ebd-a44d-1c36cc10358f\"\n        },\n        {\n            \"id\": \"5dc07350-035f-4090-b7cd-8e05f4326786\"\n        },\n        {\n            \"id\": \"3576a07d-4cc2-4ccf-95b5-1560dfb0d7d7\"\n        },\n        {\n            \"id\": \"9d71cce2-edf6-4f2f-a440-22c63e5b0cab\"\n        },\n        {\n            \"id\": \"2d7fa56d-02b4-4a97-8c3b-41a57c102c1d\"\n        },\n        {\n            \"id\": \"7f3224c5-895b-49b6-b5bf-59949f574b39\"\n        },\n        {\n            \"id\": \"841baf4e-f8ab-41bf-9fa4-194f9b91ad39\"\n        },\n        {\n            \"id\": \"b62b6554-c9ca-4371-863b-67753d270f3c\"\n        },\n        {\n            \"id\": \"06149627-d77c-42fb-a2f8-dcdaad6cb94f\"\n        },\n        {\n            \"id\": \"3f74fa1f-6cea-4e0f-b9de-a2ddfd4a24c4\"\n        },\n        {\n            \"id\": \"f1c1f2af-467e-4abf-b99c-c9810448465a\"\n        },\n        {\n            \"id\": \"ad9b1b77-6a45-4ce2-903f-476487eb6367\"\n        },\n        {\n            \"id\": \"fee3d356-5529-4aef-8706-68f6ff5f8c70\"\n        }\n    ]\n}"},{"id":"5f064b34-c677-4873-9ef3-7c9a483acf2a","name":"Get Tag Accepted Examples","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.vidrovr.com/v2/customdata/tags/:tag_id/examples?project_uid={{project_uid}}&status=accepted&page_size=20&page=0","host":["https://api.vidrovr.com"],"path":["v2","customdata","tags",":tag_id","examples"],"query":[{"key":"project_uid","value":"{{project_uid}}"},{"key":"status","value":"accepted"},{"key":"page_size","value":"20"},{"key":"page","value":"0"}],"variable":[{"key":"tag_id","value":"2cf1bccc-bcb7-40eb-af75-ccba8e46ba3f"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 00:45:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"970"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"221d7ff1-62e9-43a2-924f-5cfacb12d08e\"\n        },\n        {\n            \"id\": \"94a18253-4c43-4241-8fb6-b92199e5c27e\"\n        },\n        {\n            \"id\": \"5dc07350-035f-4090-b7cd-8e05f4326786\"\n        },\n        {\n            \"id\": \"9cee150f-4b83-46c7-80b4-d9c5a49e34fb\"\n        },\n        {\n            \"id\": \"b62b6554-c9ca-4371-863b-67753d270f3c\"\n        },\n        {\n            \"id\": \"9162b245-8372-4b01-a412-89a6527194b5\"\n        },\n        {\n            \"id\": \"f1c1f2af-467e-4abf-b99c-c9810448465a\"\n        },\n        {\n            \"id\": \"db5aa998-c7b0-41e8-adbb-35c0517d377e\"\n        },\n        {\n            \"id\": \"7d849901-87be-4050-b555-e23e23d65e15\"\n        },\n        {\n            \"id\": \"841baf4e-f8ab-41bf-9fa4-194f9b91ad39\"\n        },\n        {\n            \"id\": \"2d7fa56d-02b4-4a97-8c3b-41a57c102c1d\"\n        },\n        {\n            \"id\": \"06149627-d77c-42fb-a2f8-dcdaad6cb94f\"\n        },\n        {\n            \"id\": \"3576a07d-4cc2-4ccf-95b5-1560dfb0d7d7\"\n        },\n        {\n            \"id\": \"7db070c4-85bb-494f-bd8c-68fac9436708\"\n        },\n        {\n            \"id\": \"5b97ded2-88c1-4a60-bc5c-923fe54040b6\"\n        },\n        {\n            \"id\": \"9ca8c726-2552-4e45-86e6-c9a1557c36d4\"\n        },\n        {\n            \"id\": \"4ed1928e-a07b-4ebd-a44d-1c36cc10358f\"\n        },\n        {\n            \"id\": \"b4b9db81-4217-4df2-986a-f2080c4d9bc6\"\n        },\n        {\n            \"id\": \"a1c2b83c-c8e1-41d8-95a9-b327a2a96e5e\"\n        },\n        {\n            \"id\": \"fee3d356-5529-4aef-8706-68f6ff5f8c70\"\n        }\n    ]\n}"},{"id":"e79f9776-2152-448d-987d-a015349e8000","name":"Get Tag Rejected Examples","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.vidrovr.com/v2/customdata/tags/:tag_id/examples?project_uid={{project_uid}}&status=rejected&page_size=20&page=0","host":["https://api.vidrovr.com"],"path":["v2","customdata","tags",":tag_id","examples"],"query":[{"key":"project_uid","value":"{{project_uid}}"},{"key":"status","value":"rejected"},{"key":"page_size","value":"20"},{"key":"page","value":"0"}],"variable":[{"key":"tag_id","value":"2cf1bccc-bcb7-40eb-af75-ccba8e46ba3f"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 00:50:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"202"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"9d71cce2-edf6-4f2f-a440-22c63e5b0cab\"\n        },\n        {\n            \"id\": \"ad9b1b77-6a45-4ce2-903f-476487eb6367\"\n        },\n        {\n            \"id\": \"0d4449ad-95c8-462e-a294-f41d19f51c9d\"\n        },\n        {\n            \"id\": \"2b3f7176-7df9-44a7-b2b2-d4e22df1002b\"\n        },\n        {\n            \"id\": \"8c8e7534-d241-4de6-9603-7bf45974cf9a\"\n        }\n    ]\n}"}],"_postman_id":"2a655791-5877-41c3-b6be-c108587a1586"},{"name":"Get Tag Example Details","id":"86aaf2fe-6a19-4ea9-af6b-18806a3c7e5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/customdata/tags/:tag_id/examples/:example_id?project_uid=","description":"<p>Returns an object with information of the given Tag example id</p>\n<ul>\n<li><code>id</code>: Unique identifier of the Tag Example</li>\n<li><code>href</code>: Signed Cloudfront url of the Tag Example image</li>\n<li><code>source</code>: How was this Tag Example obtained, <code>search</code> or <code>user_upload</code></li>\n<li><code>status</code>: <code>accepted</code>, <code>rejected</code> or <code>candidate</code></li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:labels</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","tags",":tag_id","examples",":example_id"],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""}],"variable":[{"description":{"content":"<p>Tag Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"tag_id"},{"description":{"content":"<p>Example Tag Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"example_id"}]}},"response":[{"id":"7a8bcf59-b961-4066-9733-ad3e8d40a16b","name":"Get Tag Example Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/customdata/tags/:tag_id/examples/:example_id?project_uid={{project_uid}}","host":["https://api.vidrovr.com"],"path":["v2","customdata","tags",":tag_id","examples",":example_id"],"query":[{"key":"project_uid","value":"{{project_uid}}"}],"variable":[{"key":"tag_id","value":"2cf1bccc-bcb7-40eb-af75-ccba8e46ba3f"},{"key":"example_id","value":"221d7ff1-62e9-43a2-924f-5cfacb12d08e"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 00:45:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"640"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"23f2f8c2-30d3-4a6d-86a0-e4ee891eb573\",\n        \"href\": \"https://d2h3w6l3tmpkr9.cloudfront.net/054e1ec0-3341-4c20-964c-6f4ce1cb165e/search_result/6623170d-deda-4bc8-b4e9-e08a62cd9eff.jpg?Expires=1679708705&Signature=S78BrMg4kge5XFDyP3-vLq7qkfMfKfFxB213g4~xFtQiReEA2hq6ZzYtorYUJ4fpFj0oR01w7OYINUGu1FR2Me7Xi7r5gY3NE7rMJZnXHi6G7OPU1fUJWJuYHHGMYiArJCbSCepxTsCNhUz-C0jCvN9TpPK-yy3~pZaTmDpvKPxQNtJXM~-Hd1YXdmhm31O2L8YMUfiEoU6iTwiGA43hDJP9g2lnvMIN77MIwDv3KTs74Cg1zBgtamBgXwlv0p3iSLYvU~tVVypyBgc1bwBJK4JyQzHODE~zXJULADLmwDocP65HMvnVR2js9~tTu~8W-IZIg7sDSJ1F0iuSDe0pTg__&Key-Pair-Id=K5S1IJDZBULCD\",\n        \"source\": \"search\",\n        \"status\": \"candidate\"\n    }\n}"}],"_postman_id":"86aaf2fe-6a19-4ea9-af6b-18806a3c7e5f"},{"name":"Change Tag Example Status","id":"dbdbd093-8ee5-4c7a-8036-91578a05c6a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"status\": \"accepted\",\n        \"project_uid\": \"{{project_uid}}\"\n    }\n}"},"url":"https://api.vidrovr.com/v2/customdata/tags/:tag_id/examples/:example_id","description":"<p>Updates the status of the Tag Example, for instance from <code>candidate</code> to <code>accepted</code> or <code>rejected</code></p>\n<blockquote>\n<p><strong>Required user permissions:</strong> update:labels</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","tags",":tag_id","examples",":example_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Tag Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"tag_id"},{"description":{"content":"<p>Example Tag Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"example_id"}]}},"response":[{"id":"0a6e4891-fb2c-4ff4-b46f-63d7c77f5c99","name":"Change Tag Example Status","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"status\": \"accepted\",\n        \"project_uid\": \"74888693-c08a-40c4-becb-6966567b3877\"\n    }\n}"},"url":{"raw":"https://api.vidrovr.com/v2/customdata/tags/:tag_id/examples/:example_id","host":["https://api.vidrovr.com"],"path":["v2","customdata","tags",":tag_id","examples",":example_id"],"variable":[{"key":"tag_id","value":"2cf1bccc-bcb7-40eb-af75-ccba8e46ba3f"},{"key":"example_id","value":"221d7ff1-62e9-43a2-924f-5cfacb12d08e"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 00:53:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"639"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"221d7ff1-62e9-43a2-924f-5cfacb12d08e\",\n        \"href\": \"https://d2h3w6l3tmpkr9.cloudfront.net/74888693-c08a-40c4-becb-6966567b3877/search_result/573f69a2-e5cf-4f1e-ad44-bd6562732538.jpg?Expires=1680100686&Signature=jLgi1UuL3GmLXODLVIDEXLufhg-mq2~3Rh6rWIxN~HADDpk2l3H78xZw0V1IjTu1njgFnb0iR4PtfYJQleym6fu5pHQLl4WH0Ee548x3XRhnmuN4vzGv2vPNv7rLPt6F2DMkg6qslXNsMGhrwRpghQLncGaChs8NLtN7QiYexvnXbCkiOQmjBkz0MmTVZ4I8zh89ewKQ0n1VkAZHNWO~eTQBsE~NAB2IVYsK~Qoo4py9rFV9VV1maAQpWmV8r2rnYPlSVEDvh3579YESz9J6uGDMhL~K2QdtYlA5kN2J9~~6jiNha5ZWXS4ec93T~~LS0ucv0H812-381ayDzVJnag__&Key-Pair-Id=K5S1IJDZBULCD\",\n        \"source\": \"search\",\n        \"status\": \"accepted\"\n    }\n}"}],"_postman_id":"dbdbd093-8ee5-4c7a-8036-91578a05c6a8"},{"name":"Upload Tag Example","id":"cef7997c-f00a-4200-9a5d-e93223349bff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data","type":"default"}],"body":{"mode":"formdata","formdata":[{"key":"file_data","type":"file","description":"<p>File (required)</p>\n","value":null},{"key":"project_uid","value":"","type":"default","description":"<p>Person Id (required)</p>\n"}]},"url":"https://api.vidrovr.com/v2/customdata/tags/:tag_id/examples?project_uid=","description":"<p>Uploads an image as an Example of the given Tag id. Uploaded images' <code>status</code> is immediatly set to <code>accepted</code>, since they are directly provided by the user.</p>\n<p>The <code>Content-Type</code> header <strong>MUST</strong> be set to <code>multipart/form-data</code></p>\n<blockquote>\n<p><strong>Required user permissions</strong>: create:labels</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","tags",":tag_id","examples"],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""}],"variable":[{"description":{"content":"<p>Tag Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"tag_id"}]}},"response":[{"id":"992069fa-6e1e-414e-9ab1-8827dea4a641","name":"Upload Tag Example","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data","type":"default"}],"body":{"mode":"formdata","formdata":[{"key":"file_data","type":"file","value":null},{"key":"project_uid","value":"74888693-c08a-40c4-becb-6966567b3877","type":"default"}]},"url":{"raw":"https://api.vidrovr.com/v2/customdata/tags/:tag_id/examples","host":["https://api.vidrovr.com"],"path":["v2","customdata","tags",":tag_id","examples"],"variable":[{"key":"tag_id","value":"e33ad9e7-1c41-436d-8f37-c02005b76f71"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 00:55:05 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"78"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"4a1d8007-d4e5-4f0d-9952-7121f4dbcdb0\",\n        \"type\": \"label_examples\"\n    }\n}"}],"_postman_id":"cef7997c-f00a-4200-9a5d-e93223349bff"},{"name":"Start Example Web Search","id":"ab5bf47f-faaa-4984-8dd1-ef4656734c62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"search_query\": \"charmander\"\n    }\n}"},"url":"https://api.vidrovr.com/v2/customdata/tags/:tag_id/examples?project_uid=","description":"<p>Triggers a web search for example images using the provided <code>search_query</code>.</p>\n<p>The <code>Content-Type</code> header <strong>MUST</strong> be set to <code>application/json</code></p>\n<blockquote>\n<p><strong>Required user permissions:</strong> create:labels</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","tags",":tag_id","examples"],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""}],"variable":[{"description":{"content":"<p>Tag Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"tag_id"}]}},"response":[{"id":"f999d521-41ce-4300-8e97-d475d28c195e","name":"Start Example Web Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"search_query\": \"bald eagle\"\n    }\n}"},"url":{"raw":"https://api.vidrovr.com/v2/customdata/tags/:tag_id/examples?project_uid={{project_uid}}","host":["https://api.vidrovr.com"],"path":["v2","customdata","tags",":tag_id","examples"],"query":[{"key":"project_uid","value":"{{project_uid}}"}],"variable":[{"key":"tag_id","value":"74888693-c08a-40c4-becb-6966567b3877"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 00:57:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"},{"id":"8237b4cb-5aa2-4740-86af-f754192cade3","name":"Search Exists","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"search_query\": \"bald eagle\"\n    }\n}"},"url":{"raw":"https://api.vidrovr.com/v2/customdata/tags/:tag_id/examples?project_uid={{project_uid}}","host":["https://api.vidrovr.com"],"path":["v2","customdata","tags",":tag_id","examples"],"query":[{"key":"project_uid","value":"{{project_uid}}"}],"variable":[{"key":"tag_id","value":"74888693-c08a-40c4-becb-6966567b3877"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:01:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"121"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": \"409\",\n            \"title\": \"Resource exists.\",\n            \"detail\": \"The resource you tried to create already exists\"\n        }\n    ]\n}"}],"_postman_id":"ab5bf47f-faaa-4984-8dd1-ef4656734c62"},{"name":"Get Classifiers","id":"8c6e6790-4480-4ef6-ae28-0ecefc0b207e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.vidrovr.com/v2/customdata/classifiers/?project_uid=","description":"<p>Returns an array of classifiers trained for a specific project. Includes:</p>\n<ul>\n<li><code>id</code>: identifier unique to each classifier trained. The largest id is the most recently trained.</li>\n<li><code>name</code>: name of the classifier # (null by default)</li>\n<li><code>training_state</code>: is classifier training in progress or finished</li>\n<li><code>is_active</code>: Indicates which classifier is active for the project</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:classifiers</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","classifiers",""],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""}],"variable":[]}},"response":[{"id":"976ae33b-81d6-4d22-b271-83404de0ccde","name":"Get Classifiers","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://api.vidrovr.com/v2/customdata/classifiers/?project_uid={{project_uid}}","host":["https://api.vidrovr.com"],"path":["v2","customdata","classifiers",""],"query":[{"key":"project_uid","value":"{{project_uid}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 00:57:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"486"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"e7c46660-2115-4479-8748-ede76da3400a\",\n            \"name\": null,\n            \"training_state\": \"finished\",\n            \"is_active\": false,\n            \"creation_date\": \"2023-03-22T22:06:58.895345\"\n        },\n        {\n            \"id\": \"474e81c3-1204-46e2-8be3-32645c724466\",\n            \"name\": null,\n            \"training_state\": \"finished\",\n            \"is_active\": true,\n            \"creation_date\": \"2023-03-22T23:12:16.568498\"\n        },\n        {\n            \"id\": \"59d8817e-5794-4159-85d7-752c6ef29326\",\n            \"name\": null,\n            \"training_state\": \"finished\",\n            \"is_active\": false,\n            \"creation_date\": \"2023-03-22T22:43:19.673469\"\n        }\n    ]\n}"}],"_postman_id":"8c6e6790-4480-4ef6-ae28-0ecefc0b207e"},{"name":"Get Classifier Details","id":"a130d182-e004-4376-88bd-956ec1aa0610","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/customdata/classifiers/:classifier_id?project_uid=","description":"<p>Returns information about a specific classifier for a specific tag associated to project including:</p>\n<ul>\n<li><code>id</code>: identifier unique to each classifier trained. The largest id is the most recently trained.</li>\n<li><code>name</code>: name of the classifier # (null by default)</li>\n<li><code>training_state</code>: is classifier training in progress or finished</li>\n<li><code>is_active</code>: Whether the classifier is actively running for the project or not</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:classifiers</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","classifiers",":classifier_id"],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""}],"variable":[{"description":{"content":"<p>Tag Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"classifier_id"}]}},"response":[{"id":"fe95454d-9af9-442f-bc0a-3a6d38ea09ab","name":"Get Classifier Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/customdata/classifiers/:classifier_id?project_uid={{project_uid}}","host":["https://api.vidrovr.com"],"path":["v2","customdata","classifiers",":classifier_id"],"query":[{"key":"project_uid","value":"{{project_uid}}"}],"variable":[{"key":"classifier_id","value":"dc3a7b53-5383-43da-bfa5-b856e74c2a3a"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 00:57:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"166"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"dc3a7b53-5383-43da-bfa5-b856e74c2a3a\",\n        \"name\": null,\n        \"training_state\": \"finished\",\n        \"is_active\": true,\n        \"creation_date\": \"2023-03-28T19:27:21.819689\"\n    }\n}"}],"_postman_id":"a130d182-e004-4376-88bd-956ec1aa0610"},{"name":"Create/Train Classifier","id":"3ae010d7-0d3a-4103-9c62-4dbfbd94c424","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"project_uid\": \"{{project_uid}}\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/customdata/classifiers/","description":"<p>Create and train classifiers for the project. The model will be trained across all custom tags with <code>is_active</code> : true at time of request.</p>\n<blockquote>\n<p><strong>Required user permissions:</strong> create:classifiers</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","classifiers",""],"host":["https://api.vidrovr.com"],"query":[],"variable":[]}},"response":[{"id":"4db2d586-33a8-4ea9-9a7c-5e8891892d59","name":"Not enough accepted examples","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"project_uid\": \"74888693-c08a-40c4-becb-6966567b3877\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/customdata/classifiers/"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 00:58:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"290"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"description\": \"Internal Server Error\",\n    \"status\": 500,\n    \"message\": \"Invalid response type ErrorResponse(status='403', title='Access forbidden.', detail='The model cannot train. Please make sure the model is active and at least 25 examples for each tag have been accepted.') (need HTTPResponse)\"\n}"},{"id":"ef022749-1353-41e3-ae89-5bb38dfaf18f","name":"Create/Train Classifier","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"project_uid\": \"74888693-c08a-40c4-becb-6966567b3877\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/customdata/classifiers/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 00:59:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"645"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"dc3a7b53-5383-43da-bfa5-b856e74c2a3a\",\n            \"name\": null,\n            \"training_state\": \"finished\",\n            \"is_active\": true,\n            \"creation_date\": \"2023-03-28T19:27:21.819689\"\n        },\n        {\n            \"id\": \"b72489d5-7624-4116-a67b-e682cbbc9287\",\n            \"name\": null,\n            \"training_state\": \"training\",\n            \"is_active\": false,\n            \"creation_date\": \"2023-03-29T13:46:45.847826\"\n        }\n    ]\n}"}],"_postman_id":"3ae010d7-0d3a-4103-9c62-4dbfbd94c424"}],"id":"9507c6fa-65bd-4f90-8dcd-f0b50b049782","description":"<p>The <strong>Custom Tags API</strong> allows you to create and manage Custom Whole Image Tags. A <em><strong>Whole Image Tag</strong></em> can be thought of as something present in an image or video. This might be a thing such as a <code>cat</code>, <code>car</code>, or <code>tomato plant</code>. It might also be a scene such as a <code>playground</code>, <code>press conference</code>, or <code>kitchen</code>. Whole Image Tags are useful when you want to know if the Tag is present in an image or frame but you do not need to know the exact location of the Tag.</p>\n","_postman_id":"9507c6fa-65bd-4f90-8dcd-f0b50b049782","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}}},{"name":"Custom Persons","item":[{"name":"Get Persons","id":"c750fda3-d519-4c2f-8b26-5893c2f4d032","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/customdata/persons?project_uid=","description":"<p>Returns an array with the Custom Persons associated to the project uid.</p>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:persons</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","persons"],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""}],"variable":[]}},"response":[{"id":"e6e5177b-1b06-4253-8a6b-3823d397e789","name":"Get Persons","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/customdata/persons?project_uid={{project_uid}}","host":["https://api.vidrovr.com"],"path":["v2","customdata","persons"],"query":[{"key":"project_uid","value":"{{project_uid}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:02:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"236"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"9566f55f-0081-4740-a405-789d34f8f33c\",\n            \"name\": \"Anthony Albanese\"\n        },\n        {\n            \"id\": \"b616881b-e050-4d32-99d5-bb19a987caf0\",\n            \"name\": \"Rishi Sunak\"\n        },\n        {\n            \"id\": \"4b2abf19-620a-45f1-9fc5-e7ec5ff41e5a\",\n            \"name\": \"Macky Sall\"\n        }\n    ]\n}"}],"_postman_id":"c750fda3-d519-4c2f-8b26-5893c2f4d032"},{"name":"Create Person","id":"b93ceba8-6816-47bc-985b-3763e3f42563","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\":{\n        \"name\": \"Kaja Kallas\",\n        \"project_uid\": \"{{project_uid}}\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/customdata/persons","description":"<p>Creates a new person for the given project.</p>\n<blockquote>\n<p><strong>Required user permissions:</strong> create:persons</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","persons"],"host":["https://api.vidrovr.com"],"query":[],"variable":[]}},"response":[{"id":"f1e717d6-0ef6-4eb7-bd66-5e071d1a8447","name":"Create Person","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\":{\n        \"name\": \"Kaja Kallas\",\n        \"project_uid\": \"74888693-c08a-40c4-becb-6966567b3877\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/customdata/persons"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:03:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"82"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"5e59f3af-4dcf-4c06-bd3c-e1d934d5f62a\",\n        \"name\": \"Kaja Kallas\"\n    }\n}"}],"_postman_id":"b93ceba8-6816-47bc-985b-3763e3f42563"},{"name":"Get Person Details","id":"3201cdfd-5038-410f-92c4-fbe7041a2960","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/customdata/persons/:person_id?project_uid=","description":"<p>Return information about a Person including:</p>\n<ul>\n<li><code>id</code>: unique identifier of the Person</li>\n<li><code>name</code>: Given name of the Person</li>\n<li><code>creation_date</code>: UTC date of creation</li>\n<li><code>is_active</code>: Whether the Person should be detected by the Vidrovr system or not</li>\n<li><code>num_examples</code>: Total number of examples for the Person</li>\n<li><code>num_reviewed</code>: Number of User-approved Person examples, a minimum of 10 is required</li>\n<li><code>num_unreviewed</code>: Number of Person examples that need approval from the user</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:persons</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","persons",":person_id"],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""}],"variable":[{"description":{"content":"<p>Person Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"person_id"}]}},"response":[{"id":"cdd8dcac-2105-4a95-9b72-8d3fa87b51bc","name":"Get Person Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/customdata/persons/:person_id?project_uid={{project_uid}}","host":["https://api.vidrovr.com"],"path":["v2","customdata","persons",":person_id"],"query":[{"key":"project_uid","value":"{{project_uid}}"}],"variable":[{"key":"person_id","value":"4b2abf19-620a-45f1-9fc5-e7ec5ff41e5a"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:03:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"228"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"4b2abf19-620a-45f1-9fc5-e7ec5ff41e5a\",\n        \"name\": \"Macky Sall\",\n        \"creation_date\": \"2023-03-28T19:31:51.127589\",\n        \"is_active\": true,\n        \"is_unknown\": false,\n        \"num_examples\": 117,\n        \"num_reviewed\": 11,\n        \"num_unreviewed\": 103\n    }\n}"}],"_postman_id":"3201cdfd-5038-410f-92c4-fbe7041a2960"},{"name":"Delete Person","id":"fe87f20a-dac6-4c86-ae03-216bbc2d4262","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.vidrovr.com/v2/customdata/persons/:person_id?project_uid=","description":"<p>Deletes a Person from the VIdrovr system.</p>\n<blockquote>\n<p><strong>Required user permissions:</strong> delete:persons</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","persons",":person_id"],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""}],"variable":[{"description":{"content":"<p>Person Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"person_id"}]}},"response":[{"id":"65356c3d-636e-4c8e-8be9-c690e5ee017f","name":"Delete Person","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.vidrovr.com/v2/customdata/persons/:person_id?project_uid={{project_uid}}","host":["https://api.vidrovr.com"],"path":["v2","customdata","persons",":person_id"],"query":[{"key":"project_uid","value":"{{project_uid}}"}],"variable":[{"key":"person_id","value":"5f1081b5-06f1-4b7c-9460-c638ef45e690"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:04:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"persons\",\n        \"id\": \"5f1081b5-06f1-4b7c-9460-c638ef45e690\"\n    }\n}"}],"_postman_id":"fe87f20a-dac6-4c86-ae03-216bbc2d4262"},{"name":"Get Person Examples","id":"aed972e2-39f6-46e4-a0b1-36cbc9365d0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.vidrovr.com/v2/customdata/persons/:person_id/examples?project_uid=&status=&page_size=&page=","description":"<p>Returns an array of person examples identifiers, paginated, and filtered by <code>status</code>, which can be one of three values: <code>accepted</code>, <code>rejected</code> or <code>candidate</code>. The first value of <code>page</code> is always <code>0</code></p>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:labels</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","persons",":person_id","examples"],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""},{"description":{"content":"<p>rejected, accepted or candidate (required)</p>\n","type":"text/plain"},"key":"status","value":""},{"description":{"content":"<p>Size of the page, integer &gt;1</p>\n","type":"text/plain"},"key":"page_size","value":""},{"description":{"content":"<p>Current page, starts at 0</p>\n","type":"text/plain"},"key":"page","value":""}],"variable":[{"description":{"content":"<p>Person Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"person_id"}]}},"response":[{"id":"272e4de1-ef98-4cb9-8710-4c80ae7ea57d","name":"Get Person Candidate Examples","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.vidrovr.com/v2/customdata/persons/:person_id/examples?project_uid={{project_uid}}&status=candidate&page_size=20&page=0","host":["https://api.vidrovr.com"],"path":["v2","customdata","persons",":person_id","examples"],"query":[{"key":"project_uid","value":"{{project_uid}}"},{"key":"status","value":"candidate"},{"key":"page_size","value":"20"},{"key":"page","value":"0"}],"variable":[{"key":"person_id","value":"4b2abf19-620a-45f1-9fc5-e7ec5ff41e5a"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:04:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"970"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"3ad4a702-bae1-4da3-aa00-3dcad4d09d65\"\n        },\n        {\n            \"id\": \"a4d12607-27d5-4bdd-a90a-5527489337c3\"\n        },\n        {\n            \"id\": \"cafe9a05-0dfa-46a9-9c05-c4d8d2236420\"\n        },\n        {\n            \"id\": \"aebb1898-1c86-429c-a5e0-04c650acf0ba\"\n        },\n        {\n            \"id\": \"7504a651-9a89-4126-83a0-face770ad35f\"\n        },\n        {\n            \"id\": \"2544f1ec-479b-42cc-bfb5-fe96d59a2de0\"\n        },\n        {\n            \"id\": \"f4e0dbae-66e0-4f72-b54c-62dafea86d7c\"\n        },\n        {\n            \"id\": \"2c94b015-801a-4125-8b0e-64fe4e16f8fb\"\n        },\n        {\n            \"id\": \"bf27c166-6ebe-4636-9184-61b298f86eae\"\n        },\n        {\n            \"id\": \"ccd69e98-b1ef-45b8-9070-e93aff22b121\"\n        },\n        {\n            \"id\": \"6c7a8391-69bb-49ba-9a6d-e7a35b78fa60\"\n        },\n        {\n            \"id\": \"d0c948bf-4f7b-401a-aa33-5e751e1fb1d0\"\n        },\n        {\n            \"id\": \"c38c0dd7-4979-4e5b-be71-dd4d70b838b3\"\n        },\n        {\n            \"id\": \"89979bea-4cb0-4b2f-9abd-2096e5d94803\"\n        },\n        {\n            \"id\": \"1879a322-e3c1-4d93-b6ec-8c11d1da53c6\"\n        },\n        {\n            \"id\": \"f0d31a9d-b96d-4f12-b04b-2676b299591a\"\n        },\n        {\n            \"id\": \"aba6c7e1-be43-4f1f-8493-6193ef1f267d\"\n        },\n        {\n            \"id\": \"be6d521f-5be2-4d49-b324-c1d9da31e5b2\"\n        },\n        {\n            \"id\": \"aa7c9cbd-f48d-47a4-959f-8ec98b1b3155\"\n        },\n        {\n            \"id\": \"bb68a1ec-edad-4663-a246-45b842418676\"\n        }\n    ]\n}"},{"id":"3f873b28-70ac-4677-8927-10f170b400f6","name":"Get Person Accepted Examples","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.vidrovr.com/v2/customdata/persons/:person_id/examples?project_uid={{project_uid}}&status=accepted&page_size=20&page=0","host":["https://api.vidrovr.com"],"path":["v2","customdata","persons",":person_id","examples"],"query":[{"key":"project_uid","value":"{{project_uid}}"},{"key":"status","value":"accepted"},{"key":"page_size","value":"20"},{"key":"page","value":"0"}],"variable":[{"key":"person_id","value":"4b2abf19-620a-45f1-9fc5-e7ec5ff41e5a"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:05:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"490"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"4f23f897-ad4b-419e-a2b4-4b40eb8dc79e\"\n        },\n        {\n            \"id\": \"05d5add6-4ef0-49ed-b8fd-0740bdfb99b3\"\n        },\n        {\n            \"id\": \"750926f5-f711-48cc-a58a-fe04d41a8242\"\n        },\n        {\n            \"id\": \"f67c13e0-2cd4-4dcd-94a7-457713ef6f75\"\n        },\n        {\n            \"id\": \"a106b609-aa27-43e2-a77a-6bd60bb80df6\"\n        },\n        {\n            \"id\": \"663872c3-a408-4fc8-a70c-4b50484d1482\"\n        },\n        {\n            \"id\": \"ff2bde23-741b-4cb0-9dec-47a8548f5e13\"\n        },\n        {\n            \"id\": \"9fb81253-3a1f-4173-9226-ea8fce0ae4d6\"\n        },\n        {\n            \"id\": \"135d0425-29c8-4306-87f8-675b68978f3e\"\n        },\n        {\n            \"id\": \"ca19e46d-6cb6-4953-a2f3-67fdfa9af7aa\"\n        },\n        {\n            \"id\": \"0282e142-aeae-482c-b7cb-f1780401804f\"\n        }\n    ]\n}"},{"id":"ceaa83d1-365d-42ef-92f9-173df1c4cc3f","name":"Get PersonRejected Examples","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.vidrovr.com/v2/customdata/persons/:person_id/examples?project_uid={{project_uid}}&status=rejected&page_size=20&page=0","host":["https://api.vidrovr.com"],"path":["v2","customdata","persons",":person_id","examples"],"query":[{"key":"project_uid","value":"{{project_uid}}"},{"key":"status","value":"rejected"},{"key":"page_size","value":"20"},{"key":"page","value":"0"}],"variable":[{"key":"person_id","value":"4b2abf19-620a-45f1-9fc5-e7ec5ff41e5a"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:05:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"58"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"30d250ed-8d14-48c3-94a6-1d6e5bc81136\"\n        },\n        {\n            \"id\": \"a8d9a3e5-2290-46e0-8178-1c5a4658ab53\"\n        },\n        {\n            \"id\": \"072f5e79-6516-4859-bab8-1110efc8d8bf\"\n        }\n    ]\n}"}],"_postman_id":"aed972e2-39f6-46e4-a0b1-36cbc9365d0c"},{"name":"Get Person Example Details","id":"11c416fb-9d07-4272-8963-8675cf61b477","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/customdata/persons/:person_id/examples/:example_id?project_uid=","description":"<p>Returns an object with information of the given Person example id</p>\n<ul>\n<li><code>id</code>: Unique identifier of the Person Example</li>\n<li><code>href</code>: Signed Cloudfront url of the Person Example image</li>\n<li><code>source</code>: How was this Person Example obtained, <code>search</code> or <code>user_upload</code></li>\n<li><code>status</code>: <code>accepted</code>, <code>rejected</code> or <code>candidate</code></li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:labels</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","persons",":person_id","examples",":example_id"],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""}],"variable":[{"description":{"content":"<p>Person Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"person_id"},{"description":{"content":"<p>Person Example Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"example_id"}]}},"response":[{"id":"453eafee-3dcf-40fd-893c-838aca21aadf","name":"Get Person Example Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/customdata/persons/:person_id/examples/:example_id?project_uid={{project_uid}}","host":["https://api.vidrovr.com"],"path":["v2","customdata","persons",":person_id","examples",":example_id"],"query":[{"key":"project_uid","value":"{{project_uid}}"}],"variable":[{"key":"person_id","value":"4b2abf19-620a-45f1-9fc5-e7ec5ff41e5a"},{"key":"example_id","value":"3ad4a702-bae1-4da3-aa00-3dcad4d09d65"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:06:51 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"673"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"3ad4a702-bae1-4da3-aa00-3dcad4d09d65\",\n        \"href\": \"https://d2h3w6l3tmpkr9.cloudfront.net/2fa7fa7a-845d-451f-b5f5-b93f2cbb2e8e/faces/4b2abf19-620a-45f1-9fc5-e7ec5ff41e5a/aligned/3ad4a702-bae1-4da3-aa00-3dcad4d09d65.png?Expires=1680037493&Signature=XsDZpUUijbvHemBv93D3rqy17JGLVz-JpN2QlaoGaLZazWG6tLSZdviP42XZXDjtiYXTLsS9ZinP~Z82e4sN3mn3lmqJnq6cQWwfuY2M54xinKSiomw7BKAUpHSTJdfn8E0o3r702g4JLHmZ0kCj8kkN3kxX~HSdSqogvBwS8YuZRiTZkSQZpjHm2wQ0SkzjqdWsOlS04LwSaKQqdfLLNgp57PtpFIycK~bc~Zo7W4zPp3Z3Br3oZRWvFXDw-BjDigmphrre6QINunFwnZI2iOTdYXm-0-7Wl46kOGjAhtyEXR4~QJ7LxQjmGdHvavGM-NBIDPQO1kX3KZ7rS2Fqtw__&Key-Pair-Id=K5S1IJDZBULCD\",\n        \"source\": null,\n        \"status\": \"candidate\"\n    }\n}"}],"_postman_id":"11c416fb-9d07-4272-8963-8675cf61b477"},{"name":"Change Person Example Status","id":"ec1a5129-9f5c-46aa-83c9-78306df8fe34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"status\": \"accepted\",\n        \"project_uid\": \"{{project_uid}}\"\n    }\n}"},"url":"https://api.vidrovr.com/v2/customdata/persons/:person_id/examples/:example_id","description":"<p>Updates the status of the Person Example, for instance from <code>candidate</code> to <code>accepted</code> or <code>rejected</code></p>\n<blockquote>\n<p><strong>Required user permissions:</strong> update:labels</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","persons",":person_id","examples",":example_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>Person Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"person_id"},{"description":{"content":"<p>Person Example Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"example_id"}]}},"response":[{"id":"c6b119c1-a9c0-40c1-8516-31101a1a718a","name":"Change Person Example Status","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"status\": \"accepted\",\n        \"project_uid\": \"74888693-c08a-40c4-becb-6966567b3877\"\n    }\n}"},"url":{"raw":"https://api.vidrovr.com/v2/customdata/persons/:person_id/examples/:example_id","host":["https://api.vidrovr.com"],"path":["v2","customdata","persons",":person_id","examples",":example_id"],"variable":[{"key":"person_id","value":"4b2abf19-620a-45f1-9fc5-e7ec5ff41e5a"},{"key":"example_id","value":"3ad4a702-bae1-4da3-aa00-3dcad4d09d65"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:07:38 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"672"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"3ad4a702-bae1-4da3-aa00-3dcad4d09d65\",\n        \"href\": \"https://d2h3w6l3tmpkr9.cloudfront.net/2fa7fa7a-845d-451f-b5f5-b93f2cbb2e8e/faces/4b2abf19-620a-45f1-9fc5-e7ec5ff41e5a/aligned/3ad4a702-bae1-4da3-aa00-3dcad4d09d65.png?Expires=1680037607&Signature=WM7~HHv4Y7vfS21gGlYeYe0N9RZRbJ0HDUTcytEaysAJtSocT2f~C1glDkiSOTC7A2rVjwKlaJkntobXJkJ3pWRgtMN0o2IDDvxGDbJKgUx3xtP-c80VknhGzPSRZPdxkcmFC9h8Dya-S~ncaRdYDbRWBMiC1d5x8bWsgles3rxuIhEza5nhcasAPu0Pz0PoblgcXVo3nvbAzaSW9m1zyAAEhlaBGZb8G2VIe-2naiPzaxR2GEujN9VfBwikKRHNw4D4xlCqtcy8R3Msn~iPlr-pOAA9I4XqWYvGF4kSuqEUqE90gjxW4s9cbd6o-kg4MBnPUO6i2ksTT24Uu2ya4w__&Key-Pair-Id=K5S1IJDZBULCD\",\n        \"source\": null,\n        \"status\": \"accepted\"\n    }\n}"}],"_postman_id":"ec1a5129-9f5c-46aa-83c9-78306df8fe34"},{"name":"Upload Person example","id":"6f1f7256-037e-446e-b349-d870cba85e13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"default"},{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"multipart/form-data","type":"default"}],"body":{"mode":"formdata","formdata":[{"key":"file_data","type":"file","description":"<p>File to upload (required)</p>\n","value":null},{"key":"project_uid","value":"","type":"default","description":"<p>Person Id (required)</p>\n"}]},"url":"https://api.vidrovr.com/v2/customdata/persons/:person_id/examples","description":"<p>Uploads an image as an Example of the given Person id. Uploaded images' <code>status</code> is immediatly set to <code>accepted</code>, since they are directly provided by the user.</p>\n<p>The <code>Content-Type</code> header <strong>MUST</strong> be set to <code>multipart/form-data</code></p>\n<blockquote>\n<p>Required user permissions: create:labels</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","persons",":person_id","examples"],"host":["https://api.vidrovr.com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[{"description":{"content":"<p>Person Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"person_id"}]}},"response":[{"id":"54dba2cd-22d3-4996-b102-9056e6a749a2","name":"Upload Person example","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{token}}","type":"default"},{"warning":"This is a duplicate header and will be overridden by the Content-Type header generated by Postman.","key":"Content-Type","value":"multipart/form-data","type":"default"}],"body":{"mode":"formdata","formdata":[{"key":"file_data","type":"file","src":"/Users/tepexic/Desktop/President_Macky_Sall_in_2020.jpg"},{"key":"project_uid","value":"74888693-c08a-40c4-becb-6966567b3877","type":"default"}]},"url":{"raw":"https://api.vidrovr.com/v2/customdata/persons/:person_id/examples","host":["https://api.vidrovr.com"],"path":["v2","customdata","persons",":person_id","examples"],"query":[{"key":"","value":"","disabled":true}],"variable":[{"key":"person_id","value":"4b2abf19-620a-45f1-9fc5-e7ec5ff41e5a"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:10:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"79"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"c30dd368-0498-4e3c-a949-0bf239c7c9e5\",\n        \"type\": \"person_examples\"\n    }\n}"}],"_postman_id":"6f1f7256-037e-446e-b349-d870cba85e13"},{"name":"Start Examples Web Search","id":"e4c8df9c-cf2f-455e-9a8c-bbae98f5a397","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"search_query\": \"Britney Spears\"\n    }\n}"},"url":"https://api.vidrovr.com/v2/customdata/persons/:person_id/examples?project_uid=","description":"<p>Triggers a web search for images using the provided <code>search_query</code>.</p>\n<p><code>Content-Type</code> header <strong>MUST</strong> be set to <code>application/json</code></p>\n<blockquote>\n<p><strong>Required user permissions:</strong> update:labels</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","customdata","persons",":person_id","examples"],"host":["https://api.vidrovr.com"],"query":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"key":"project_uid","value":""}],"variable":[{"description":{"content":"<p>Person Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"person_id"}]}},"response":[{"id":"c17d170c-d047-43d3-ace0-6eba2e15e404","name":"Start Examples Web Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"search_query\": \"Macky Sall\"\n    }\n}"},"url":{"raw":"https://api.vidrovr.com/v2/customdata/persons/:person_id/examples?project_uid={{project_uid}}","host":["https://api.vidrovr.com"],"path":["v2","customdata","persons",":person_id","examples"],"query":[{"key":"project_uid","value":"{{project_uid}}"}],"variable":[{"key":"person_id","value":"4b2abf19-620a-45f1-9fc5-e7ec5ff41e5a"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:11:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"},{"id":"00e3bd74-d22c-40ac-be67-516cb9f24601","name":"Search Exists","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"search_query\": \"Macky Sall\"\n    }\n}"},"url":{"raw":"https://api.vidrovr.com/v2/customdata/persons/:person_id/examples?project_uid={{project_uid}}","host":["https://api.vidrovr.com"],"path":["v2","customdata","persons",":person_id","examples"],"query":[{"key":"project_uid","value":"{{project_uid}}"}],"variable":[{"key":"person_id","value":"4b2abf19-620a-45f1-9fc5-e7ec5ff41e5a"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:11:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"121"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": \"409\",\n            \"title\": \"Resource exists.\",\n            \"detail\": \"The resource you tried to create already exists\"\n        }\n    ]\n}"}],"_postman_id":"e4c8df9c-cf2f-455e-9a8c-bbae98f5a397"}],"id":"32f173f3-fae2-4e28-b918-f436e03adc3e","description":"<p>The <strong>Custom Persons API</strong> allows you to create and manage Custom People. Vidrovr identifies a large number of famous persons in media by default but we recognize you may have other people important to your use case. To have these people tracked by the Vidrovr system as well, please add them as custom people.</p>\n","_postman_id":"32f173f3-fae2-4e28-b918-f436e03adc3e","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}}},{"name":"Settings","item":[{"name":"Set Languages","id":"da44e06d-707b-4660-a90b-d379d52e8e49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"output\": \"en\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/settings/processing/:project_uid/languages","description":"<p>Update the language settings of a specific Project. Language settings include: <code>audio_input</code>, <code>on_screen_input</code>, and <code>output</code>. The format for each must be as follows:</p>\n<ul>\n<li><code>audio_input</code> : en-US # (ISO language code-ISO region code)</li>\n<li><code>on_screen_input</code> : en # (ISO language code)</li>\n<li><code>output</code> : en # (ISO language code)</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> update:settings</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","settings","processing",":project_uid","languages"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"project_uid"}]}},"response":[{"id":"3c858591-ce40-4cfc-9f79-0ba207dcaba5","name":"Set All Languages","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"audio_input\": \"es-XX\",\n        \"on_screen_input\": \"es\",\n        \"output\": \"en\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.vidrovr.com/v2/settings/processing/:project_uid/languages","host":["https://api.vidrovr.com"],"path":["v2","settings","processing",":project_uid","languages"],"variable":[{"key":"project_uid","value":"{{project_uid}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:31:30 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"audio_input\": \"es-XX\",\n        \"on_screen_input\": \"es\",\n        \"output\": \"en\"\n    }\n}"},{"id":"db02563b-0dc9-4810-b2f9-bdd6857cdda3","name":"Error Setting Language","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"audio_input\": \"en-XX\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.vidrovr.com/v2/settings/processing/:project_uid/languages","host":["https://api.vidrovr.com"],"path":["v2","settings","processing",":project_uid","languages"],"variable":[{"key":"project_uid","value":"{{project_uid}}"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:32:02 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"122"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": \"400\",\n            \"title\": \"Bad request.\",\n            \"detail\": \"Region code XX, is not in the acceptable list ['US']\"\n        }\n    ]\n}"},{"id":"ff0375e8-8f8b-4475-a87a-dcc642bb77e9","name":"Set Audio Input Language","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"audio_input\": \"en-US\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.vidrovr.com/v2/settings/processing/:project_uid/languages","host":["https://api.vidrovr.com"],"path":["v2","settings","processing",":project_uid","languages"],"variable":[{"key":"project_uid","value":"{{project_uid}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:32:20 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"audio_input\": \"en-US\",\n        \"on_screen_input\": \"es\",\n        \"output\": \"en\"\n    }\n}"},{"id":"9486353a-1a70-48eb-9570-0fa92d45f072","name":"Set On Screen Input Language","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"on_screen_input\": \"en\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.vidrovr.com/v2/settings/processing/:project_uid/languages","host":["https://api.vidrovr.com"],"path":["v2","settings","processing",":project_uid","languages"],"variable":[{"key":"project_uid","value":"{{project_uid}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:32:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"audio_input\": \"en-US\",\n        \"on_screen_input\": \"en\",\n        \"output\": \"en\"\n    }\n}"},{"id":"a2db1502-dcbb-4eab-ad7f-cee3068742a4","name":"Set Output Language","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"output\": \"en\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.vidrovr.com/v2/settings/processing/:project_uid/languages","host":["https://api.vidrovr.com"],"path":["v2","settings","processing",":project_uid","languages"],"variable":[{"key":"project_uid","value":"{{project_uid}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:33:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"audio_input\": \"en-US\",\n        \"on_screen_input\": \"en\",\n        \"output\": \"en\"\n    }\n}"}],"_postman_id":"da44e06d-707b-4660-a90b-d379d52e8e49"},{"name":"Get Languages","id":"872c7e70-995d-436d-a243-788a85ef9bc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/settings/processing/:project_uid/languages","description":"<p>See the language settings for a specific Project, including:</p>\n<ul>\n<li><code>audio_input</code>: the spoken language of the source file</li>\n<li><code>on_screen_input</code>: the language of text written on screen in the source fil</li>\n<li><code>onput</code>: the language of the transcript produced by Vidrovr</li>\n</ul>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:settings</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","settings","processing",":project_uid","languages"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"project_uid"}]}},"response":[{"id":"e54c441f-64a7-4317-ad17-392fba3eea16","name":"Get Languages","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.vidrovr.com/v2/settings/processing/:project_uid/languages","host":["https://api.vidrovr.com"],"path":["v2","settings","processing",":project_uid","languages"],"variable":[{"key":"project_uid","value":"{{project_uid}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:16:32 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"audio_input\": \"es-XX\",\n        \"on_screen_input\": \"es\",\n        \"output\": \"en\"\n    }\n}"}],"_postman_id":"872c7e70-995d-436d-a243-788a85ef9bc0"}],"id":"ed3f9d71-63ed-4734-a61b-0b2e15b98fe3","description":"<p>The <strong>Settings API</strong> allows you to view information about Projects, including:</p>\n<ul>\n<li>The Vidrovr models your Project is subscribed to</li>\n<li>The language settings your Project has</li>\n</ul>\n<p>You may also update the language settings for a Project.</p>\n","_postman_id":"ed3f9d71-63ed-4734-a61b-0b2e15b98fe3","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}}},{"name":"Projects","item":[{"name":"Get Projects","id":"d67d1254-3d21-49f1-88b0-891726511e9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/projects/","description":"<p>Get the list of Projects for a user.</p>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:projects</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","projects",""],"host":["https://api.vidrovr.com"],"query":[],"variable":[]}},"response":[{"id":"2f30ee9d-44c6-4f5e-b042-fed0e832ed33","name":"Get Projects","originalRequest":{"method":"GET","header":[],"url":"https://api.vidrovr.com/v2/projects/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Mar 2023 20:18:53 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"282"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"https://app.staging2.vidrovr.com"},{"key":"access-control-allow-credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"69efa323-1d97-4314-b8f0-ab0170b9a3a2\",\n            \"name\": \"viduser1\"\n        },\n        {\n            \"id\": \"4fb36639-f9da-4c65-9977-b6615e4149d5\",\n            \"name\": \"viduser3\"\n        }\n    ]\n}"}],"_postman_id":"d67d1254-3d21-49f1-88b0-891726511e9d"},{"name":"Create Project","id":"997b4476-04c9-49b8-b301-936e4795da61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"name\": \"Test New Project\",\n        \"user_ids\": []\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/projects/","description":"<p>Create a new Project for a user.</p>\n<blockquote>\n<p><strong>Required user permissions:</strong> create:projects</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","projects",""],"host":["https://api.vidrovr.com"],"query":[],"variable":[]}},"response":[{"id":"38ac86fc-da12-443b-9c10-54bb0d688614","name":"Create Project","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"name\": \"Test New Project\",\n        \"user_ids\": []\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/projects/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:14:15 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"84"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"26478947-0888-494d-bc40-6e8fea131ec6\",\n        \"name\": \"Test New Project\"\n    }\n}"}],"_postman_id":"997b4476-04c9-49b8-b301-936e4795da61"},{"name":"Delete Project","id":"986a612b-bb78-46ac-a013-0f27e9049032","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"{{token}}","type":"default"}],"url":"https://api.vidrovr.com/v2/projects/:project_id","description":"<p>Delete a specific Project.</p>\n<blockquote>\n<p><strong>Required user permissions:</strong> delete:projects</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","projects",":project_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"id":"09231d18-bbb0-4c9b-b003-2544d8b44e8a","description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"project_id"}]}},"response":[{"id":"b67faa49-8d3f-4422-9947-507696c80cea","name":"Delete Project","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"{{token}}","type":"default"}],"url":{"raw":"https://api.vidrovr.com/v2/projects/:project_id","host":["https://api.vidrovr.com"],"path":["v2","projects",":project_id"],"variable":[{"key":"project_id","value":"b51d89a6-aaa8-491b-a769-c553151d9667"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Mar 2023 15:05:11 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"76"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"https://app.staging2.vidrovr.com"},{"key":"access-control-allow-credentials","value":"true"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"projects\",\n        \"id\": \"b51d89a6-aaa8-491b-a769-c553151d9667\"\n    }\n}"}],"_postman_id":"986a612b-bb78-46ac-a013-0f27e9049032"},{"name":"Get Project info","id":"d2818a48-9a4d-4ef8-9130-93299887ed4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/projects/:project_id","description":"<p>See information about a specific Project.</p>\n<blockquote>\n<p><strong>Required user permissions:</strong> read:projects</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","projects",":project_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"id":"74a7763b-3958-486b-8f93-c9fca0058a7b","description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"project_id"}]}},"response":[{"id":"855d9fff-5483-4e8f-ad34-a5fa5f43260e","name":"Get Project info","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.vidrovr.com/v2/projects/:project_id","host":["https://api.vidrovr.com"],"path":["v2","projects",":project_id"],"variable":[{"key":"project_id","value":"054e1ec0-3341-4c20-964c-6f4ce1cb165e"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:14:57 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"132"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"054e1ec0-3341-4c20-964c-6f4ce1cb165e\",\n        \"name\": \"My Project\",\n        \"user_ids\": [\n            \"ba72579b-9405-43fe-b24f-856f2b25aa0a\"\n        ]\n    }\n}"}],"_postman_id":"d2818a48-9a4d-4ef8-9130-93299887ed4b"},{"name":"Update Project info","id":"b5aa3c59-c945-495d-a01e-ba2845814c88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{ \n    \"data\": {\n        \"name\": \"Test New Project Edited\" \n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.vidrovr.com/v2/projects/:project_id","description":"<p>Change the name of a specific Project.</p>\n<blockquote>\n<p><strong>Required user permissions:</strong> update:projects</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}},"urlObject":{"path":["v2","projects",":project_id"],"host":["https://api.vidrovr.com"],"query":[],"variable":[{"id":"dcd7a514-2497-4951-9605-7a853e664205","description":{"content":"<p>User's Project Id (required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"project_id"}]}},"response":[{"id":"a45a511d-8f59-4754-bd14-97eedee33e17","name":"Update Project info","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{ \n    \"data\": {\n        \"name\": \"Test New Project Edited\" \n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.vidrovr.com/v2/projects/:project_id","host":["https://api.vidrovr.com"],"path":["v2","projects",":project_id"],"variable":[{"key":"project_id","value":"26478947-0888-494d-bc40-6e8fea131ec6"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 25 Mar 2023 01:15:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"63"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=15724800; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"name\": \"Test New Project Edited\",\n        \"user_ids\": null\n    }\n}"}],"_postman_id":"b5aa3c59-c945-495d-a01e-ba2845814c88"}],"id":"d5d09298-010f-426e-88af-19a4cae0a68d","description":"<p>The <strong>Project API</strong> allows you to view and manage Projects for a User. Each User may have access to multiple Projects within an Organization.</p>\n<p>With the Projects API, you may see the list of Project associated with a specific User as well as create, update, and delete Projects for that User.</p>\n","_postman_id":"d5d09298-010f-426e-88af-19a4cae0a68d","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]},"isInherited":true,"source":{"_postman_id":"31998f19-5bb3-4095-a93c-51940479bc99","id":"31998f19-5bb3-4095-a93c-51940479bc99","name":"Vidrovr V2 Public","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{api-key}}"}]}},"event":[{"listen":"prerequest","script":{"id":"a3eec93f-423d-49cd-a586-aef5d264375f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"60f885cc-9961-4c49-8d2a-2b44e0e633ce","type":"text/javascript","exec":[""]}}],"variable":[{"key":"base_url","value":"https://api.vidrovr.com","type":"string"},{"key":"project_id","value":"01234567-89ab-cdef-0123-456789abcdef","type":"string"},{"key":"lame_uuid","value":"01234567-89ab-cdef-0123-456789abcdef","type":"string"},{"key":"lame_search_uuid","value":"search67-89ab-cdef-0123-456789abcdef"}]}