{"info":{"_postman_id":"201f0b5a-a68a-4e5c-b283-30169596e1a2","name":"Vodlix Documentation","description":"<html><head></head><body><h1 id=\"introduction\">Introduction</h1>\n<p>Welcome to the Vodlix API documentation. Vodlix is a comprehensive OTT middleware solution designed to deliver a wide range of media services, including TV, Video On Demand (VOD), Catchup, DVR, and interactive services to customers across various networks.</p>\n<p>Our API allows you to create your own branded, white-labeled, multiscreen live and on-demand content streaming OTT and VOD platform like Netflix, Amazon Prime, Disney+, Hotstar.</p>\n<p>This API documentation is your roadmap to successfully integrating and leveraging the Vodlix API. It provides detailed information on crucial aspects such as authentication, error codes, rate limits, and much more. Whether you're embarking on a new integration project or troubleshooting an existing one, this guide is your comprehensive resource for understanding and maximizing the potential of the Vodlix API.</p>\n<p>We look forward to seeing the innovative platforms you'll create with Vodlix!</p>\n<h1 id=\"overview\">Overview</h1>\n<p>The Vodlix API is a powerful tool designed to provide developers with the ability to integrate and interact with the Vodlix platform. This API is built to offer a wide range of functionalities, from managing user accounts and content libraries, to controlling playback and handling subscriptions.</p>\n<p>The API is RESTful, meaning it uses standard HTTP methods like GET, POST, PUT, and DELETE. It returns data in JSON format, making it easy to integrate with a variety of programming languages and platforms.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>In our Vodlix API, we have implemented a cookie-based authentication system to ensure secure user sessions. Upon a user's successful login, a unique session is initiated on the server-side, and a corresponding cookie is dispatched to the client's device.</p>\n<p>This cookie encapsulates a unique session ID, which serves as a persistent identifier for the user throughout their session. Each subsequent request from the client includes this session ID, allowing the server to validate the user's identity by cross-referencing the session ID with the active sessions on the server-side.</p>\n<p>This approach enables us to maintain stateful sessions between the client and the server, ensuring a secure and seamless user experience. It provides a robust mechanism to verify user identity across multiple requests, thereby enhancing the security and integrity of user interactions with our platform.</p>\n<p>For a more detailed explanation and a step-by-step guide on how to log in with the API, please refer to our <a href=\"https://documenter.getpostman.com/view/6478073/2s946ffYtT#authorization\">Authorization Section</a>.</p>\n<h1 id=\"error-codes\">Error Codes</h1>\n<p>The error codes you may encounter will vary depending on the specific API endpoint. However, here are some common HTTP status codes you might come across:</p>\n<ul>\n<li><p><strong>200 OK</strong>: The request was successful.</p>\n</li>\n<li><p><strong>400 Bad Request</strong>: The server could not understand the request due to invalid syntax.</p>\n</li>\n<li><p><strong>401 Unauthorized</strong>: The request requires user authentication.</p>\n</li>\n<li><p><strong>403 Forbidden</strong>: The server understood the request, but it refuses to authorize it.</p>\n</li>\n<li><p><strong>404 Not Found</strong>: The server can't find the requested resource.</p>\n</li>\n<li><p><strong>500 Internal Server Error</strong>: The server has encountered a situation it doesn't know how to handle.</p>\n</li>\n</ul>\n<h1 id=\"rate-limit\">Rate limit</h1>\n<p>Rate limiting is a technique for limiting network traffic. It sets a limit on how many requests a client can make to an API within a certain time period. The specific limit would depend on the API's policy. If a client exceeds this limit, the server will typically respond with a 429 Too Many Requests HTTP status code.</p>\n<h1 id=\"authorization\">Authorization</h1>\n<p>Our authorization process is based on cookies. When a user logs in, we send back three key pieces of information in the response: <code>phpid</code>, <code>sess_salt</code>, and <code>token</code>. These values are stored in cookies and must be included in subsequent requests to authenticate the user.</p>\n<p>If you're using a cloud setup, the cookies will have a prefix of <code>{cloud_name}</code>. So, for example, if your cloud name is \"mycloud\", the cookies would be named <code>mycloudphpid</code>, <code>mycloudsesssalt</code>, and <code>mycloudtoken</code>.</p>\n<p>If you're not using a cloud setup the cookies will have standard names: <code>phpid, sesssalt, token</code></p>\n<p>To ensure that you're correctly implementing the login process using our API, we've created a step-by-step tutorial video. You can watch it <a href=\"https://youtu.be/riqKaNZ_e5A\">here</a> to learn how to properly use the API for login in Postman.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Introduction","slug":"introduction"},{"content":"Overview","slug":"overview"},{"content":"Authentication","slug":"authentication"},{"content":"Error Codes","slug":"error-codes"},{"content":"Rate limit","slug":"rate-limit"},{"content":"Authorization","slug":"authorization"}],"owner":"6478073","collectionId":"201f0b5a-a68a-4e5c-b283-30169596e1a2","publishedId":"2s946ffYtT","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"e74f51"},"publishDate":"2025-06-16T12:29:23.000Z"},"item":[{"name":"Global Configurations","item":[{"name":"Languages","item":[{"name":"Save Language","id":"66dd0f0d-f9b3-434a-9e64-aaae37853434","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"language_id\" : 4\n}","options":{"raw":{"language":"json"}}},"url":"{{apiBase}}/v2/language","description":"<p>This API endpoint allows you to set a user's preferred language.</p>\n<p>The <code>language_id</code> parameter is used to set the user's preferred language. This ID corresponds to a specific language in the system. When a POST request is made to this endpoint with the <code>language_id</code>, the user's preferred language is updated accordingly. You can retrieve the array of available languages from the 'Get Global Configuration' API call.</p>\n","urlObject":{"path":["v2","language"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"66dd0f0d-f9b3-434a-9e64-aaae37853434"},{"name":"Get Language phrases","id":"17e019d1-1527-4c42-9473-c5cdeaa3c877","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/lang_file?lang_code=is","description":"<p>This API endpoint allows you to retrieve the language phrases for a specific language in JSON format.</p>\n<p>The <code>lang_code</code> query parameter in the URL is used to specify the language code for which you want to retrieve the phrases. For instance, in the above request, <code>is</code> might correspond to the language \"Icelandic\" (this is just an example, the actual correspondence will depend on your system's language settings).</p>\n<p>When you send a GET request to this endpoint with the <code>lang_code</code> parameter, the system will return a JSON object containing all the phrases for the specified language</p>\n","urlObject":{"path":["v2","lang_file"],"host":["{{apiBase}}"],"query":[{"key":"lang_code","value":"is"}],"variable":[]}},"response":[],"_postman_id":"17e019d1-1527-4c42-9473-c5cdeaa3c877"}],"id":"48dedc77-2b50-4549-bc13-148e4e695d4a","description":"<p>This section in our API documentation covers the necessary endpoints for managing language settings. It includes details on how to save language preferences and retrieve language phrases, providing essential tools for creating a multilingual user experience.</p>\n","_postman_id":"48dedc77-2b50-4549-bc13-148e4e695d4a"},{"name":"Get Configurations","id":"5b05700e-d731-4a24-906e-fec25a6a6e39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{apiBase}}/base/configs","description":"<h1 id=\"get-base-configurations\">Get Base Configurations</h1>\n<p>This API endpoint allows you to retrieve basic configurations for the platform. It provides essential settings and configurations that can be utilized to customize and enhance the user experience.</p>\n<p><strong>Example Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"status\": 200,\n    \"message\": \"Success\",\n    \"configs\": {...},\n    \"time\": \"0.579 s\"\n}\n\n</code></pre>\n","urlObject":{"path":["base","configs"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5b05700e-d731-4a24-906e-fec25a6a6e39"}],"id":"7e845c61-27cd-488b-9167-120045cd775d","description":"<p>This section of our API documentation provides detailed information about the system-wide settings of the platform. It's an essential guide for understanding how to use our API to manage and customize various aspects of the platform on a global scale.</p>\n","_postman_id":"7e845c61-27cd-488b-9167-120045cd775d"},{"name":"Content","item":[{"name":"Movies / Videos","item":[{"name":"List","id":"c40a45c3-4d39-4ef3-bb35-705f10018f59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/videos/list/","urlObject":{"path":["videos","list",""],"host":["{{apiBase}}"],"query":[{"disabled":true,"key":"page","value":"1"},{"disabled":true,"key":"paginate","value":"1"},{"disabled":true,"key":"maturity_level","value":"all"},{"disabled":true,"key":"continue_watch","value":"1"},{"disabled":true,"key":"limit","value":"25"},{"disabled":true,"key":"trending","value":"1"},{"disabled":true,"key":"recent","value":"1"},{"disabled":true,"key":"live","value":"1"},{"disabled":true,"key":"live_status","value":"1"},{"disabled":true,"key":"only_vr","value":"true"},{"disabled":true,"key":"only_non_vr","value":"true"},{"disabled":true,"key":"year","value":"2017"},{"disabled":true,"key":"category","value":"1"},{"disabled":true,"key":"orderby","value":"published_date"},{"disabled":true,"key":"orderby_sequence","value":"ASC"}],"variable":[]}},"response":[{"id":"a00168ab-7938-4275-bddf-cb5354b74598","name":"List of videos","originalRequest":{"method":"GET","header":[{"key":"X-Cookie","value":"phpid=5qbcui0pb5bhlg8iu67s3p4q8d;sess_salt=096716bc","type":"text","disabled":true}],"url":{"raw":"{{apiBase}}/videos/list/","host":["{{apiBase}}"],"path":["videos","list",""],"query":[{"key":"page","value":"1","disabled":true},{"key":"paginate","value":"1","disabled":true},{"key":"maturity_level","value":"all","disabled":true},{"key":"continue_watch","value":"1","disabled":true},{"key":"limit","value":"25","disabled":true},{"key":"trending","value":"1","disabled":true},{"key":"recent","value":"1","disabled":true},{"key":"live","value":"1","disabled":true},{"key":"only_vr","value":"true","type":"text","disabled":true},{"key":"only_non_vr","value":"true","type":"text","disabled":true},{"key":"year","value":"2017","disabled":true},{"key":"category","value":"1","disabled":true},{"key":"orderby","value":"published_date","disabled":true},{"key":"orderby_sequence","value":"ASC","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Aug 2023 19:17:37 GMT"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"message\": \"Success\",\n    \"videos\": [\n        {\n            \"videoid\": 741,\n            \"videokey\": \"9N223S727X9U\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9320,\n            \"maturity_level\": \"all\",\n            \"title\": \"SWDEEN 8K ULTRA HD VIDEO 60FPS ｜｜ BEAUTY OF EUROPE.webm\",\n            \"file_name\": \"1668104470136689lxt2gthu9\",\n            \"file_type\": 2,\n            \"description\": \"SWDEEN 8K ULTRA HD VIDEO 60FPS ｜｜ BEAUTY OF EUROPE.webm\",\n            \"tags\": \"SWDEEN,ULTRA,VIDEO,60FPS,｜｜,BEAUTY,EUROPE.webm\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": null,\n            \"datecreated\": \"2022-11-10\",\n            \"country\": null,\n            \"blocked_countries\": \"\",\n            \"allowed_countries\": null,\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 29,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 10m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 22474,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240,1080]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": -1,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": null,\n            \"epg_channel_id\": null,\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470136689lxt2gthu9-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470136689lxt2gthu9-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470136689lxt2gthu9-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470136689lxt2gthu9-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470136689lxt2gthu9-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470136689lxt2gthu9-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470136689lxt2gthu9-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470136689lxt2gthu9-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/8f54990e-e855-4b99-8354-34ed5d6eb5f9/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/741\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"621\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/741\",\n            \"shareable\": \"https://demo.vodlix.com/watch/741\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/741\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 10m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 742,\n            \"videokey\": \"7H3NKY3H15MW\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9317,\n            \"maturity_level\": \"all\",\n            \"title\": \"Istanbul, Turkey.webm\",\n            \"file_name\": \"1668104470132ezb61obcxe2\",\n            \"file_type\": 2,\n            \"description\": \"Istanbul, Turkey.webm\",\n            \"tags\": \"Istanbul,Turkey.webm\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": null,\n            \"datecreated\": \"2022-11-10\",\n            \"country\": null,\n            \"blocked_countries\": \"\",\n            \"allowed_countries\": null,\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 17,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 10m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 22430,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240,1080]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": \"$5.00\",\n            \"rental_hours\": 24,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": -1,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": null,\n            \"epg_channel_id\": null,\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470132ezb61obcxe2-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470132ezb61obcxe2-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470132ezb61obcxe2-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470132ezb61obcxe2-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470132ezb61obcxe2-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470132ezb61obcxe2-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470132ezb61obcxe2-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470132ezb61obcxe2-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/d63efd84-3a05-4211-b2f8-04f407f1e754/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/742\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"604\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/742\",\n            \"shareable\": \"https://demo.vodlix.com/watch/742\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/742\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"credits_required_orignal\": 5,\n            \"currency_symbol\": \"$\",\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 10m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 740,\n            \"videokey\": \"X2S7824G2OMW\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9320,\n            \"maturity_level\": \"all\",\n            \"title\": \"DOORBELL  A Pakistani short film  SHOR Films_1080p.mp4\",\n            \"file_name\": \"1668104228129vb7pei2kca5\",\n            \"file_type\": 2,\n            \"description\": \"\",\n            \"tags\": \"y2mate.com,doorbell,pakistani,short,film,shor,films_1080p.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 18,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 7m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 22382,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240,1080]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104228129vb7pei2kca5-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104228129vb7pei2kca5-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104228129vb7pei2kca5-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104228129vb7pei2kca5-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104228129vb7pei2kca5-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104228129vb7pei2kca5-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104228129vb7pei2kca5-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104228129vb7pei2kca5-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/0faac9a4-1567-4fff-95c5-1b79368908c4/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/740\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"479\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/740\",\n            \"shareable\": \"https://demo.vodlix.com/watch/740\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/740\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 7m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 739,\n            \"videokey\": \"OX5MHSUUY86A\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9320,\n            \"maturity_level\": \"all\",\n            \"title\": \"FRUIT CHAT   Award Winning Short Film.mp4\",\n            \"file_name\": \"16681041232987f74uzaja5o9\",\n            \"file_type\": 2,\n            \"description\": \"FRUIT CHAT   Award Winning Short Film.mp4\",\n            \"tags\": \"FRUIT,CHAT,Award,Winning,Short,Film.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": null,\n            \"datecreated\": \"2022-11-10\",\n            \"country\": null,\n            \"blocked_countries\": \"\",\n            \"allowed_countries\": null,\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 25,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 11m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 22340,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240,1080]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": -1,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": null,\n            \"epg_channel_id\": null,\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681041232987f74uzaja5o9-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681041232987f74uzaja5o9-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681041232987f74uzaja5o9-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681041232987f74uzaja5o9-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681041232987f74uzaja5o9-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681041232987f74uzaja5o9-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681041232987f74uzaja5o9-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681041232987f74uzaja5o9-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/fea28ef6-c8f6-47fd-955d-701e77e30a5a/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/739\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"666\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/739\",\n            \"shareable\": \"https://demo.vodlix.com/watch/739\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/739\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 11m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 735,\n            \"videokey\": \"5DX522O28U8H\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9319,\n            \"maturity_level\": \"all\",\n            \"title\": \"Monkaa  Animation Short Film for Kids_1080p.mp4\",\n            \"file_name\": \"1668103813302ay593hnab8g2\",\n            \"file_type\": 2,\n            \"description\": \"\",\n            \"tags\": \"y2mate.com,monkaa,animation,short,film,for,kids_1080p.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 12,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 6m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 22294,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240,1080]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103813302ay593hnab8g2-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103813302ay593hnab8g2-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103813302ay593hnab8g2-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103813302ay593hnab8g2-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103813302ay593hnab8g2-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103813302ay593hnab8g2-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103813302ay593hnab8g2-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103813302ay593hnab8g2-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/44ea87d1-b9ca-45d2-a889-9b17a7c5778c/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/735\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"363\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/735\",\n            \"shareable\": \"https://demo.vodlix.com/watch/735\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/735\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 6m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 736,\n            \"videokey\": \"5DX522O28U8H\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9319,\n            \"maturity_level\": \"all\",\n            \"title\": \" Rouff  Animated short film by Benjamin Brand_1080p.mp4\",\n            \"file_name\": \"1668103813298qycypzqhvjp5\",\n            \"file_type\": 2,\n            \"description\": \"\",\n            \"tags\": \"y2mate.com,rouff,animated,short,film,benjamin,brand_1080p.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 3,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 6m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 22252,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240,1080]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103813298qycypzqhvjp5-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103813298qycypzqhvjp5-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103813298qycypzqhvjp5-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103813298qycypzqhvjp5-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103813298qycypzqhvjp5-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103813298qycypzqhvjp5-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103813298qycypzqhvjp5-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103813298qycypzqhvjp5-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/7f7afb4c-2fc9-4fcc-9c83-c36c683f109f/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/736\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"389\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/736\",\n            \"shareable\": \"https://demo.vodlix.com/watch/736\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/736\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 6m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 734,\n            \"videokey\": \"K2GA4RN2GR6N\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9319,\n            \"maturity_level\": \"all\",\n            \"title\": \"Destiny  Animation Short_1080p.mp4\",\n            \"file_name\": \"1668103457728n41r7khg0ds5\",\n            \"file_type\": 2,\n            \"description\": \"\",\n            \"tags\": \"y2mate.com,destiny,animation,short_1080p.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 5,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 5m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 22206,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240,1080]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103457728n41r7khg0ds5-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103457728n41r7khg0ds5-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103457728n41r7khg0ds5-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103457728n41r7khg0ds5-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103457728n41r7khg0ds5-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103457728n41r7khg0ds5-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103457728n41r7khg0ds5-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668103457728n41r7khg0ds5-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/cd65440a-28a1-4f09-b567-78768078e58f/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/734\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"326\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/734\",\n            \"shareable\": \"https://demo.vodlix.com/watch/734\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/734\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 5m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 733,\n            \"videokey\": \"B52AD9GHRMKR\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9319,\n            \"maturity_level\": \"all\",\n            \"title\": \"EK CHOTI SI DASTAAN.mp4\",\n            \"file_name\": \"16681029850408i42pnaxnhl8\",\n            \"file_type\": 2,\n            \"description\": \"\",\n            \"tags\": \"y2mate.com,choti,dastaan.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 2,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 0s\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 1,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240,1080]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": {\n                \"original\": \"https://demo.cloud.vodlix.com/files/thumbs/processing.jpg\"\n            },\n            \"thumbs\": {\n                \"original\": \"https://demo.cloud.vodlix.com/files/thumbs/processing.jpg\"\n            },\n            \"gif\": null,\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/733\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"0\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/733\",\n            \"shareable\": \"https://demo.vodlix.com/watch/733\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/733\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": {\n                \"original\": \"https://demo.cloud.vodlix.com/files/thumbs/processing.jpg\"\n            },\n            \"interval\": \" 0s\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 728,\n            \"videokey\": \"N8HO3KDK4NWO\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9318,\n            \"maturity_level\": \"all\",\n            \"title\": \" Destiny  Animation Short_1080p.mp4\",\n            \"file_name\": \"166810294819377l08hf4s5c10\",\n            \"file_type\": 2,\n            \"description\": \"\",\n            \"tags\": \"y2mate.com,destiny,animation,short_1080p.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 4,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 5m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 21986,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240,1080]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/166810294819377l08hf4s5c10-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/166810294819377l08hf4s5c10-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/166810294819377l08hf4s5c10-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/166810294819377l08hf4s5c10-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/166810294819377l08hf4s5c10-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/166810294819377l08hf4s5c10-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/166810294819377l08hf4s5c10-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/166810294819377l08hf4s5c10-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/be6a5040-5c6f-41e0-9390-23e271ea8310/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/728\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"326\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/728\",\n            \"shareable\": \"https://demo.vodlix.com/watch/728\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/728\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 5m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 729,\n            \"videokey\": \"63XH16YH1516\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9318,\n            \"maturity_level\": \"all\",\n            \"title\": \"ReMoved_1080p.mp4\",\n            \"file_name\": \"16681029482022t6vudtyy1r6\",\n            \"file_type\": 2,\n            \"description\": \"\",\n            \"tags\": \"y2mate.com,removed_1080p.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 2,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 12m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 22152,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240,1080]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681029482022t6vudtyy1r6-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681029482022t6vudtyy1r6-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681029482022t6vudtyy1r6-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681029482022t6vudtyy1r6-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681029482022t6vudtyy1r6-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681029482022t6vudtyy1r6-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681029482022t6vudtyy1r6-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681029482022t6vudtyy1r6-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/b066a5b4-443b-4ee3-97f7-c474e78222f4/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/729\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"768\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/729\",\n            \"shareable\": \"https://demo.vodlix.com/watch/729\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/729\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 12m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 730,\n            \"videokey\": \"D75N8977G6RX\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9318,\n            \"maturity_level\": \"all\",\n            \"title\": \"re you okay  Award Winning Short Film_1080p.mp4\",\n            \"file_name\": \"16681029481968xsommph3ut2\",\n            \"file_type\": 2,\n            \"description\": \"\",\n            \"tags\": \"y2mate.com,are,you,okay,awardwinning,short,film_1080p.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 3,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 8m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 22110,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240,1080]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681029481968xsommph3ut2-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681029481968xsommph3ut2-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681029481968xsommph3ut2-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681029481968xsommph3ut2-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681029481968xsommph3ut2-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681029481968xsommph3ut2-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681029481968xsommph3ut2-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681029481968xsommph3ut2-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/3d3b2c6c-99fa-4769-b544-afe94bd6f9b7/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/730\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"526\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/730\",\n            \"shareable\": \"https://demo.vodlix.com/watch/730\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/730\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 8m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 731,\n            \"videokey\": \"67WARS1OD8MY\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9315,\n            \"maturity_level\": \"all\",\n            \"title\": \"Silent Film - The Man And The Thief.mp4\",\n            \"file_name\": \"1668102948205wkjv977svlj5\",\n            \"file_type\": 2,\n            \"description\": \"Silent Film - The Man And The Thief.mp4\",\n            \"tags\": \"Silent,Film,The,Man,And,The,Thief.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": null,\n            \"datecreated\": \"2022-11-10\",\n            \"country\": null,\n            \"blocked_countries\": \"\",\n            \"allowed_countries\": null,\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 3,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 5m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 22045,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": -1,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": null,\n            \"epg_channel_id\": null,\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102948205wkjv977svlj5-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102948205wkjv977svlj5-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102948205wkjv977svlj5-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102948205wkjv977svlj5-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102948205wkjv977svlj5-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102948205wkjv977svlj5-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102948205wkjv977svlj5-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102948205wkjv977svlj5-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/b261b431-f020-49a6-8e8e-c973b234714c/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/731\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"300\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/731\",\n            \"shareable\": \"https://demo.vodlix.com/watch/731\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/731\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 5m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 732,\n            \"videokey\": \"72XH9HSR7XS6\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9319,\n            \"maturity_level\": \"all\",\n            \"title\": \"Roadside  Thriller Short Film_1080p.mp4\",\n            \"file_name\": \"1668102948208qihuw25kgl3\",\n            \"file_type\": 2,\n            \"description\": \"\",\n            \"tags\": \"y2mate.com,roadside,thriller,short,film_1080p.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 0,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 4m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 22035,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240,1080]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102948208qihuw25kgl3-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102948208qihuw25kgl3-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102948208qihuw25kgl3-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102948208qihuw25kgl3-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102948208qihuw25kgl3-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102948208qihuw25kgl3-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102948208qihuw25kgl3-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102948208qihuw25kgl3-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/6c946509-c51b-4921-aa27-597e6301c35a/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/732\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"295\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/732\",\n            \"shareable\": \"https://demo.vodlix.com/watch/732\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/732\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 4m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 727,\n            \"videokey\": \"YYMBGYXD4SAB\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9318,\n            \"maturity_level\": \"all\",\n            \"title\": \"Man Is Allergic To Human Touch So.mp4\",\n            \"file_name\": \"1668102064354oavdyg71yb3\",\n            \"file_type\": 2,\n            \"description\": \"Man Is Allergic To Human Touch So.mp4\",\n            \"tags\": \"man,allergic,human,touch,so.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"\",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 2,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 19m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 21896,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240,1080]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102064354oavdyg71yb3-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102064354oavdyg71yb3-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102064354oavdyg71yb3-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102064354oavdyg71yb3-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102064354oavdyg71yb3-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102064354oavdyg71yb3-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102064354oavdyg71yb3-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102064354oavdyg71yb3-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/7d4f38b1-0be9-4c0c-bc54-490fe711c1b3/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/727\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"1194\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/727\",\n            \"shareable\": \"https://demo.vodlix.com/watch/727\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/727\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 19m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 726,\n            \"videokey\": \"WK32NABKX4XB\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9318,\n            \"maturity_level\": \"all\",\n            \"title\": \"Girl Born With A Body Divided Into TWO Sides.mp4\",\n            \"file_name\": \"1668102039684awmfm10f9846\",\n            \"file_type\": 2,\n            \"description\": \"Girl Born With A Body Divided Into TWO Sides.mp4\",\n            \"tags\": \"girl,born,with,body,divided,into,two,sides.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"\",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 2,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 11m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 21853,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240,1080]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102039684awmfm10f9846-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102039684awmfm10f9846-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102039684awmfm10f9846-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102039684awmfm10f9846-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102039684awmfm10f9846-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102039684awmfm10f9846-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102039684awmfm10f9846-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102039684awmfm10f9846-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/0b66cfe3-0f03-4335-b3b3-b31c4a95c354/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/726\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"711\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/726\",\n            \"shareable\": \"https://demo.vodlix.com/watch/726\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/726\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 11m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 725,\n            \"videokey\": \"2MWXA616GHH5\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9317,\n            \"maturity_level\": \"all\",\n            \"title\": \"He is the SON of BIGFOO.mp4\",\n            \"file_name\": \"1668102018731algfyiv5b984\",\n            \"file_type\": 2,\n            \"description\": \"He is the SON of BIGFOO.mp4\",\n            \"tags\": \"son,bigfoo.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 3,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 16m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 21812,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240,1080]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102018731algfyiv5b984-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102018731algfyiv5b984-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102018731algfyiv5b984-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102018731algfyiv5b984-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102018731algfyiv5b984-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102018731algfyiv5b984-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102018731algfyiv5b984-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668102018731algfyiv5b984-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/206df84a-c8fa-4516-84ed-94500609b419/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/725\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"986\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/725\",\n            \"shareable\": \"https://demo.vodlix.com/watch/725\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/725\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 16m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 723,\n            \"videokey\": \"2RS8744S3127\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9317,\n            \"maturity_level\": \"all\",\n            \"title\": \"60 Year Old Woman Has Plastic Surgery And Transforms Into A Teenager.mp4\",\n            \"file_name\": \"16681014437372md6fal8xvy5\",\n            \"file_type\": 2,\n            \"description\": \"60 Year Old Woman Has Plastic Surgery And Transforms Into A Teenager.mp4\",\n            \"tags\": \"year,old,woman,has,plastic,surgery,and,transforms,into,teenager.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 0,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 6m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 21730,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681014437372md6fal8xvy5-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681014437372md6fal8xvy5-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681014437372md6fal8xvy5-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681014437372md6fal8xvy5-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681014437372md6fal8xvy5-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681014437372md6fal8xvy5-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681014437372md6fal8xvy5-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681014437372md6fal8xvy5-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/7d338c14-2b80-42de-9d21-9abe5041440c/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/723\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"412\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/723\",\n            \"shareable\": \"https://demo.vodlix.com/watch/723\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/723\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 6m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 724,\n            \"videokey\": \"5Y2GD2SU5BRU\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9317,\n            \"maturity_level\": \"all\",\n            \"title\": \"y2mate.com - MAN ON A TRAIN Horror Short_1080p.mp4\",\n            \"file_name\": \"1668101443741v4b1g1z48al6\",\n            \"file_type\": 2,\n            \"description\": \"y2mate.com - MAN ON A TRAIN Horror Short_1080p.mp4\",\n            \"tags\": \"y2mate.com,man,train,horror,short_1080p.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 1,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 4m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 21760,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240,1080]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101443741v4b1g1z48al6-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101443741v4b1g1z48al6-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101443741v4b1g1z48al6-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101443741v4b1g1z48al6-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101443741v4b1g1z48al6-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101443741v4b1g1z48al6-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101443741v4b1g1z48al6-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101443741v4b1g1z48al6-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/8004bb23-e43d-45dd-93ab-45f12cc144e2/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/724\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"260\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/724\",\n            \"shareable\": \"https://demo.vodlix.com/watch/724\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/724\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 4m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 720,\n            \"videokey\": \"SN4W5XH4Y3Y7\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9316,\n            \"maturity_level\": \"all\",\n            \"title\": \"APARTMENT 41 - Horror Short Film.mp4\",\n            \"file_name\": \"1668101298486qpqdpt0ypl6\",\n            \"file_type\": 2,\n            \"description\": \"APARTMENT 41 - Horror Short Film.mp4\",\n            \"tags\": \"apartment,horror,short,film.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 1,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 6m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 21595,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101298486qpqdpt0ypl6-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101298486qpqdpt0ypl6-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101298486qpqdpt0ypl6-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101298486qpqdpt0ypl6-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101298486qpqdpt0ypl6-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101298486qpqdpt0ypl6-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101298486qpqdpt0ypl6-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101298486qpqdpt0ypl6-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/8c8d46af-b263-48a3-8d8f-1dc7d0fc00d1/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/720\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"398\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/720\",\n            \"shareable\": \"https://demo.vodlix.com/watch/720\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/720\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 6m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 721,\n            \"videokey\": \"1H9DS83UWDK9\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9317,\n            \"maturity_level\": \"all\",\n            \"title\": \"DON’T PEEK -  Horror\",\n            \"file_name\": \"16681012984921jng70ckbpsh7\",\n            \"file_type\": 2,\n            \"description\": \"\",\n            \"tags\": \"don&#8217;t,peek,horror,short.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 0,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 6m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 21635,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681012984921jng70ckbpsh7-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681012984921jng70ckbpsh7-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681012984921jng70ckbpsh7-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681012984921jng70ckbpsh7-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681012984921jng70ckbpsh7-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681012984921jng70ckbpsh7-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681012984921jng70ckbpsh7-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681012984921jng70ckbpsh7-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/02526e65-f5bb-4a1d-a122-435d4b0d3b8f/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/721\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"407\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/721\",\n            \"shareable\": \"https://demo.vodlix.com/watch/721\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/721\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 6m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 722,\n            \"videokey\": \"3NYKDRM5O82O\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9317,\n            \"maturity_level\": \"all\",\n            \"title\": \"I Heard It Too - Award Winning Short Horror.mp4\",\n            \"file_name\": \"1668101298489m4xme8fim3s4\",\n            \"file_type\": 2,\n            \"description\": \"I Heard It Too - Award Winning Short Horror.mp4\",\n            \"tags\": \"heard,too,award,winning,short,horror.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 0,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 7m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 21668,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101298489m4xme8fim3s4-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101298489m4xme8fim3s4-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101298489m4xme8fim3s4-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101298489m4xme8fim3s4-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101298489m4xme8fim3s4-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101298489m4xme8fim3s4-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101298489m4xme8fim3s4-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101298489m4xme8fim3s4-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/dd8f0227-8856-42c2-ad48-32df6562090d/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/722\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"452\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/722\",\n            \"shareable\": \"https://demo.vodlix.com/watch/722\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/722\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 7m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 719,\n            \"videokey\": \"43G11H81UMO5\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9316,\n            \"maturity_level\": \"all\",\n            \"title\": \"DON’T PEEK -  Horror Short.mp4\",\n            \"file_name\": \"1668101226261qc343rucxel7\",\n            \"file_type\": 2,\n            \"description\": \"DON’T PEEK -  Horror Short.mp4\",\n            \"tags\": \"don’t,peek,horror,short.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 3,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 6m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 21520,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101226261qc343rucxel7-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101226261qc343rucxel7-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101226261qc343rucxel7-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101226261qc343rucxel7-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101226261qc343rucxel7-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101226261qc343rucxel7-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101226261qc343rucxel7-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668101226261qc343rucxel7-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/c1a767d7-70cc-4104-84f9-53cb3cf48211/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/719\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"407\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/719\",\n            \"shareable\": \"https://demo.vodlix.com/watch/719\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/719\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 6m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 718,\n            \"videokey\": \"U6D4H5KH58YS\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9316,\n            \"maturity_level\": \"all\",\n            \"title\": \"videoplayback.mp4\",\n            \"file_name\": \"1668100654883cydpvczmsrs9\",\n            \"file_type\": 2,\n            \"description\": \"videoplayback.mp4\",\n            \"tags\": \"videoplayback.mp4\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 1,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 14m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 21539,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,240]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.7\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668100654883cydpvczmsrs9-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668100654883cydpvczmsrs9-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668100654883cydpvczmsrs9-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668100654883cydpvczmsrs9-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668100654883cydpvczmsrs9-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668100654883cydpvczmsrs9-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668100654883cydpvczmsrs9-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668100654883cydpvczmsrs9-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/aa70aa55-3a27-4f92-b30e-7ee9b634a946/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/718\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"879\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/718\",\n            \"shareable\": \"https://demo.vodlix.com/watch/718\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/718\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 14m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        },\n        {\n            \"videoid\": 716,\n            \"videokey\": \"3A1MBR6YR94K\",\n            \"video_password\": \"\",\n            \"video_users\": \"\",\n            \"username\": \"\",\n            \"userid\": 9315,\n            \"partner_id\": 9316,\n            \"maturity_level\": \"all\",\n            \"title\": \"Munich, Germany 8K Video Ultra HD 240 FPS in Drone.webm\",\n            \"file_name\": \"16681004518878akqkq273396\",\n            \"file_type\": 2,\n            \"description\": \"Munich, Germany 8K Video Ultra HD 240 FPS in Drone.webm\",\n            \"tags\": \"munich,germany,video,ultra,240,fps,drone.webm\",\n            \"category\": \"#1# \",\n            \"category_parents\": \"\",\n            \"broadcast\": \"public\",\n            \"location\": \"0\",\n            \"datecreated\": \"2022-11-10\",\n            \"country\": \"0\",\n            \"blocked_countries\": \"#0# \",\n            \"allowed_countries\": \"0\",\n            \"sprite_count\": 0,\n            \"season_id\": 0,\n            \"series_id\": 0,\n            \"sequence\": 0,\n            \"allow_embedding\": \"\",\n            \"rating\": 0,\n            \"rated_by\": \"0\",\n            \"voter_ids\": \"\",\n            \"featured\": \"no\",\n            \"featured_order\": null,\n            \"featured_date\": \"0000-00-00 00:00:00\",\n            \"featured_description\": \"\",\n            \"allow_rating\": \"yes\",\n            \"allow_comments\": \"yes\",\n            \"comments_count\": 0,\n            \"last_commented\": null,\n            \"active\": \"yes\",\n            \"favourite_count\": \"0\",\n            \"playlist_count\": \"0\",\n            \"views\": 1,\n            \"last_viewed\": \"0000-00-00 00:00:00\",\n            \"date_added\": \"2022-11-10\",\n            \"flagged\": \"no\",\n            \"duration\": \" 15m\",\n            \"status\": \"Successful\",\n            \"failed_reason\": \"none\",\n            \"default_thumb\": 21937,\n            \"aspect_ratio\": \"\",\n            \"embed_code\": \"\",\n            \"refer_url\": \"\",\n            \"downloads\": 0,\n            \"uploader_ip\": \"182.176.129.86\",\n            \"mass_embed_status\": \"no\",\n            \"unique_embed_code\": \"\",\n            \"remote_play_url\": \"\",\n            \"video_files\": \"[360,480,720,240,1080]\",\n            \"server_ip\": \"\",\n            \"file_server_path\": \"\",\n            \"file_directory\": \"2022/11/10\",\n            \"files_thumbs_path\": \"\",\n            \"file_thumbs_count\": \"\",\n            \"has_hq\": \"no\",\n            \"filegrp_size\": \"\",\n            \"process_status\": 4,\n            \"video_version\": \"2.8\",\n            \"extras\": \"\",\n            \"subscription_email\": \"pending\",\n            \"thumbs_version\": \"3.0\",\n            \"re_conv_status\": \"\",\n            \"conv_progress\": \"\",\n            \"is_premium\": \"no\",\n            \"override_default_monetization\": 0,\n            \"credits_required\": null,\n            \"rental_hours\": 0,\n            \"premium_cid\": 0,\n            \"in_editor_pick\": \"no\",\n            \"has_subs\": \"no\",\n            \"total_subs\": 0,\n            \"last_sub_num\": 0,\n            \"live\": \"\",\n            \"udp_live\": null,\n            \"force_hls_http_url\": null,\n            \"start_published_date\": null,\n            \"end_published_date\": null,\n            \"has_sprite\": \"no\",\n            \"version\": 1,\n            \"has_resulotion\": \"no\",\n            \"aws_service_id\": 0,\n            \"aws_cdn\": \"\",\n            \"aws_thumb_path\": \"\",\n            \"license_by\": \"\",\n            \"is_channeHome\": \"no\",\n            \"super_feature\": 0,\n            \"is_avod\": 1,\n            \"is_tvod\": 0,\n            \"pre_order\": 0,\n            \"live_status\": 0,\n            \"deleted_at\": null,\n            \"content_type\": 1,\n            \"is_360\": 0,\n            \"projection_type\": \"NONE\",\n            \"epg_channel_id\": \"\",\n            \"drm_protected\": \"no\",\n            \"epg_url\": null,\n            \"content_language\": null,\n            \"dvr_url\": null,\n            \"dvr_backup_timezone\": null,\n            \"dvr_backup_duration\": \"0\",\n            \"epg_dvr_catchup_url\": null,\n            \"epg_duration\": null,\n            \"mpaa_rating\": null,\n            \"content_rating_tags\": null,\n            \"free_to_watch\": 0,\n            \"google_dai_assetkey\": null,\n            \"google_dai_cmsid\": null,\n            \"google_dai_videoid\": null,\n            \"is_favourite\": null,\n            \"logo\": null,\n            \"portrait_thumbs\": [],\n            \"thumbs\": {\n                \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681004518878akqkq273396-original-3.jpg\",\n                \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681004518878akqkq273396-168x105-3.jpg\",\n                \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681004518878akqkq273396-416x260-3.jpg\",\n                \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681004518878akqkq273396-632x395-3.jpg\",\n                \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681004518878akqkq273396-768x432-3.jpg\",\n                \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681004518878akqkq273396-1280x720-3.jpg\",\n                \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681004518878akqkq273396-1920x1080-3.jpg\",\n                \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/16681004518878akqkq273396-200x288-3.jpg\"\n            },\n            \"gif\": \"https://vz-366bb08c-460.b-cdn.net/165fa982-bfa2-4844-a6ef-cd9867a5a29d/preview.webp\",\n            \"files\": [\n                \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n            ],\n            \"watch_url\": \"/watch/716\",\n            \"year\": \"2022\",\n            \"duration_in_seconds\": \"913\",\n            \"rate\": 0,\n            \"trailers\": null,\n            \"publish_date\": \"2022-11-10\",\n            \"fav_id\": null,\n            \"is_fav\": null,\n            \"url\": \"/watch/716\",\n            \"shareable\": \"https://demo.vodlix.com/watch/716\",\n            \"copy_url\": \"https://demo.cloud.vodlix.com/movies/716\",\n            \"maturity_level_label\": \"All\",\n            \"categories\": [\n                {\n                    \"category_id\": 1,\n                    \"parent_id\": 0,\n                    \"category_name\": \"Uncategorized\",\n                    \"category_order\": 1,\n                    \"category_desc\": \"\",\n                    \"date_added\": \"2021-09-06 12:22:57\",\n                    \"category_thumb\": \"\",\n                    \"featured\": \"no\",\n                    \"isdefault\": \"yes\",\n                    \"navbar\": \"no\",\n                    \"is_trailer\": 0,\n                    \"meta_title\": null,\n                    \"meta_description\": null,\n                    \"meta_keywords\": null,\n                    \"is_video\": 1,\n                    \"is_series\": 1,\n                    \"is_live\": 1\n                }\n            ],\n            \"logged_in_user\": \"9322\",\n            \"square_thumbs\": [],\n            \"interval\": \" 15m\",\n            \"price_tag\": null,\n            \"show_premium_badge\": false,\n            \"can_pre_order\": false,\n            \"availability_date\": null,\n            \"content_type_label\": \"movie\"\n        }\n    ],\n    \"time\": \"0.425 s\"\n}"},{"id":"3d86fcb3-8317-4336-af22-6713062a3480","name":"Video by Id","originalRequest":{"method":"GET","header":[{"key":"X-Cookie","value":"phpid=5qbcui0pb5bhlg8iu67s3p4q8d;sess_salt=096716bc","type":"text","disabled":true}],"url":{"raw":"{{apiBase}}/videos/list/741","host":["{{apiBase}}"],"path":["videos","list","741"],"query":[{"key":"page","value":"1","disabled":true},{"key":"paginate","value":"1","disabled":true},{"key":"maturity_level","value":"all","disabled":true},{"key":"continue_watch","value":"1","disabled":true},{"key":"limit","value":"25","disabled":true},{"key":"trending","value":"1","disabled":true},{"key":"recent","value":"1","disabled":true},{"key":"live","value":"1","disabled":true},{"key":"only_vr","value":"true","type":"text","disabled":true},{"key":"only_non_vr","value":"true","type":"text","disabled":true},{"key":"year","value":"2017","disabled":true},{"key":"category","value":"1","disabled":true},{"key":"orderby","value":"published_date","disabled":true},{"key":"orderby_sequence","value":"ASC","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Aug 2023 19:18:30 GMT"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"message\": \"Success\",\n    \"videos\": {\n        \"video_by_id\": [\n            {\n                \"videoid\": 741,\n                \"videokey\": \"9N223S727X9U\",\n                \"video_password\": \"\",\n                \"video_users\": \"\",\n                \"username\": \"\",\n                \"userid\": 9315,\n                \"partner_id\": 9320,\n                \"maturity_level\": \"all\",\n                \"title\": \"SWDEEN 8K ULTRA HD VIDEO 60FPS ｜｜ BEAUTY OF EUROPE.webm\",\n                \"file_name\": \"1668104470136689lxt2gthu9\",\n                \"file_type\": 2,\n                \"description\": \"SWDEEN 8K ULTRA HD VIDEO 60FPS ｜｜ BEAUTY OF EUROPE.webm\",\n                \"tags\": \"SWDEEN,ULTRA,VIDEO,60FPS,｜｜,BEAUTY,EUROPE.webm\",\n                \"category\": \"#1# \",\n                \"category_parents\": \"\",\n                \"broadcast\": \"public\",\n                \"location\": null,\n                \"datecreated\": \"2022-11-10\",\n                \"country\": null,\n                \"blocked_countries\": \"\",\n                \"allowed_countries\": null,\n                \"sprite_count\": 0,\n                \"season_id\": 0,\n                \"series_id\": 0,\n                \"sequence\": 0,\n                \"allow_embedding\": \"\",\n                \"rating\": 0,\n                \"rated_by\": \"0\",\n                \"voter_ids\": \"\",\n                \"featured\": \"no\",\n                \"featured_order\": null,\n                \"featured_date\": \"0000-00-00 00:00:00\",\n                \"featured_description\": \"\",\n                \"allow_rating\": \"yes\",\n                \"allow_comments\": \"yes\",\n                \"comments_count\": 0,\n                \"last_commented\": null,\n                \"active\": \"yes\",\n                \"favourite_count\": \"0\",\n                \"playlist_count\": \"0\",\n                \"views\": 29,\n                \"last_viewed\": \"0000-00-00 00:00:00\",\n                \"date_added\": \"2022-11-10\",\n                \"flagged\": \"no\",\n                \"duration\": \" 10m\",\n                \"status\": \"Successful\",\n                \"failed_reason\": \"none\",\n                \"default_thumb\": 22474,\n                \"aspect_ratio\": \"\",\n                \"embed_code\": \"\",\n                \"refer_url\": \"\",\n                \"downloads\": 0,\n                \"uploader_ip\": \"182.176.129.86\",\n                \"mass_embed_status\": \"no\",\n                \"unique_embed_code\": \"\",\n                \"remote_play_url\": \"\",\n                \"video_files\": \"[360,480,720,240,1080]\",\n                \"server_ip\": \"\",\n                \"file_server_path\": \"\",\n                \"file_directory\": \"2022/11/10\",\n                \"files_thumbs_path\": \"\",\n                \"file_thumbs_count\": \"\",\n                \"has_hq\": \"no\",\n                \"filegrp_size\": \"\",\n                \"process_status\": 4,\n                \"video_version\": \"2.8\",\n                \"extras\": \"\",\n                \"subscription_email\": \"pending\",\n                \"thumbs_version\": \"3.0\",\n                \"re_conv_status\": \"\",\n                \"conv_progress\": \"\",\n                \"is_premium\": \"no\",\n                \"override_default_monetization\": 0,\n                \"credits_required\": null,\n                \"rental_hours\": 0,\n                \"premium_cid\": 0,\n                \"in_editor_pick\": \"no\",\n                \"has_subs\": \"no\",\n                \"total_subs\": 0,\n                \"last_sub_num\": 0,\n                \"live\": \"\",\n                \"udp_live\": null,\n                \"force_hls_http_url\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"has_sprite\": \"no\",\n                \"version\": 1,\n                \"has_resulotion\": \"no\",\n                \"aws_service_id\": 0,\n                \"aws_cdn\": \"\",\n                \"aws_thumb_path\": \"\",\n                \"license_by\": \"\",\n                \"is_channeHome\": \"no\",\n                \"super_feature\": 0,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"pre_order\": -1,\n                \"live_status\": 0,\n                \"deleted_at\": null,\n                \"content_type\": 1,\n                \"is_360\": 0,\n                \"projection_type\": null,\n                \"epg_channel_id\": null,\n                \"drm_protected\": \"no\",\n                \"epg_url\": null,\n                \"content_language\": null,\n                \"dvr_url\": null,\n                \"dvr_backup_timezone\": null,\n                \"dvr_backup_duration\": \"0\",\n                \"epg_dvr_catchup_url\": null,\n                \"epg_duration\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": 0,\n                \"google_dai_assetkey\": null,\n                \"google_dai_cmsid\": null,\n                \"google_dai_videoid\": null,\n                \"is_favourite\": null,\n                \"logo\": null,\n                \"portrait_thumbs\": [],\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470136689lxt2gthu9-original-3.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470136689lxt2gthu9-168x105-3.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470136689lxt2gthu9-416x260-3.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470136689lxt2gthu9-632x395-3.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470136689lxt2gthu9-768x432-3.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470136689lxt2gthu9-1280x720-3.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470136689lxt2gthu9-1920x1080-3.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/thumbs/2022/11/10/1668104470136689lxt2gthu9-200x288-3.jpg\"\n                },\n                \"gif\": \"https://vz-366bb08c-460.b-cdn.net/8f54990e-e855-4b99-8354-34ed5d6eb5f9/preview.webp\",\n                \"files\": [\n                    \"https://demo.cloud.vodlix.com/u/demo/files/videos/no_video.mp4\"\n                ],\n                \"watch_url\": \"/watch/741\",\n                \"year\": \"2022\",\n                \"duration_in_seconds\": \"621\",\n                \"rate\": 0,\n                \"trailers\": null,\n                \"publish_date\": \"2022-11-10\",\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"url\": \"/watch/741\",\n                \"shareable\": \"https://demo.vodlix.com/watch/741\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/movies/741\",\n                \"maturity_level_label\": \"All\",\n                \"categories\": [\n                    {\n                        \"category_id\": 1,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Uncategorized\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:22:57\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"yes\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": 1,\n                        \"is_series\": 1,\n                        \"is_live\": 1\n                    }\n                ],\n                \"logged_in_user\": \"9322\",\n                \"square_thumbs\": [],\n                \"interval\": \" 10m\",\n                \"package_id\": null,\n                \"ad\": null,\n                \"video_platform\": null,\n                \"price_tag\": null,\n                \"show_premium_badge\": false,\n                \"can_pre_order\": false,\n                \"availability_date\": null,\n                \"content_type_label\": \"movie\"\n            }\n        ]\n    },\n    \"time\": \"0.106 s\"\n}"}],"_postman_id":"c40a45c3-4d39-4ef3-bb35-705f10018f59"},{"name":"List v2","id":"2d417b82-f6d2-43ed-89b4-623b39ccf265","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/videos/list/?limit=24&page=1","description":"<h2 id=\"overview\">Overview</h2>\n<p>This endpoint retrieves video content from the Vodlix platform. You can get either a single video by providing an ID, or a list of videos with filtering and pagination options.</p>\n<h2 id=\"endpoint-url\">Endpoint URL</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /api/v2/videos/list/[{id}]\n\n</code></pre><h2 id=\"authentication\">Authentication</h2>\n<p>Authentication is optional. If you provide a user token, you'll get access to premium content and personalized results. Without authentication, you'll only see public videos.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<h3 id=\"path-parameters\">Path Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>integer/string</td>\n<td>Video ID to get a specific video, or list of videos with pagination and filters</td>\n<td><code>/api/v2/videos/list/585</code> or <code>/api/v2/videos/list/</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"query-parameters\">Query Parameters</h3>\n<h4 id=\"pagination-and-limits\">Pagination and Limits</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Default</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>limit</code></td>\n<td>integer</td>\n<td>Number of videos to return</td>\n<td>24</td>\n<td><code>?limit=50</code></td>\n</tr>\n<tr>\n<td><code>page</code></td>\n<td>integer</td>\n<td>Page number for pagination</td>\n<td>1</td>\n<td><code>?page=2</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sorting-options\">Sorting Options</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Default</th>\n<th>Available Options</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orderby</code></td>\n<td>string</td>\n<td>Field to sort videos by</td>\n<td>\"date_added\"</td>\n<td>\"date_added\", \"views\", \"title\", \"duration\", \"published_date\"</td>\n</tr>\n<tr>\n<td><code>orderby_sequence</code></td>\n<td>string</td>\n<td>Sort direction</td>\n<td>\"DESC\"</td>\n<td>\"ASC\" (oldest first), \"DESC\" (newest first)</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"content-type-filters\">Content Type Filters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Available Options</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>content_type</code></td>\n<td>integer</td>\n<td>Filter by content type</td>\n<td>1=movie, 2=series, 3=episode, 4=live, 5=trailer</td>\n<td><code>?content_type=1</code></td>\n</tr>\n<tr>\n<td><code>live</code></td>\n<td>boolean</td>\n<td>Show only live streaming content</td>\n<td>true/false</td>\n<td><code>?live=true</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"category-filters\">Category Filters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>category</code></td>\n<td>string</td>\n<td>Multiple category IDs separated by commas</td>\n<td><code>?categories=1,2,3</code></td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td>integer</td>\n<td>Single category ID</td>\n<td><code>?category=1</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"content-attributes\">Content Attributes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>content_language</code></td>\n<td>string</td>\n<td>Filter by language code</td>\n<td><code>?content_language=en</code></td>\n</tr>\n<tr>\n<td><code>year</code></td>\n<td>integer</td>\n<td>Filter by release year</td>\n<td><code>?year=2023</code></td>\n</tr>\n<tr>\n<td><code>maturity_level</code></td>\n<td>string</td>\n<td>Filter by age rating</td>\n<td><code>?maturity_level=pg13</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"user-and-relationship-filters\">User and Relationship Filters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>userid</code></td>\n<td>integer</td>\n<td>Videos uploaded by specific user</td>\n<td><code>?userid=123</code></td>\n</tr>\n<tr>\n<td><code>series_id</code></td>\n<td>integer</td>\n<td>Episodes from specific series</td>\n<td><code>?series_id=45</code></td>\n</tr>\n<tr>\n<td><code>season_id</code></td>\n<td>integer</td>\n<td>Episodes from specific season</td>\n<td><code>?season_id=12</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-format\">Response Format</h2>\n<h3 id=\"single-video-response-when-id-is-provided\">Single Video Response (when ID is provided)</h3>\n<p><strong>HTTP Status:</strong> <code>200 OK</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": 200,\n  \"message\": \"Success\",\n  \"data\": {\n    \"videoid\": 585,\n    \"userid\": 1,\n    \"title\": \"Sample Video 1\",\n    \"file_type\": 2,\n    \"description\": \"ample Video 1\",\n    \"tags\": \"unknown\",\n    \"active\": \"yes\",\n    \"date_added\": \"2025-06-11 14:45:33\",\n    \"duration\": \" 1m\",\n    \"maturity_level\": \"all\",\n    \"views\": 0,\n    \"default_thumb\": \"1\",\n    \"content_type\": 1,\n    \"live\": \"\",\n    \"is_360\": \"0\",\n    \"projection_type\": \"NONE\",\n    \"is_premium\": \"no\",\n    \"start_published_date\": null,\n    \"end_published_date\": null,\n    \"country\": \"PK\",\n    \"datecreated\": \"2025-06-11\",\n    \"blocked_countries\": \"#0# \",\n    \"allowed_countries\": \"#0# \",\n    \"epg_url\": \"\",\n    \"dvr_url\": \"\",\n    \"dvr_backup_timezone\": \"\",\n    \"epg_dvr_catchup_url\": \"\",\n    \"dvr_backup_duration\": 0,\n    \"dvr_thumbnail\": \"\",\n    \"dvr_thumbnail_mp4\": \"\",\n    \"epg_duration\": 0,\n    \"featured\": \"no\",\n    \"featured_order\": null,\n    \"featured_date\": \"0000-00-00 00:00:00\",\n    \"status\": \"Successful\",\n    \"season_id\": 0,\n    \"series_id\": 0,\n    \"sequence\": 0,\n    \"is_avod\": 0,\n    \"is_tvod\": 1,\n    \"override_default_monetization\": 1,\n    \"rental_hours\": 3,\n    \"pre_order\": 1,\n    \"deleted_at\": null,\n    \"flagged\": \"no\",\n    \"partner_id\": null,\n    \"epg_channel_id\": \"\",\n    \"drm_protected\": \"no\",\n    \"credits_required\": \"1\",\n    \"mpaa_rating\": \"\",\n    \"content_rating_tags\": \"\",\n    \"free_to_watch\": \"0\",\n    \"username\": \"admin\",\n    \"live_status\": 0,\n    \"series_name\": null,\n    \"season_selected\": null,\n    \"partner_name\": null,\n    \"original_title\": \"TVOD test video 2025\",\n    \"logo\": \"\",\n    \"portrait_thumbs\": {\n      \"original\": \"https://zain.my.vodlix.com/files/thumbs/processing.jpg\"\n    },\n    \"thumbs\": {\n      \"original\": \"https://zain.my.vodlix.com/files/thumbs/processing.jpg\"\n    },\n    \"gif\": \"\",\n    \"watch_url\": \"/watch/585\",\n    \"year\": \"2025\",\n    \"duration_in_seconds\": \"100\",\n    \"rate\": 0,\n    \"trailers\": {},\n    \"publish_date\": \"2025-06-11\",\n    \"url\": \"/watch/585\",\n    \"shareable\": \"https://zain.my.vodlix.com/watch/585\",\n    \"copy_url\": \"https://zain.my.vodlix.com/movies/585/tvod-test-video-2025\",\n    \"stat_string\": \"content_id=585&amp;content_type=1&amp;content_duration=100&amp;uploader=1&amp;user=0&amp;title=TVOD+test+video+2025&amp;package=avod&amp;utoken=c0eba02aa257b5d04da75f9c939d4dee&amp;is_get=1&amp;phpid=qse2en1ga3eg4t1kcl5d0rp69v\",\n    \"maturity_level_label\": \"All\",\n    \"google_dai_videoid\": 0,\n    \"categories\": [\n      {\n        \"category_id\": 1,\n        \"parent_id\": 0,\n        \"category_name\": \"All Movies\",\n        \"category_desc\": \"\",\n        \"category_thumb\": \"\",\n        \"category_order\": 1\n      }\n    ],\n    \"show_premium_badge\": true\n  },\n  \"time\": \"1.222 s\"\n}\n\n</code></pre>\n<h3 id=\"video-list-response-when-no-id-is-provided\">Video List Response (when no ID is provided)</h3>\n<p><strong>HTTP Status:</strong> <code>200 OK</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": 200,\n  \"message\": \"Success\",\n  \"data\": {\n    \"current_page\": 1,\n    \"results\": [\n      // Array contains video objects with the same structure as single video response\n    ],\n    \"first_page_url\": \"/?page=1\",\n    \"from\": 1,\n    \"last_page\": 6,\n    \"last_page_url\": \"/?page=6\",\n    \"next_page_url\": \"/?page=2\",\n    \"path\": \"/\",\n    \"per_page\": 24,\n    \"prev_page_url\": null,\n    \"to\": 24,\n    \"total\": 132\n  },\n  \"time\": \"0.668 s\"\n}\n\n</code></pre>\n<h2 id=\"response-field-descriptions\">Response Field Descriptions</h2>\n<h3 id=\"video-object-fields\">Video Object Fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>videoid</code></td>\n<td>integer</td>\n<td>Unique identifier for the video</td>\n</tr>\n<tr>\n<td><code>userid</code></td>\n<td>integer</td>\n<td>ID of the user who uploaded the video</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td>string</td>\n<td>Video title</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>string</td>\n<td>Video description</td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td>string</td>\n<td>Video tags separated by commas</td>\n</tr>\n<tr>\n<td><code>active</code></td>\n<td>string</td>\n<td>Video status (\"yes\" or \"no\")</td>\n</tr>\n<tr>\n<td><code>date_added</code></td>\n<td>datetime</td>\n<td>Date when video was uploaded</td>\n</tr>\n<tr>\n<td><code>duration</code></td>\n<td>string</td>\n<td>Human-readable duration (e.g., \"1m 30s\")</td>\n</tr>\n<tr>\n<td><code>duration_in_seconds</code></td>\n<td>string</td>\n<td>Duration in seconds</td>\n</tr>\n<tr>\n<td><code>maturity_level</code></td>\n<td>string</td>\n<td>Content age rating</td>\n</tr>\n<tr>\n<td><code>views</code></td>\n<td>integer</td>\n<td>Number of times video has been viewed</td>\n</tr>\n<tr>\n<td><code>content_type</code></td>\n<td>integer</td>\n<td>Type of content (1=movie, 2=series, 3=episode, 4=live, 5=trailer)</td>\n</tr>\n<tr>\n<td><code>is_premium</code></td>\n<td>string</td>\n<td>Whether video requires subscription (\"yes\" or \"no\")</td>\n</tr>\n<tr>\n<td><code>is_avod</code></td>\n<td>integer</td>\n<td>Ad-supported video flag (0 or 1)</td>\n</tr>\n<tr>\n<td><code>is_tvod</code></td>\n<td>integer</td>\n<td>Pay-per-view video flag (0 or 1)</td>\n</tr>\n<tr>\n<td><code>rental_hours</code></td>\n<td>integer</td>\n<td>Number of hours video can be rented</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td>string</td>\n<td>Country code where video was uploaded</td>\n</tr>\n<tr>\n<td><code>featured</code></td>\n<td>string</td>\n<td>Whether video is featured (\"yes\" or \"no\")</td>\n</tr>\n<tr>\n<td><code>season_id</code></td>\n<td>integer</td>\n<td>Season ID if video is part of a series (0 if not)</td>\n</tr>\n<tr>\n<td><code>series_id</code></td>\n<td>integer</td>\n<td>Series ID if video is part of a series (0 if not)</td>\n</tr>\n<tr>\n<td><code>thumbs</code></td>\n<td>object</td>\n<td>Thumbnail image URLs</td>\n</tr>\n<tr>\n<td><code>portrait_thumbs</code></td>\n<td>object</td>\n<td>Portrait orientation thumbnail URLs</td>\n</tr>\n<tr>\n<td><code>watch_url</code></td>\n<td>string</td>\n<td>Relative URL to watch the video</td>\n</tr>\n<tr>\n<td><code>shareable</code></td>\n<td>string</td>\n<td>Full shareable URL</td>\n</tr>\n<tr>\n<td><code>categories</code></td>\n<td>array</td>\n<td>List of categories the video belongs to</td>\n</tr>\n<tr>\n<td><code>year</code></td>\n<td>string</td>\n<td>Release year</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>string</td>\n<td>Video processing status</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"pagination-fields-for-list-responses\">Pagination Fields (for list responses)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>current_page</code></td>\n<td>integer</td>\n<td>Current page number</td>\n</tr>\n<tr>\n<td><code>results</code></td>\n<td>array</td>\n<td>Array of video objects</td>\n</tr>\n<tr>\n<td><code>total</code></td>\n<td>integer</td>\n<td>Total number of videos available</td>\n</tr>\n<tr>\n<td><code>per_page</code></td>\n<td>integer</td>\n<td>Number of videos per page</td>\n</tr>\n<tr>\n<td><code>last_page</code></td>\n<td>integer</td>\n<td>Last page number</td>\n</tr>\n<tr>\n<td><code>next_page_url</code></td>\n<td>string/null</td>\n<td>URL for next page (null if on last page)</td>\n</tr>\n<tr>\n<td><code>prev_page_url</code></td>\n<td>string/null</td>\n<td>URL for previous page (null if on first page)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"usage-examples\">Usage Examples</h2>\n<h3 id=\"get-a-specific-video\">Get a specific video</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET /api/v2/videos/list/585\n\n</code></pre>\n<h3 id=\"get-videos-with-pagination\">Get videos with pagination</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET /api/v2/videos/list?page=1&amp;limit=24\n\n</code></pre>\n<h3 id=\"get-videos-from-a-category-sorted-by-views\">Get videos from a category, sorted by views</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET /api/v2/videos/list?category=1&amp;\n\n</code></pre>\n<h3 id=\"get-live-streaming-content\">Get live streaming content</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET /api/v2/videos/list?live=true&amp;limit=1000\n\n</code></pre>\n<h3 id=\"get-videos-from-a-specific-user\">Get videos from a specific user</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET /api/v2/videos/list?userid=123&amp;limit=50\n\n</code></pre>\n","urlObject":{"path":["v2","videos","list",""],"host":["{{apiBase}}"],"query":[{"key":"limit","value":"24"},{"key":"page","value":"1"}],"variable":[]}},"response":[],"_postman_id":"2d417b82-f6d2-43ed-89b4-623b39ccf265"},{"name":"My List","id":"2c9576e7-bcf3-43f2-b901-6ced6372b4bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/videos/myList?maturity_level=all&limit=1","urlObject":{"path":["videos","myList"],"host":["{{apiBase}}"],"query":[{"disabled":true,"key":"page","value":"1"},{"disabled":true,"key":"paginate","value":"1"},{"key":"maturity_level","value":"all"},{"key":"limit","value":"1"}],"variable":[]}},"response":[],"_postman_id":"2c9576e7-bcf3-43f2-b901-6ced6372b4bd"},{"name":"My List Combined","id":"6f10241f-2aec-4c54-b6bf-dce33424a352","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"{{apiBase}}/myList?filter=series","urlObject":{"path":["myList"],"host":["{{apiBase}}"],"query":[{"description":{"content":"<p>video / series</p>\n","type":"text/plain"},"key":"filter","value":"series"}],"variable":[]}},"response":[],"_postman_id":"6f10241f-2aec-4c54-b6bf-dce33424a352"},{"name":"Playable","id":"6913f66e-e814-4b24-890d-2d80770b4912","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{apiBase}}/v2/videos/4695/playable","urlObject":{"path":["v2","videos","4695","playable"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6913f66e-e814-4b24-890d-2d80770b4912"},{"name":"Get Video By Id","id":"18e61083-a684-4626-a89b-f077ac6db123","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/videos/list/515","urlObject":{"path":["videos","list","515"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"18e61083-a684-4626-a89b-f077ac6db123"},{"name":"Add New Video","id":"80167398-ac2d-4a0a-b3f9-fc830782ccfd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"Hello World 1\",\n    \"description\": \"Hello World Two Times 1\",\n    \"category\": [\n        1,\n        2,\n        3\n    ],\n    \"tags\": [\n        \"hello\",\n        \"world\",\n        \"tags\"\n    ],\n    \"active\": true,\n    \"maturity_level\": \"all\",\n    \"mpaa_rating\": \"NC-17\",\n    \"content_rating_tags\": [\n        \"nudity\",\n        \"drugs\"\n    ],\n    \"partner_id\": 1,\n    \"allowed_countries\": [\n        \"PK\"\n    ],\n    \"blocked_countries\": [\n        \"GB\",\n        \"US\"\n    ],\n    \"content_language\": \"fa\",\n    \"start_published_date\": \"2023-08-22 12:21:34\",\n    \"is_live\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{apiBase}}/video/add","description":"<p>This API allows you to add a new video with its associated metadata to the database.</p>\n<h2 id=\"body-parameters\">Body Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>title</td>\n<td>string</td>\n<td>The title of the video</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>The description of the video</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>string</td>\n<td>Tags related to the video</td>\n</tr>\n<tr>\n<td>category</td>\n<td>array of integers</td>\n<td>The category IDs of the video</td>\n</tr>\n<tr>\n<td>maturity_level</td>\n<td>string</td>\n<td>The maturity level of the video (\"all\", \"7_plus\", \"13_plus\", \"16_plus\", \"18_plus\")</td>\n</tr>\n<tr>\n<td>mpaa_rating</td>\n<td>string</td>\n<td>The MPAA rating of the video (\"NC-17\", \"R\", \"PG-13\", \"PG\", \"G\")</td>\n</tr>\n<tr>\n<td>content_rating_tags</td>\n<td>string</td>\n<td>Tags related to the content rating (\"nudity\", \"violence\", \"drugs\", \"mature\", \"language\", \"substances\", \"humor\")</td>\n</tr>\n<tr>\n<td>partner_id</td>\n<td>integer</td>\n<td>The partner ID associated with the video</td>\n</tr>\n<tr>\n<td>series_id</td>\n<td>integer</td>\n<td>If you want to mark the video as a series episode</td>\n</tr>\n<tr>\n<td>season_id</td>\n<td>integer</td>\n<td>The season associated with the episode (is required when the series id is not empty)</td>\n</tr>\n<tr>\n<td>content_language</td>\n<td>string</td>\n<td>ISO code for the content's language (e.g., \"en\", \"es\")</td>\n</tr>\n<tr>\n<td>allowed_countries</td>\n<td>array</td>\n<td>List of ISO-2 country codes where the video is allowed (e.g., \"US\", \"GB\", \"PK\")</td>\n</tr>\n<tr>\n<td>blocked_countries</td>\n<td>array</td>\n<td>List of ISO-2 country codes where the video is blocked (e.g., \"US\", \"GB\", \"PK\")</td>\n</tr>\n<tr>\n<td>start_published_date</td>\n<td>datetime</td>\n<td>Date when the content is set to be published</td>\n</tr>\n<tr>\n<td>is_live</td>\n<td>integer</td>\n<td>Optional: If the provided hls url is live stream then set to 1 else 0</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["video","add"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"80167398-ac2d-4a0a-b3f9-fc830782ccfd"},{"name":"Upload with URL","id":"9af6a7d2-27d6-4d4a-8b02-357035cb2fa1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"fileurl","value":"https://vodlix-website.b-cdn.net/videos/big-buck-bunny.mp4","type":"text"},{"key":"storage","value":"public","type":"text"},{"key":"auth","value":"0","type":"text"}]},"url":"{{apiBase}}/trigger/upload","description":"<p>This endpoint facilitates the uploading of video content through a direct URL to the video file.</p>\n<p>Upon submitting a request, the video upload process is initiated in the background. The response includes a unique video ID, which serves as a reference for updating the video's metadata or monitoring the upload status in the Vodlix backend.</p>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<p>To use this endpoint, include the following parameters in the request body:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>fileurl</code></td>\n<td><code>string</code></td>\n<td>The complete URL of the video file, including the hostname.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td><code>storage</code></td>\n<td><code>string</code></td>\n<td>Specifies the storage provider. Options: <code>wasabi</code>, <code>s3</code>, <code>public</code>.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td><code>auth</code></td>\n<td><code>integer</code></td>\n<td>Authorization level required. Use <code>1</code> for Wasabi and S3 storage options.</td>\n<td>Yes (for Wasabi and S3)</td>\n</tr>\n<tr>\n<td><code>access_key</code></td>\n<td><code>string</code></td>\n<td>Your access key for the specified storage provider.</td>\n<td>Yes (for Wasabi and S3)</td>\n</tr>\n<tr>\n<td><code>secret_key</code></td>\n<td><code>string</code></td>\n<td>Your secret key for the specified storage provider.</td>\n<td>Yes (for Wasabi and S3)</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note:</strong> The <code>access_key</code> and <code>secret_key</code> are required when using <code>wasabi</code> or <code>s3</code> as the storage option.</p>\n<h3 id=\"example-request-body\">Example Request Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"file_url\": \"https://example.com/path/to/video.mp4\",\n  \"storage\": \"s3\",\n  \"auth\": 1,\n  \"access_key\": \"yourAccessKeyHere\",\n  \"secret_key\": \"yourSecretKeyHere\"\n}\n\n</code></pre>\n","urlObject":{"path":["trigger","upload"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9af6a7d2-27d6-4d4a-8b02-357035cb2fa1"},{"name":"Update Content Thumbs","id":"edfc9a35-544e-4764-a1a2-93a855346015","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"portrait","value":"https://images.pexels.com/photos/2280547/pexels-photo-2280547.jpeg?auto=compress&cs=tinysrgb&w=800","type":"text"},{"key":"logo","value":"https://images.pexels.com/photos/2280547/pexels-photo-2280547.jpeg?auto=compress&cs=tinysrgb&w=800","type":"text"},{"key":"landscape","value":"https://images.pexels.com/photos/2280547/pexels-photo-2280547.jpeg?auto=compress&cs=tinysrgb&w=800","type":"text"},{"key":"content_id","value":"783","type":"text"},{"key":"content_type","value":"1","type":"text"},{"key":"is_default","value":"1","type":"text","uuid":"3601eb95-5f73-41b3-aae6-bfd0e63755c4"}]},"url":"{{apiBase}}/update/content/thumbs","description":"<h3 id=\"update-content-thumbs\">Update Content Thumbs</h3>\n<p>This endpoint allows the client to update the thumbs for content.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li>Method: POST</li>\n<li>Endpoint: <code>{{apiBase}}/update/content/thumbs</code></li>\n<li>Body: form-data<ul>\n<li><code>portrait</code> (text): The portrait image for the content.</li>\n<li><code>logo</code> (text): The logo image for the content.</li>\n<li><code>landscape</code> (text): The landscape image for the content.</li>\n<li><code>content_id</code> (text): The ID of the content to be updated.</li>\n<li><code>content_type</code> (text): The type of the content.</li>\n<li><code>is_default</code> (boolean): If you want the current landscape thumb to be default.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["update","content","thumbs"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"edfc9a35-544e-4764-a1a2-93a855346015"},{"name":"Update Video","id":"7a369de1-1644-4e1a-ac3e-ab2f6eb9fb0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"Hello World 1\",\n    \"description\": \"Hello World Two Times 1\",\n    \"category\": [\n        1,\n        2,\n        3\n    ],\n    \"tags\": [\n        \"hello\",\n        \"world\",\n        \"tags\"\n    ],\n    \"active\": true,\n    \"maturity_level\": \"all\",\n    \"mpaa_rating\": \"NC-17\",\n    \"content_rating_tags\": [\n        \"nudity\",\n        \"drugs\"\n    ],\n    \"partner_id\": \"1\",\n    \"allowed_countries\": [\n        \"PK\"\n    ],\n    \"blocked_countries\": [\n        \"GB\",\n        \"US\"\n    ],\n    \"content_language\": \"fa\",\n    \"start_published_date\": \"2023-08-22 12:21:34\",\n    \"is_live\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{apiBase}}/video/{videoid}/update","description":"<p>This API allows you to update the metadata for a given video.</p>\n<h2 id=\"path-parameters\">Path Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>videoId</td>\n<td>integer</td>\n<td>The ID of the video you want to update</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"body-parameters\">Body Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>title</td>\n<td>string</td>\n<td>The title of the video</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>The description of the video</td>\n</tr>\n<tr>\n<td>cateogory</td>\n<td>array of category ids</td>\n<td>Category Ids related to video</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>array of strings</td>\n<td>Tags related to the video</td>\n</tr>\n<tr>\n<td>maturity_level</td>\n<td>string</td>\n<td>The maturity level of the video (\"all\", \"7_plus\", \"13_plus\", \"16_plus\", \"18_plus\")</td>\n</tr>\n<tr>\n<td>active</td>\n<td>boolean</td>\n<td>Indicates whether the video is active</td>\n</tr>\n<tr>\n<td>mpaa_rating</td>\n<td>string</td>\n<td>The MPAA rating of the video (\"NC-17\", \"R\", \"PG-13\", \"PG\", \"G\")</td>\n</tr>\n<tr>\n<td>content_rating_tags</td>\n<td>array of strings</td>\n<td>Tags related to the content rating (\"nudity\", \"violence\", \"drugs\", \"mature\", \"language\", \"substances\", \"humor\")</td>\n</tr>\n<tr>\n<td>partner_id</td>\n<td>integer</td>\n<td>The partner ID associated with the video</td>\n</tr>\n<tr>\n<td>series_id</td>\n<td>integer</td>\n<td>If you want to mark the video as a series episode</td>\n</tr>\n<tr>\n<td>season_id</td>\n<td>integer</td>\n<td>Required when the series id is not empty.</td>\n</tr>\n<tr>\n<td>content_language</td>\n<td>string</td>\n<td>ISO code for the content's language (e.g., \"en\", \"es\")</td>\n</tr>\n<tr>\n<td>allowed_countries</td>\n<td>array</td>\n<td>List of ISO-2 country codes where the video is allowed (e.g., \"US\", \"GB\", \"PK\")</td>\n</tr>\n<tr>\n<td>blocked_countries</td>\n<td>array</td>\n<td>List of ISO-2 country codes where the video is blocked (e.g., \"US\", \"GB\", \"PK\")</td>\n</tr>\n<tr>\n<td>start_published_date</td>\n<td>datetime</td>\n<td>Date when the content is set to be published</td>\n</tr>\n<tr>\n<td>hls_url</td>\n<td>string</td>\n<td>Optional: Direct URL for the video, if available</td>\n</tr>\n<tr>\n<td>is_live</td>\n<td>booelan</td>\n<td>Optional: If the provided url is live stream then set to 1 else 0</td>\n</tr>\n<tr>\n<td>chat_enabled</td>\n<td>booelan</td>\n<td>Optional: If you want live chat in player then set to 1 else 0 ( it will only work id Realtime chat plugin is installed )</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["video","{videoid}","update"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7a369de1-1644-4e1a-ac3e-ab2f6eb9fb0f"},{"name":"Get Video Playlist","id":"692aecfb-00d8-4d8a-bfd6-4c2040b202ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/video/playlist/{videoid}","description":"<p>This endpoint is used to retrieve the playlist of the video against videoid to logged in user.</p>\n","urlObject":{"path":["v2","video","playlist","{videoid}"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"692aecfb-00d8-4d8a-bfd6-4c2040b202ac"}],"id":"4a1ddc6b-3aea-49ad-a4cf-267bc0c0aaac","description":"<p>This part of the API is designed to provide access to a wide range of video content available on the platform. It allows you to retrieve detailed information about movies, trailers, and episodes, making it a crucial tool for managing and displaying your video content.</p>\n","_postman_id":"4a1ddc6b-3aea-49ad-a4cf-267bc0c0aaac"},{"name":"TV Shows","item":[{"name":"TV Shows List v2","id":"d5433613-3da5-4d48-b42c-52d4fd6e537b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/series/list/?limit=24&page=1","description":"<h2 id=\"overview\">Overview</h2>\n<p>This endpoint retrieves series content from the Vodlix platform. You can get either a single series by providing an ID, or a list of series with filtering and pagination options.</p>\n<h2 id=\"endpoint-url\">Endpoint URL</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /api/v2/series/list/[{id}]\n\n</code></pre><h2 id=\"authentication\">Authentication</h2>\n<p>Authentication is optional. If you provide a user token, you'll get access to premium content and personalized results. Without authentication, you'll only see public series.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<h3 id=\"path-parameters\">Path Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>integer/string</td>\n<td>Series ID to get a specific series, or list of series with pagination and filters</td>\n<td><code>/api/v2/series/list/585</code> or <code>/api/v2/series/list/</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"query-parameters\">Query Parameters</h3>\n<h4 id=\"pagination-and-limits\">Pagination and Limits</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Default</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>limit</code></td>\n<td>integer</td>\n<td>Number of series to return</td>\n<td>24</td>\n<td><code>?limit=50</code></td>\n</tr>\n<tr>\n<td><code>page</code></td>\n<td>integer</td>\n<td>Page number for pagination</td>\n<td>1</td>\n<td><code>?page=2</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sorting-options\">Sorting Options</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Default</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orderby</code></td>\n<td>string</td>\n<td>Field to sort by (date_added, views, series_name, featured)</td>\n<td>date_added</td>\n<td><code>?orderby=views</code></td>\n</tr>\n<tr>\n<td><code>orderby_sequence</code></td>\n<td>string</td>\n<td>Sort direction (ASC, DESC)</td>\n<td>DESC</td>\n<td><code>?orderby_sequence=ASC</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"category-filters\">Category Filters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>category</code></td>\n<td>string</td>\n<td>Multiple category IDs separated by commas</td>\n<td><code>?categories=1,2,3</code></td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td>integer</td>\n<td>Single category ID</td>\n<td><code>?category=1</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"content-attributes\">Content Attributes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>content_language</code></td>\n<td>string</td>\n<td>Filter by content language</td>\n<td><code>?content_language=en</code></td>\n</tr>\n<tr>\n<td><code>year</code></td>\n<td>integer</td>\n<td>Filter by release year</td>\n<td><code>?year=2023</code></td>\n</tr>\n<tr>\n<td><code>maturity_level</code></td>\n<td>string</td>\n<td>Content maturity level (all, teens, adults)</td>\n<td><code>?maturity_level=teens</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"user--relationship-filters\">User &amp; Relationship Filters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>userid</code></td>\n<td>integer</td>\n<td>Series uploaded by specific user</td>\n<td><code>?userid=123</code></td>\n</tr>\n<tr>\n<td><code>series_id</code></td>\n<td>integer</td>\n<td>Specific series ID</td>\n<td><code>?series_id=45</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"special-filters\">Special Filters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>featured</code></td>\n<td>string</td>\n<td>Show featured content</td>\n<td><code>?featured=yes</code></td>\n</tr>\n<tr>\n<td><code>recent</code></td>\n<td>string</td>\n<td>Show recent content</td>\n<td><code>?recent=yes</code></td>\n</tr>\n<tr>\n<td><code>trending</code></td>\n<td>boolean</td>\n<td>Show trending series (overrides other sorting)</td>\n<td><code>?trending=true</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-format\">Response Format</h2>\n<h3 id=\"single-series-response-with-id\">Single Series Response (with ID)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": 200,\n  \"message\": \"Success\",\n  \"data\": {\n    \"series_id\": 21,\n    \"series_name\": \"Medusa jani\",\n    \"series_description\": \"Somebody wants to kill CEO Bárbara Hidalgo. Can she find the culprit as her family schemes ruthlessly for control of their Colombian business empire?\",\n    \"series_tags\": \"thriller,mistery\",\n    \"maturity_level\": \"all\",\n    \"userid\": 1,\n    \"partner_id\": 24,\n    \"date_added\": \"2025-03-10 21:43:47\",\n    \"featured\": \"no\",\n    \"active\": \"yes\",\n    \"realease_date\": null,\n    \"is_avod\": 1,\n    \"is_tvod\": 0,\n    \"is_svod\": 0,\n    \"credits_required\": \"$0.00\",\n    \"rental_hours\": 0,\n    \"override_default_monetization\": 0,\n    \"start_released_date\": \"2025-03-05\",\n    \"end_released_date\": \"2025-03-05\",\n    \"start_published_date\": \"1970-01-01\",\n    \"end_published_date\": \"1970-01-01\",\n    \"deleted_at\": null,\n    \"season_count\": 1,\n    \"content_language\": null,\n    \"mpaa_rating\": \"\",\n    \"content_rating_tags\": \"\",\n    \"free_to_watch\": \"0\",\n    \"allowed_countries\": [],\n    \"blocked_countries\": [],\n    \"username\": \"admin\",\n    \"logo\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series_logos/2025/03/10/21.png\",\n    \"portrait_thumbs\": {\n      \"original\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-original-portrait.jpg\",\n      \"160x240\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-160x240-portrait.jpg\",\n      \"240x360\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-240x360-portrait.jpg\",\n      \"320x480\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-320x480-portrait.jpg\",\n      \"480x720\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-480x720-portrait.jpg\",\n      \"720x1080\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-720x1080-portrait.jpg\"\n    },\n    \"thumb\": \"https://zain.my.vodlix.com/files/series/no_landscape.png\",\n    \"thumbs\": {\n      \"original\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-original.jpg\",\n      \"168x105\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-168x105.jpg\",\n      \"416x260\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-416x260.jpg\",\n      \"632x395\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-632x395.jpg\",\n      \"768x432\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-768x432.jpg\",\n      \"1280x720\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-1280x720.jpg\",\n      \"1920x1080\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-1920x1080.jpg\",\n      \"200x288\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-200x288.jpg\"\n    },\n    \"categories\": [\n      {\n        \"category_id\": 12,\n        \"parent_id\": 0,\n        \"category_name\": \"Action Series\",\n        \"category_desc\": \"\",\n        \"category_thumb\": \"\",\n        \"category_order\": 1\n      }\n    ],\n    \"shareable\": \"https://zain.my.vodlix.com/tv-shows/21\",\n    \"trailers\": {},\n    \"trailer\": null,\n    \"first_episode_id\": 539,\n    \"first_season_id\": 81,\n    \"year\": \"2025\",\n    \"publish_date\": \"1970-01-01\",\n    \"copy_url\": \"https://zain.my.vodlix.com/tv-shows/21/medusa-jani\",\n    \"credits_required_orignal\": 0,\n    \"currency_symbol\": \"$\",\n    \"content_type_label\": \"series\",\n    \"content_type\": 2,\n    \"maturity_level_label\": \"All\",\n    \"show_premium_badge\": false\n  },\n  \"time\": \"0.442 s\"\n}\n\n</code></pre>\n<h3 id=\"series-list-response-without-id\">Series List Response (without ID)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": 200,\n  \"message\": \"Success\",\n  \"data\": {\n    \"current_page\": 1,\n    \"data\": [\n      {\n        \"series_id\": 21,\n        \"series_name\": \"Medusa jani\",\n        \"series_description\": \"Somebody wants to kill CEO Bárbara Hidalgo...\",\n        \"series_tags\": \"thriller,mistery\",\n        \"maturity_level\": \"all\",\n        \"userid\": 1,\n        \"partner_id\": 24,\n        \"date_added\": \"2025-03-10 21:43:47\",\n        \"featured\": \"no\",\n        \"active\": \"yes\",\n        \"is_avod\": 1,\n        \"is_tvod\": 0,\n        \"is_svod\": 0,\n        \"credits_required\": \"$0.00\",\n        \"rental_hours\": 0,\n        \"override_default_monetization\": 0,\n        \"start_released_date\": \"2025-03-05\",\n        \"end_released_date\": \"2025-03-05\",\n        \"season_count\": 1,\n        \"content_language\": null,\n        \"mpaa_rating\": \"\",\n        \"content_rating_tags\": \"\",\n        \"free_to_watch\": \"0\",\n        \"allowed_countries\": [],\n        \"blocked_countries\": [],\n        \"username\": \"admin\",\n        \"logo\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series_logos/2025/03/10/21.png\",\n        \"portrait_thumbs\": {\n          \"original\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-original-portrait.jpg\",\n          \"160x240\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-160x240-portrait.jpg\",\n          \"240x360\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-240x360-portrait.jpg\"\n        },\n        \"thumbs\": {\n          \"original\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-original.jpg\",\n          \"168x105\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-168x105.jpg\",\n          \"416x260\": \"https://vcz-development-cloud-vodlix-com-9912.b-cdn.net/u/development/files/series/2025/03/10/21-416x260.jpg\"\n        },\n        \"categories\": [\n          {\n            \"category_id\": 12,\n            \"parent_id\": 0,\n            \"category_name\": \"Action Series\",\n            \"category_desc\": \"\",\n            \"category_thumb\": \"\",\n            \"category_order\": 1\n          }\n        ],\n        \"shareable\": \"https://zain.my.vodlix.com/tv-shows/21\",\n        \"trailers\": {},\n        \"year\": \"2025\",\n        \"content_type\": 2,\n        \"maturity_level_label\": \"All\",\n        \"show_premium_badge\": false\n      }\n    ],\n    \"first_page_url\": \"/?page=1\",\n    \"from\": 1,\n    \"last_page\": 6,\n    \"last_page_url\": \"/?page=6\",\n    \"next_page_url\": \"/?page=2\",\n    \"path\": \"/\",\n    \"per_page\": 24,\n    \"prev_page_url\": null,\n    \"to\": 24,\n    \"total\": 132\n  },\n  \"time\": \"0.668 s\"\n}\n\n</code></pre>\n<h2 id=\"response-fields\">Response Fields</h2>\n<h3 id=\"series-object-fields\">Series Object Fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>series_id</code></td>\n<td>integer</td>\n<td>Unique series identifier</td>\n</tr>\n<tr>\n<td><code>series_name</code></td>\n<td>string</td>\n<td>Title of the series</td>\n</tr>\n<tr>\n<td><code>series_description</code></td>\n<td>string</td>\n<td>Full description of the series</td>\n</tr>\n<tr>\n<td><code>series_tags</code></td>\n<td>string</td>\n<td>Comma-separated tags</td>\n</tr>\n<tr>\n<td><code>maturity_level</code></td>\n<td>string</td>\n<td>Content maturity level (all, teens, adults)</td>\n</tr>\n<tr>\n<td><code>userid</code></td>\n<td>integer</td>\n<td>ID of user who uploaded the series</td>\n</tr>\n<tr>\n<td><code>partner_id</code></td>\n<td>integer</td>\n<td>Partner ID if uploaded by partner</td>\n</tr>\n<tr>\n<td><code>date_added</code></td>\n<td>string</td>\n<td>When series was added (YYYY-MM-DD HH:MM:SS)</td>\n</tr>\n<tr>\n<td><code>featured</code></td>\n<td>string</td>\n<td>Featured status (yes/no)</td>\n</tr>\n<tr>\n<td><code>active</code></td>\n<td>string</td>\n<td>Publication status (yes/no)</td>\n</tr>\n<tr>\n<td><code>realease_date</code></td>\n<td>string/null</td>\n<td>Original release date</td>\n</tr>\n<tr>\n<td><code>is_avod</code></td>\n<td>integer</td>\n<td>AVOD monetization enabled (0/1)</td>\n</tr>\n<tr>\n<td><code>is_tvod</code></td>\n<td>integer</td>\n<td>TVOD monetization enabled (0/1)</td>\n</tr>\n<tr>\n<td><code>is_svod</code></td>\n<td>integer</td>\n<td>SVOD monetization enabled (0/1)</td>\n</tr>\n<tr>\n<td><code>credits_required</code></td>\n<td>string</td>\n<td>Cost for TVOD content</td>\n</tr>\n<tr>\n<td><code>rental_hours</code></td>\n<td>integer</td>\n<td>Rental duration in hours</td>\n</tr>\n<tr>\n<td><code>override_default_monetization</code></td>\n<td>integer</td>\n<td>Custom monetization settings (0/1)</td>\n</tr>\n<tr>\n<td><code>start_released_date</code></td>\n<td>string</td>\n<td>Series release start date</td>\n</tr>\n<tr>\n<td><code>end_released_date</code></td>\n<td>string</td>\n<td>Series release end date</td>\n</tr>\n<tr>\n<td><code>start_published_date</code></td>\n<td>string</td>\n<td>Publication start date</td>\n</tr>\n<tr>\n<td><code>end_published_date</code></td>\n<td>string</td>\n<td>Publication end date</td>\n</tr>\n<tr>\n<td><code>deleted_at</code></td>\n<td>string/null</td>\n<td>Soft delete timestamp</td>\n</tr>\n<tr>\n<td><code>season_count</code></td>\n<td>integer</td>\n<td>Number of seasons</td>\n</tr>\n<tr>\n<td><code>content_language</code></td>\n<td>string/null</td>\n<td>Primary content language</td>\n</tr>\n<tr>\n<td><code>mpaa_rating</code></td>\n<td>string</td>\n<td>MPAA rating</td>\n</tr>\n<tr>\n<td><code>content_rating_tags</code></td>\n<td>string</td>\n<td>Content rating tags</td>\n</tr>\n<tr>\n<td><code>free_to_watch</code></td>\n<td>string</td>\n<td>Free content flag (0/1)</td>\n</tr>\n<tr>\n<td><code>allowed_countries</code></td>\n<td>array</td>\n<td>List of allowed country codes</td>\n</tr>\n<tr>\n<td><code>blocked_countries</code></td>\n<td>array</td>\n<td>List of blocked country codes</td>\n</tr>\n<tr>\n<td><code>username</code></td>\n<td>string</td>\n<td>Uploader's username</td>\n</tr>\n<tr>\n<td><code>logo</code></td>\n<td>string</td>\n<td>Series logo URL</td>\n</tr>\n<tr>\n<td><code>portrait_thumbs</code></td>\n<td>object</td>\n<td>Portrait thumbnail URLs in various sizes</td>\n</tr>\n<tr>\n<td><code>thumb</code></td>\n<td>string</td>\n<td>Default landscape thumbnail</td>\n</tr>\n<tr>\n<td><code>thumbs</code></td>\n<td>object</td>\n<td>Landscape thumbnail URLs in various sizes</td>\n</tr>\n<tr>\n<td><code>categories</code></td>\n<td>array</td>\n<td>List of category objects</td>\n</tr>\n<tr>\n<td><code>shareable</code></td>\n<td>string</td>\n<td>Public URL for sharing</td>\n</tr>\n<tr>\n<td><code>trailers</code></td>\n<td>object</td>\n<td>Trailer information</td>\n</tr>\n<tr>\n<td><code>trailer</code></td>\n<td>object/null</td>\n<td>Main trailer data</td>\n</tr>\n<tr>\n<td><code>first_episode_id</code></td>\n<td>integer</td>\n<td>ID of first episode (single series only)</td>\n</tr>\n<tr>\n<td><code>first_season_id</code></td>\n<td>integer</td>\n<td>ID of first season (single series only)</td>\n</tr>\n<tr>\n<td><code>year</code></td>\n<td>string</td>\n<td>Release year</td>\n</tr>\n<tr>\n<td><code>publish_date</code></td>\n<td>string</td>\n<td>Publication date</td>\n</tr>\n<tr>\n<td><code>copy_url</code></td>\n<td>string</td>\n<td>SEO-friendly URL</td>\n</tr>\n<tr>\n<td><code>credits_required_orignal</code></td>\n<td>integer</td>\n<td>Original credit cost</td>\n</tr>\n<tr>\n<td><code>currency_symbol</code></td>\n<td>string</td>\n<td>Currency symbol for pricing</td>\n</tr>\n<tr>\n<td><code>content_type_label</code></td>\n<td>string</td>\n<td>Human-readable content type</td>\n</tr>\n<tr>\n<td><code>content_type</code></td>\n<td>integer</td>\n<td>Content type ID (2 for series)</td>\n</tr>\n<tr>\n<td><code>maturity_level_label</code></td>\n<td>string</td>\n<td>Human-readable maturity level</td>\n</tr>\n<tr>\n<td><code>show_premium_badge</code></td>\n<td>boolean</td>\n<td>Whether to show premium badge</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"examples\">Examples</h2>\n<h3 id=\"get-all-series-paginated\">Get All Series (Paginated)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET /api/v2/series/list/?page=1&amp;limit=20\n\n</code></pre>\n<h3 id=\"get-single-series\">Get Single Series</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET /api/v2/series/list/123\n\n</code></pre>\n<h3 id=\"get-featured-series\">Get Featured Series</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET /api/v2/series/list/?featured=yes&amp;limit=10\n\n</code></pre>\n<h3 id=\"get-series-by-category\">Get Series by Category</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET /api/v2/series/list/?category=1\n\n</code></pre>\n<h3 id=\"get-trending-series\">Get Trending Series</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET /api/v2/series/list/?trending=true&amp;limit=15\n\n</code></pre>\n<h3 id=\"filter-by-year-and-language\">Filter by Year and Language</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET /api/v2/series/list/?year=2023&amp;content_language=en&amp;orderby=date_added\n\n</code></pre>\n","urlObject":{"path":["v2","series","list",""],"host":["{{apiBase}}"],"query":[{"key":"limit","value":"24"},{"key":"page","value":"1"}],"variable":[]}},"response":[],"_postman_id":"d5433613-3da5-4d48-b42c-52d4fd6e537b"},{"name":"Get TV Shows","id":"431fe96e-9bc4-4e8b-b56d-4a92493fc0e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/series/list/?page=1&paginate=1&limit=24","description":"<h1 id=\"series-list-api-documentation\">Series List API Documentation</h1>\n<h2 id=\"overview\">Overview</h2>\n<p>This document outlines the usage of the <code>/series/list/</code> API endpoint.</p>\n<h2 id=\"endpoint\">Endpoint</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">{{apiBase}}/series/list/\n\n</code></pre>\n<h2 id=\"method\">Method</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">GET\n\n</code></pre>\n<h2 id=\"parameters\">Parameters</h2>\n<p>The API accepts the following parameters:</p>\n<ul>\n<li><code>paginate</code> (boolean): Optional. Enables or disables pagination. If not provided, default value is <code>false</code>.</li>\n<li><code>limit</code> (integer): Optional. Sets the maximum number of series results to return per page. Used only when <code>paginate</code> is <code>true</code>.</li>\n<li><code>page</code> (integer): Optional. Specifies the page of results to return. Used only when <code>paginate</code> is <code>true</code>.</li>\n<li><code>series_id</code> (integer): Optional. Filters the list to include only the series with the specified ID.</li>\n<li><code>recent</code> (boolean): Optional. If <code>true</code>, sorts the list to show the most recently updated series first.</li>\n<li><code>trending</code> (boolean): Optional. If <code>true</code>, sorts the list to show the trending series first.</li>\n<li><code>featured</code> (boolean): Optional. If <code>true</code>, filters the list to include only featured series.</li>\n</ul>\n<h2 id=\"example-usage\">Example Usage</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">GET {{apiBase}}/series/list/?paginate=true&amp;limit=10&amp;page=2&amp;recent=true\n\n</code></pre>\n<p>This request would retrieve the second page of the ten most recent series, with ten series listed per page.</p>\n<h2 id=\"notes\">Notes</h2>\n<ul>\n<li>Parameters that affect sorting (<code>recent</code>, <code>trending</code>) cannot be used simultaneously.</li>\n<li>Pagination parameters (<code>paginate</code>, <code>limit</code>, <code>page</code>) should be used together for correct operation.</li>\n<li>If <code>paginate</code> is <code>false</code> or not provided, <code>limit</code> and <code>page</code> parameters are ignored.</li>\n<li>The <code>series_id</code> parameter can be used independently or with any combination of other parameters.</li>\n</ul>\n<h2 id=\"responses\">Responses</h2>\n<h3 id=\"success-response\">Success Response</h3>\n<p>Status code: <code>200 OK</code></p>\n<p>Response body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"status\": 200,\n    \"message\": \"Success\",\n    \"series\": {\n        \"data\": [\n            {}, {}\n        ]\n    },\n    \"time\": \"0.793 s\"\n}\n\n</code></pre>\n","urlObject":{"path":["series","list",""],"host":["{{apiBase}}"],"query":[{"key":"page","value":"1"},{"key":"paginate","value":"1"},{"key":"limit","value":"24"}],"variable":[]}},"response":[{"id":"3a6571b2-d501-4b6b-b4a4-6122ca91782f","name":"List of TV Shows","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiBase}}/series/list/?page=1&paginate=1&limit=24","host":["{{apiBase}}"],"path":["series","list",""],"query":[{"key":"page","value":"1"},{"key":"paginate","value":"1"},{"key":"limit","value":"24"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Aug 2023 19:18:56 GMT"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"message\": \"Success\",\n    \"series\": {\n        \"current_page\": 1,\n        \"data\": [\n            {\n                \"series_id\": 50,\n                \"series_name\": \"Testing api series title updated\",\n                \"series_description\": \"Testing api series description updated\",\n                \"series_tags\": \"testing,series,tags\",\n                \"maturity_level\": \"all\",\n                \"category\": \"\",\n                \"userid\": 9322,\n                \"partner_id\": \"0\",\n                \"views\": 0,\n                \"date_added\": \"2023-08-01 09:09:48\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2023/08/01\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 0,\n                \"content_language\": null,\n                \"mpaa_rating\": \"\",\n                \"content_rating_tags\": \"\",\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"zain\",\n                \"logo\": null,\n                \"portrait_thumbs\": [],\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 1,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Uncategorized\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:22:57\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"yes\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 2,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Action\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 3,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Adventure\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 4,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Animation\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 5,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Comedy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 6,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Crime\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 7,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Documentary\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 9,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Family\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 10,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Fantasy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 11,\n                        \"parent_id\": 0,\n                        \"category_name\": \"History\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 12,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Horror\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 13,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Music\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 14,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Mystery\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 15,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Romance\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 16,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Science Fiction\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 17,\n                        \"parent_id\": 0,\n                        \"category_name\": \"TV Movie\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 18,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Thriller\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 19,\n                        \"parent_id\": 0,\n                        \"category_name\": \"War\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 20,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Western\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 21,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Action &amp; Adventure\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 22,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Kids\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 23,\n                        \"parent_id\": 0,\n                        \"category_name\": \"News\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 24,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Reality\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 25,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Sci-Fi &amp; Fantasy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 26,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Soap\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 27,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Talk\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 28,\n                        \"parent_id\": 0,\n                        \"category_name\": \"War &amp; Politics\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 29,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Trailer Category\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-10-07 11:47:28\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 1,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 30,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Live\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"Live\",\n                        \"date_added\": \"2022-09-06 13:21:50\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": \"Live\",\n                        \"meta_description\": \"Live\",\n                        \"meta_keywords\": \"Live\",\n                        \"is_video\": \"0\",\n                        \"is_series\": \"0\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/50\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2023\",\n                \"publish_date\": \"2023-08-01\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/50\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 49,\n                \"series_name\": \"Around the World in 80 Days\",\n                \"series_description\": \"Following an outrageous bet, Fogg and his valet, Passepartout, take on the legendary journey of circumnavigating the globe in just 80 days, swiftly joined by aspiring journalist Abigail Fix, who seizes the chance to report on this extraordinary story.\",\n                \"series_tags\": \"based on novel or book,journey around the world,traveling,around the world and back\",\n                \"maturity_level\": \"all\",\n                \"category\": \"\",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 12,\n                \"date_added\": \"2022-01-19 14:42:05\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/19\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 1,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2022/01/19/49.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/49-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/49-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/49-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/49-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/49-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/49-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/49-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/49-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/49-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/49-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/49-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/49-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/49-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/49-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 1,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Uncategorized\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:22:57\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"yes\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 2,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Action\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 3,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Adventure\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 4,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Animation\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 5,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Comedy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 6,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Crime\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 7,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Documentary\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 9,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Family\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 10,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Fantasy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 11,\n                        \"parent_id\": 0,\n                        \"category_name\": \"History\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 12,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Horror\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 13,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Music\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 14,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Mystery\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 15,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Romance\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 16,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Science Fiction\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 17,\n                        \"parent_id\": 0,\n                        \"category_name\": \"TV Movie\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 18,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Thriller\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 19,\n                        \"parent_id\": 0,\n                        \"category_name\": \"War\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 20,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Western\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 21,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Action &amp; Adventure\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 22,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Kids\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 23,\n                        \"parent_id\": 0,\n                        \"category_name\": \"News\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 24,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Reality\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 25,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Sci-Fi &amp; Fantasy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 26,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Soap\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 27,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Talk\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 28,\n                        \"parent_id\": 0,\n                        \"category_name\": \"War &amp; Politics\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 29,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Trailer Category\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-10-07 11:47:28\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 1,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 30,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Live\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"Live\",\n                        \"date_added\": \"2022-09-06 13:21:50\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": \"Live\",\n                        \"meta_description\": \"Live\",\n                        \"meta_keywords\": \"Live\",\n                        \"is_video\": \"0\",\n                        \"is_series\": \"0\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/49\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-19\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/49\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 48,\n                \"series_name\": \"고요의 바다\",\n                \"series_description\": \"During a perilous 24-hour mission on the moon, space explorers try to retrieve samples from an abandoned research facility steeped in classified secrets.\",\n                \"series_tags\": \"moon,moon base,based on short film\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#8# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 2,\n                \"date_added\": \"2022-01-19 14:31:22\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/19\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 1,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2022/01/19/48.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/48-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/48-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/48-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/48-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/48-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/48-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/48-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/48-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/48-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/48-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/48-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/48-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/48-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/48-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/48\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-19\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/48\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 47,\n                \"series_name\": \"Screw\",\n                \"series_description\": \"Rob Williams\\\\&#8217; darkly comic crime drama portrays prison as you\\\\&#8217;ve never seen it before: through the embattled and inspiring characters who work there.\",\n                \"series_tags\": \"Screw\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#8# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 14,\n                \"date_added\": \"2022-01-19 14:20:18\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/19\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 1,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": null,\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/47-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/47-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/47-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/47-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/47-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/47-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/47-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/47-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/47-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/47-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/47-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/47-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/47-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/47-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/47\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-19\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/47\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 46,\n                \"series_name\": \"Archive 81\",\n                \"series_description\": \"An archivist takes a job restoring damaged videotapes and gets pulled into the vortex of a mystery involving the missing director and a demonic cult.\",\n                \"series_tags\": \"supernatural,paranormal,based on a podcast,terror\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#8# #14# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 10,\n                \"date_added\": \"2022-01-19 12:22:01\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/19\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 1,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2022/01/19/46.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/46-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/46-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/46-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/46-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/46-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/46-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/46-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/46-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/46-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/46-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/46-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/46-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/46-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/46-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 14,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Mystery\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/46\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-19\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/46\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 44,\n                \"series_name\": \"Stay Close\",\n                \"series_description\": \"The lives of a photojournalist, a soccer mom and a homicide detective are disturbed by a terrible event from the past.\",\n                \"series_tags\": \"Stay Close\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#8# #6# #14# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 3,\n                \"date_added\": \"2022-01-19 11:50:52\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/19\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 1,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2022/01/19/44.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/44-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/44-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/44-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/44-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/44-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/44-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/44-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/44-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/44-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/44-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/44-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/44-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/44-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/19/44-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 6,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Crime\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 14,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Mystery\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/44\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-19\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/44\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 42,\n                \"series_name\": \"Succession\",\n                \"series_description\": \"The lives of the Roy family as they contemplate their future once their aging father begins to step back from the media and entertainment conglomerate they control.\",\n                \"series_tags\": \"new york city,wealth,businessman\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#8# #5# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 11,\n                \"date_added\": \"2022-01-10 17:34:25\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/10\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 3,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2022/01/10/42.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/10/42-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/10/42-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/10/42-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/10/42-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/10/42-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/10/42-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/10/42-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/10/42-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/10/42-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/10/42-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/10/42-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/10/42-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/10/42-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/10/42-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 5,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Comedy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/42\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-10\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/42\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 40,\n                \"series_name\": \"Hanna\",\n                \"series_description\": \"This thriller and coming-of-age drama follows the journey of an extraordinary young girl as she evades the relentless pursuit of an off-book CIA agent and tries to unearth the truth behind who she is. Based on the 2011 Joe Wright film.\",\n                \"series_tags\": \"coming of age,thriller,based on movie,child soldier,vengeance\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#8# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 5,\n                \"date_added\": \"2022-01-07 17:05:21\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/07\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 3,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2022/01/07/40.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/40-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/40-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/40-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/40-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/40-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/40-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/40-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/40-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/40-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/40-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/40-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/40-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/40-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/40-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/40\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-07\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/40\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 39,\n                \"series_name\": \"Hawkeye\",\n                \"series_description\": \"Former Avenger Clint Barton has a seemingly simple mission: get back to his family for Christmas. Possible? Maybe with the help of Kate Bishop, a 22-year-old archer with dreams of becoming a superhero. The two are forced to work together when a presence from Barton’s past threatens to derail far more than the festive spirit.\",\n                \"series_tags\": \"new york city,holiday,crime fighter,superhero,based on comic,marvel cinematic universe (mcu),sign languages,christmas\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#8# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 2,\n                \"date_added\": \"2022-01-07 15:31:09\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/07\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 1,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2022/01/07/39.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/39-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/39-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/39-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/39-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/39-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/39-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/39-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/39-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/39-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/39-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/39-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/39-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/39-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/07/39-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/39\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-07\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/39\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 38,\n                \"series_name\": \"The Mandalorian\",\n                \"series_description\": \"After the fall of the Galactic Empire, lawlessness has spread throughout the galaxy. A lone gunfighter makes his way through the outer reaches, earning his keep as a bounty hunter.\",\n                \"series_tags\": \"bounty hunter,space western,space opera,space exploration,space adventure\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#20# #8# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 2,\n                \"date_added\": \"2022-01-06 13:30:33\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/06\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 2,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2022/01/06/38.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/06/38-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/06/38-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/06/38-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/06/38-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/06/38-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/06/38-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/06/38-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/06/38-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/06/38-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/06/38-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/06/38-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/06/38-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/06/38-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/06/38-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 20,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Western\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/38\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-06\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/38\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 37,\n                \"series_name\": \"Ted Lasso\",\n                \"series_description\": \"Ted Lasso, an American football coach, moves to England when he’s hired to manage a soccer team—despite having no experience. With cynical players and a doubtful town, will he get them to see the Ted Lasso Way?\",\n                \"series_tags\": \"football (soccer)\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#5# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 390,\n                \"date_added\": \"2022-01-05 13:09:15\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/05\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 2,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2022/01/05/37.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/37-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/37-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/37-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/37-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/37-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/37-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/37-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/37-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/37-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/37-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/37-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/37-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/37-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/37-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 5,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Comedy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/37\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-05\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/37\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 35,\n                \"series_name\": \"Mare of Easttown\",\n                \"series_description\": \"A detective in a small Pennsylvania town investigates a local murder while trying to keep her life from falling apart.\",\n                \"series_tags\": \"small town,suicide,drug abuse,pennsylvania, usa,therapist,detective,investigation,dysfunctional family,alcoholism,murder,disappearance,catholic priest\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#8# #14# #6# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 3,\n                \"date_added\": \"2022-01-05 11:56:19\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/05\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 1,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2022/01/05/35.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/35-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/35-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/35-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/35-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/35-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/35-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/35-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/35-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/35-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/35-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/35-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/35-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/35-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/35-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 6,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Crime\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 14,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Mystery\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/35\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-05\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/35\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 34,\n                \"series_name\": \"The Beatles: Get Back\",\n                \"series_description\": \"The three-part documentary series, compiled from over 60 hours of unseen footage, captures the warmth, camaraderie, and creative genius that defined the legacy of music’s most iconic foursome. The series also includes – for the first time in its entirety – The Beatles’ final performance at London’s Savile Row.\",\n                \"series_tags\": \"The Beatles: Get Back\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#7# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 7,\n                \"date_added\": \"2022-01-05 11:41:39\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/05\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 1,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2022/01/05/34.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/34-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/34-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/34-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/34-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/34-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/34-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/34-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/34-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/34-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/34-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/34-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/34-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/34-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/34-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 7,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Documentary\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/34\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-05\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/34\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 33,\n                \"series_name\": \"Dopesick\",\n                \"series_description\": \"The story of how one company triggered the worst drug epidemic in American history. Look into the epicenter of America\\\\&#8217;s struggle with opioid addiction, from a distressed Virginia mining community, to the hallways of the DEA, and to the opulence of \\\\&quot;one percenter\\\\&quot; Big Pharma Manhattan.\",\n                \"series_tags\": \"high school,based on novel or book,addiction,pharmaceutical industry,based on a true story,lawyer,doctor,dea agent,criminal investigation,virginia,coal mining,pharmaceuticals,medical,drug epidemic,opioids,oxycontin\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#8# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 4,\n                \"date_added\": \"2022-01-05 09:40:18\",\n                \"featured\": \"yes\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/05\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 1,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2022/01/05/33.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/33-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/33-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/33-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/33-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/33-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/33-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/33-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/33-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/33-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/33-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/33-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/33-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/33-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/33-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/33\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-05\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/33\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 32,\n                \"series_name\": \"Scam 1992 - The Harshad Mehta Story\",\n                \"series_description\": \"Set in 1980\\\\&#8217;s &amp; 90\\\\&#8217;s Bombay, Scam 1992 follows the life of Harshad Mehta - a stockbroker who single-handedly took the stock market to dizzying heights &amp; his catastrophic downfall. Being directed by National Award-winning filmmaker Hansal Mehta, the series is based on journalist Debashis Basu &amp; Sucheta Dalal\\\\&#8217;s book \\\\&quot;The Scam\\\\&quot;.\",\n                \"series_tags\": \"based on novel or book,anti hero,based on a true story,scam\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#6# #8# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 4,\n                \"date_added\": \"2022-01-05 08:52:34\",\n                \"featured\": \"yes\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/05\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 1,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2022/01/05/32.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/32-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/32-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/32-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/32-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/32-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/32-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/32-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/32-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/32-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/32-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/32-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/32-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/32-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/32-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 6,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Crime\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/32\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-05\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/32\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 31,\n                \"series_name\": \"Dexter: New Blood\",\n                \"series_description\": \"10 years after Dexter went missing in the eye of Hurricane Laura, we find him living under an assumed name in the small town of Iron Lake, New York.  Dexter may be embracing his new life, but in the wake of unexpected events in this close-knit community, his Dark Passenger beckons.\",\n                \"series_tags\": \"sequel,vigilante,serial killer\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#8# #6# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 78,\n                \"date_added\": \"2022-01-05 07:52:08\",\n                \"featured\": \"yes\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/05\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 1,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2022/01/05/31.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/31-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/31-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/31-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/31-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/31-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/31-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/31-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/31-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/31-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/31-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/31-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/31-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/31-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/05/31-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 6,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Crime\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/31\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-05\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/31\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 30,\n                \"series_name\": \"Arcane\",\n                \"series_description\": \"Amid the stark discord of twin cities Piltover and Zaun, two sisters fight on rival sides of a war between magic technologies and clashing convictions.\",\n                \"series_tags\": \"battle,based on video game\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#4# #8# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 45,\n                \"date_added\": \"2022-01-04 13:06:47\",\n                \"featured\": \"yes\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/04\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 1,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2022/01/04/30.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/30-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/30-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/30-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/30-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/30-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/30-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/30-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/30-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/30-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/30-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/30-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/30-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/30-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/30-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 4,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Animation\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/30\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-04\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/30\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 29,\n                \"series_name\": \"Sacred Games\",\n                \"series_description\": \"A link in their pasts leads an honest cop to a fugitive gang boss, whose cryptic warning spurs the officer on a quest to save Mumbai from cataclysm.\",\n                \"series_tags\": \"investigation,thriller,criminal underworld,police officer,police investigation,1980s,1990s\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#8# #6# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 41,\n                \"date_added\": \"2022-01-04 12:35:58\",\n                \"featured\": \"yes\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/04\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 2,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": null,\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/29-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/29-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/29-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/29-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/29-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/29-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/29-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/29-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/29-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/29-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/29-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/29-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/29-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/29-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 6,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Crime\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/29\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-04\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/29\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 28,\n                \"series_name\": \"La Casa de Papel\",\n                \"series_description\": \"To carry out the biggest heist in history, a mysterious man called The Professor recruits a band of eight robbers who have a single characteristic: none of them has anything to lose. Five months of seclusion - memorizing every step, every detail, every probability - culminate in eleven days locked up in the National Coinage and Stamp Factory of Spain, surrounded by police forces and with dozens of hostages in their power, to find out whether their suicide wager will lead to everything or nothing.\",\n                \"series_tags\": \"robbery,stockholm syndrome,spain,perfect crime,professor,heist,flashback,sexual tension,bank robbery,hostage situation,tunnel\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#6# #8# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 174,\n                \"date_added\": \"2022-01-04 10:45:26\",\n                \"featured\": \"yes\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2022/01/04\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 3,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2022/01/04/28.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/28-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/28-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/28-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/28-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/28-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/28-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/28-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/28-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/28-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/28-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/28-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/28-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/28-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2022/01/04/28-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 6,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Crime\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/28\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2022\",\n                \"publish_date\": \"2022-01-04\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/28\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 27,\n                \"series_name\": \"Alice in Borderland\",\n                \"series_description\": \"With his two friends, a video-game-obsessed young man finds himself in a strange version of Tokyo where they must compete in dangerous games to win.\",\n                \"series_tags\": \"supernatural,survival,psychological thriller,based on manga\",\n                \"maturity_level\": \"all\",\n                \"category\": \"#18# \",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 0,\n                \"date_added\": \"2021-10-20 14:35:23\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2021/10/20\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 2,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2021/10/20/27.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/10/20/27-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/10/20/27-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/10/20/27-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/10/20/27-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/10/20/27-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/10/20/27-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/10/20/27-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/10/20/27-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/10/20/27-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/10/20/27-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/10/20/27-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/10/20/27-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/10/20/27-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/10/20/27-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 18,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Thriller\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/27\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2021\",\n                \"publish_date\": \"2021-10-20\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/27\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 26,\n                \"series_name\": \"Shadow and Bone\",\n                \"series_description\": \"In a world cleaved in two by a massive barrier of perpetual darkness, a young soldier uncovers a power that might finally unite her country. But as she struggles to hone her power, dangerous forces plot against her. Thugs, thieves, assassins and saints are at war now, and it will take more than magic to survive.\",\n                \"series_tags\": \"based on novel or book,based on young adult novel,darkling\",\n                \"maturity_level\": \"all\",\n                \"category\": \"\",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 0,\n                \"date_added\": \"2021-09-08 17:46:45\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2021/09/08\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 1,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2021/09/08/26.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/26-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/26-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/26-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/26-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/26-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/26-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/26-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/26-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/26-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/26-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/26-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/26-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/26-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/26-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 1,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Uncategorized\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:22:57\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"yes\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 2,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Action\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 3,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Adventure\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 4,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Animation\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 5,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Comedy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 6,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Crime\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 7,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Documentary\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 9,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Family\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 10,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Fantasy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 11,\n                        \"parent_id\": 0,\n                        \"category_name\": \"History\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 12,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Horror\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 13,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Music\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 14,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Mystery\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 15,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Romance\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 16,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Science Fiction\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 17,\n                        \"parent_id\": 0,\n                        \"category_name\": \"TV Movie\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 18,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Thriller\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 19,\n                        \"parent_id\": 0,\n                        \"category_name\": \"War\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 20,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Western\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 21,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Action &amp; Adventure\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 22,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Kids\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 23,\n                        \"parent_id\": 0,\n                        \"category_name\": \"News\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 24,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Reality\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 25,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Sci-Fi &amp; Fantasy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 26,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Soap\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 27,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Talk\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 28,\n                        \"parent_id\": 0,\n                        \"category_name\": \"War &amp; Politics\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 29,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Trailer Category\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-10-07 11:47:28\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 1,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 30,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Live\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"Live\",\n                        \"date_added\": \"2022-09-06 13:21:50\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": \"Live\",\n                        \"meta_description\": \"Live\",\n                        \"meta_keywords\": \"Live\",\n                        \"is_video\": \"0\",\n                        \"is_series\": \"0\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/26\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2021\",\n                \"publish_date\": \"2021-09-08\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/26\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 25,\n                \"series_name\": \"Fantasy Island\",\n                \"series_description\": \"This contemporary version of the classic drama series delves into the “what if” questions that keep us awake at night. Each episode tells emotional, provocative stories about people who walk in with a desire, but end up reborn to themselves through the magical realism of Fantasy Island.\",\n                \"series_tags\": \"Fantasy Island\",\n                \"maturity_level\": \"all\",\n                \"category\": \"\",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 0,\n                \"date_added\": \"2021-09-08 16:40:51\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2021/09/08\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 1,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2021/09/08/25.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/25-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/25-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/25-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/25-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/25-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/25-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/25-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/25-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/25-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/25-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/25-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/25-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/25-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/25-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 1,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Uncategorized\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:22:57\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"yes\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 2,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Action\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 3,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Adventure\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 4,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Animation\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 5,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Comedy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 6,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Crime\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 7,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Documentary\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 9,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Family\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 10,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Fantasy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 11,\n                        \"parent_id\": 0,\n                        \"category_name\": \"History\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 12,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Horror\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 13,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Music\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 14,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Mystery\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 15,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Romance\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 16,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Science Fiction\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 17,\n                        \"parent_id\": 0,\n                        \"category_name\": \"TV Movie\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 18,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Thriller\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 19,\n                        \"parent_id\": 0,\n                        \"category_name\": \"War\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 20,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Western\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 21,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Action &amp; Adventure\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 22,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Kids\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 23,\n                        \"parent_id\": 0,\n                        \"category_name\": \"News\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 24,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Reality\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 25,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Sci-Fi &amp; Fantasy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 26,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Soap\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 27,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Talk\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 28,\n                        \"parent_id\": 0,\n                        \"category_name\": \"War &amp; Politics\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 29,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Trailer Category\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-10-07 11:47:28\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 1,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 30,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Live\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"Live\",\n                        \"date_added\": \"2022-09-06 13:21:50\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": \"Live\",\n                        \"meta_description\": \"Live\",\n                        \"meta_keywords\": \"Live\",\n                        \"is_video\": \"0\",\n                        \"is_series\": \"0\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/25\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2021\",\n                \"publish_date\": \"2021-09-08\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/25\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 24,\n                \"series_name\": \"Dug Days\",\n                \"series_description\": \"A series of shorts that follows the humorous misadventures of Dug, the lovable dog from Disney and Pixar’s “Up.” Each short features everyday events that occur in Dug\\\\&#8217;s backyard, all through the exciting (and slightly distorted) eyes of our favorite talking dog.\",\n                \"series_tags\": \"dog,adventure\",\n                \"maturity_level\": \"all\",\n                \"category\": \"\",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 0,\n                \"date_added\": \"2021-09-08 16:38:10\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2021/09/08\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 1,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2021/09/08/24.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/24-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/24-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/24-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/24-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/24-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/24-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/24-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/24-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/24-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/24-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/24-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/24-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/24-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/24-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 1,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Uncategorized\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:22:57\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"yes\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 2,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Action\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 3,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Adventure\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 4,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Animation\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 5,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Comedy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 6,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Crime\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 7,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Documentary\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 9,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Family\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 10,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Fantasy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 11,\n                        \"parent_id\": 0,\n                        \"category_name\": \"History\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 12,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Horror\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 13,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Music\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 14,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Mystery\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 15,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Romance\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 16,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Science Fiction\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 17,\n                        \"parent_id\": 0,\n                        \"category_name\": \"TV Movie\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 18,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Thriller\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 19,\n                        \"parent_id\": 0,\n                        \"category_name\": \"War\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 20,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Western\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 21,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Action &amp; Adventure\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 22,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Kids\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 23,\n                        \"parent_id\": 0,\n                        \"category_name\": \"News\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 24,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Reality\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 25,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Sci-Fi &amp; Fantasy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 26,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Soap\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 27,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Talk\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 28,\n                        \"parent_id\": 0,\n                        \"category_name\": \"War &amp; Politics\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 29,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Trailer Category\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-10-07 11:47:28\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 1,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 30,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Live\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"Live\",\n                        \"date_added\": \"2022-09-06 13:21:50\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": \"Live\",\n                        \"meta_description\": \"Live\",\n                        \"meta_keywords\": \"Live\",\n                        \"is_video\": \"0\",\n                        \"is_series\": \"0\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/24\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2021\",\n                \"publish_date\": \"2021-09-08\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/24\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            },\n            {\n                \"series_id\": 23,\n                \"series_name\": \"Never Have I Ever\",\n                \"series_description\": \"After a traumatic year, all an Indian-American teen wants is to go from pariah to popular -- but friends, family and feeling won\\\\&#8217;t make it easy on her.\",\n                \"series_tags\": \"romance,coming of age,teen comedy,lgbt\",\n                \"maturity_level\": \"all\",\n                \"category\": \"\",\n                \"userid\": 1,\n                \"partner_id\": null,\n                \"views\": 0,\n                \"date_added\": \"2021-09-08 16:31:35\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2021/09/08\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 2,\n                \"content_language\": null,\n                \"mpaa_rating\": null,\n                \"content_rating_tags\": null,\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"admin\",\n                \"logo\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series_logos/2021/09/08/23.png\",\n                \"portrait_thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/23-original-portrait.jpg\",\n                    \"160x240\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/23-160x240-portrait.jpg\",\n                    \"240x360\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/23-240x360-portrait.jpg\",\n                    \"320x480\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/23-320x480-portrait.jpg\",\n                    \"480x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/23-480x720-portrait.jpg\",\n                    \"720x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/23-720x1080-portrait.jpg\"\n                },\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/23-original.jpg\",\n                    \"168x105\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/23-168x105.jpg\",\n                    \"416x260\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/23-416x260.jpg\",\n                    \"632x395\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/23-632x395.jpg\",\n                    \"768x432\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/23-768x432.jpg\",\n                    \"1280x720\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/23-1280x720.jpg\",\n                    \"1920x1080\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/23-1920x1080.jpg\",\n                    \"200x288\": \"https://vz-366bb08c-460.b-cdn.net/u/demo/files/series/2021/09/08/23-200x288.jpg\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 1,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Uncategorized\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:22:57\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"yes\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 2,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Action\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 3,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Adventure\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 4,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Animation\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 5,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Comedy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 6,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Crime\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 7,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Documentary\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 9,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Family\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 10,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Fantasy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 11,\n                        \"parent_id\": 0,\n                        \"category_name\": \"History\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 12,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Horror\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 13,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Music\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 14,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Mystery\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 15,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Romance\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 16,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Science Fiction\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 17,\n                        \"parent_id\": 0,\n                        \"category_name\": \"TV Movie\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 18,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Thriller\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 19,\n                        \"parent_id\": 0,\n                        \"category_name\": \"War\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 20,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Western\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 21,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Action &amp; Adventure\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 22,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Kids\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 23,\n                        \"parent_id\": 0,\n                        \"category_name\": \"News\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 24,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Reality\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 25,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Sci-Fi &amp; Fantasy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 26,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Soap\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 27,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Talk\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 28,\n                        \"parent_id\": 0,\n                        \"category_name\": \"War &amp; Politics\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 29,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Trailer Category\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-10-07 11:47:28\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 1,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 30,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Live\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"Live\",\n                        \"date_added\": \"2022-09-06 13:21:50\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": \"Live\",\n                        \"meta_description\": \"Live\",\n                        \"meta_keywords\": \"Live\",\n                        \"is_video\": \"0\",\n                        \"is_series\": \"0\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/23\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2021\",\n                \"publish_date\": \"2021-09-08\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/23\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            }\n        ],\n        \"first_page_url\": \"/?page=1\",\n        \"from\": 1,\n        \"last_page\": 2,\n        \"last_page_url\": \"/?page=2\",\n        \"next_page_url\": \"/?page=2\",\n        \"path\": \"/\",\n        \"per_page\": 24,\n        \"prev_page_url\": null,\n        \"to\": 24,\n        \"total\": 42\n    },\n    \"time\": \"0.33 s\"\n}"},{"id":"a68c05f4-867a-4de3-b3ac-eeb404539578","name":"Series by Id","originalRequest":{"method":"GET","header":[],"url":"{{apiBase}}/series/list/50"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Aug 2023 19:19:11 GMT"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"message\": \"Success\",\n    \"series\": {\n        \"series_by_id\": [\n            {\n                \"series_id\": 50,\n                \"series_name\": \"Testing api series title updated\",\n                \"series_description\": \"Testing api series description updated\",\n                \"series_tags\": \"testing,series,tags\",\n                \"maturity_level\": \"all\",\n                \"category\": \"\",\n                \"userid\": 9322,\n                \"partner_id\": \"0\",\n                \"views\": 0,\n                \"date_added\": \"2023-08-01 09:09:48\",\n                \"featured\": \"no\",\n                \"broadcast\": \"public\",\n                \"allow_comments\": \"\",\n                \"allow_rating\": \"yes\",\n                \"total_comments\": 0,\n                \"last_commented\": \"0000-00-00 00:00:00\",\n                \"total_objects\": 0,\n                \"rating\": 0,\n                \"rated_by\": 0,\n                \"voters\": \"\",\n                \"active\": \"yes\",\n                \"public_upload\": \"\",\n                \"type\": \"\",\n                \"file_directory\": \"2023/08/01\",\n                \"super_feature\": 0,\n                \"realease_date\": null,\n                \"is_avod\": 1,\n                \"is_tvod\": 0,\n                \"is_svod\": 0,\n                \"credits_required\": \"$0.00\",\n                \"rental_hours\": 0,\n                \"override_default_monetization\": 0,\n                \"start_released_date\": null,\n                \"end_released_date\": null,\n                \"start_published_date\": null,\n                \"end_published_date\": null,\n                \"deleted_at\": null,\n                \"season_count\": 0,\n                \"content_language\": null,\n                \"mpaa_rating\": \"\",\n                \"content_rating_tags\": \"\",\n                \"free_to_watch\": \"0\",\n                \"allowed_countries\": [],\n                \"blocked_countries\": [],\n                \"username\": \"zain\",\n                \"logo\": null,\n                \"portrait_thumbs\": [],\n                \"thumb\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\",\n                \"thumbs\": {\n                    \"original\": \"https://demo.cloud.vodlix.com/files/series/no_landscape.png\"\n                },\n                \"categories\": [\n                    {\n                        \"category_id\": 1,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Uncategorized\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:22:57\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"yes\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 2,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Action\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 3,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Adventure\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 4,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Animation\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 5,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Comedy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:34\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 6,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Crime\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"yes\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 7,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Documentary\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 8,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Drama\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 9,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Family\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 10,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Fantasy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 11,\n                        \"parent_id\": 0,\n                        \"category_name\": \"History\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 12,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Horror\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 13,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Music\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 14,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Mystery\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 15,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Romance\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 16,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Science Fiction\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 17,\n                        \"parent_id\": 0,\n                        \"category_name\": \"TV Movie\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 18,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Thriller\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 19,\n                        \"parent_id\": 0,\n                        \"category_name\": \"War\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 20,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Western\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 21,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Action &amp; Adventure\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 22,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Kids\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 23,\n                        \"parent_id\": 0,\n                        \"category_name\": \"News\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 24,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Reality\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 25,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Sci-Fi &amp; Fantasy\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 26,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Soap\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 27,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Talk\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 28,\n                        \"parent_id\": 0,\n                        \"category_name\": \"War &amp; Politics\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-09-06 12:30:35\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 29,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Trailer Category\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"\",\n                        \"date_added\": \"2021-10-07 11:47:28\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 1,\n                        \"meta_title\": null,\n                        \"meta_description\": null,\n                        \"meta_keywords\": null,\n                        \"is_video\": \"1\",\n                        \"is_series\": \"1\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    },\n                    {\n                        \"category_id\": 30,\n                        \"parent_id\": 0,\n                        \"category_name\": \"Live\",\n                        \"category_order\": 1,\n                        \"category_desc\": \"Live\",\n                        \"date_added\": \"2022-09-06 13:21:50\",\n                        \"category_thumb\": \"\",\n                        \"featured\": \"no\",\n                        \"isdefault\": \"no\",\n                        \"navbar\": \"no\",\n                        \"is_trailer\": 0,\n                        \"meta_title\": \"Live\",\n                        \"meta_description\": \"Live\",\n                        \"meta_keywords\": \"Live\",\n                        \"is_video\": \"0\",\n                        \"is_series\": \"0\",\n                        \"is_live\": \"1\",\n                        \"checked\": false\n                    }\n                ],\n                \"shareable\": \"https://demo.vodlix.com/tv-shows/50\",\n                \"trailers\": null,\n                \"trailer\": null,\n                \"fav_id\": null,\n                \"is_fav\": null,\n                \"is_favourite\": null,\n                \"first_episode_id\": 0,\n                \"first_season_id\": 0,\n                \"year\": \"2023\",\n                \"publish_date\": \"2023-08-01\",\n                \"copy_url\": \"https://demo.cloud.vodlix.com/tv-shows/50\",\n                \"credits_required_orignal\": 0,\n                \"currency_symbol\": \"$\",\n                \"content_type_label\": \"series\",\n                \"content_type\": 2,\n                \"rate\": 0,\n                \"logged_in_user\": \"9322\",\n                \"maturity_level_label\": \"All\"\n            }\n        ]\n    },\n    \"time\": \"0.076 s\"\n}"}],"_postman_id":"431fe96e-9bc4-4e8b-b56d-4a92493fc0e3"},{"name":"Get Seasons","id":"1b444207-4eba-4a67-850b-eff4ebbb1814","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/season/list/31","urlObject":{"path":["season","list","31"],"host":["{{apiBase}}"],"query":[{"disabled":true,"key":"for_uploader","value":"1"}],"variable":[]}},"response":[],"_postman_id":"1b444207-4eba-4a67-850b-eff4ebbb1814"},{"name":"Get Season Data","id":"768b7724-2e9b-414a-8162-7985d8ad08a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/season/data?season_id=59&series_id=31","urlObject":{"path":["season","data"],"host":["{{apiBase}}"],"query":[{"key":"season_id","value":"59"},{"disabled":true,"key":"paginate","value":"1"},{"key":"series_id","value":"31"}],"variable":[]}},"response":[],"_postman_id":"768b7724-2e9b-414a-8162-7985d8ad08a5"},{"name":"My List","id":"8221c6eb-12e8-4c8e-a09c-2a22e38baa73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/series/myList?page=0&paginate=1&maturity_level=all&filter=series&limit=1","urlObject":{"path":["series","myList"],"host":["{{apiBase}}"],"query":[{"key":"page","value":"0"},{"key":"paginate","value":"1"},{"key":"maturity_level","value":"all"},{"key":"filter","value":"series"},{"key":"limit","value":"1"}],"variable":[]}},"response":[],"_postman_id":"8221c6eb-12e8-4c8e-a09c-2a22e38baa73"},{"name":"Add Series","id":"2af61697-a58a-49df-a177-574ff69b7fe6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"series_name\": \"Testing api series title\",\n    \"series_description\": \"Testing api series description\",\n    \"series_tags\": \"testing,series,tags\",\n    \"maturity_level\": \"all\",\n    \"partner_id\": \"\",\n    \"status\": 0,\n    \"content_language\": \"fa\",\n    \"category\": [\n        1, 2, 3\n    ],\n    \"allowed_countries\": [\n        \"PK\"\n    ],\n    \"blocked_countries\": [\n        \"GB\",\n        \"US\"\n    ],\n    \"start_published_date\": \"2023-08-22 12:21:34\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiBase}}/series/add","description":"<p>Use this API endpoint to introduce a new series, along with its detailed metadata, into your database.</p>\n<h4 id=\"body-parameters\">Body Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>series_name</code></td>\n<td>string</td>\n<td>Name of the series</td>\n</tr>\n<tr>\n<td><code>series_description</code></td>\n<td>string</td>\n<td>Brief description of the series</td>\n</tr>\n<tr>\n<td><code>series_tags</code></td>\n<td>string</td>\n<td>Comma-separated tags associated with the series</td>\n</tr>\n<tr>\n<td><code>maturity_level</code></td>\n<td>string</td>\n<td>Maturity level for the series (e.g., \"all\")</td>\n</tr>\n<tr>\n<td><code>partner_id</code></td>\n<td>string</td>\n<td>ID of the partner associated with the series</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>integer</td>\n<td>Status of the series (0 for inactive, 1 for active)</td>\n</tr>\n<tr>\n<td><code>content_language</code></td>\n<td>string</td>\n<td>ISO code for the content's language (e.g., \"en\", \"es\")</td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td>array</td>\n<td>Array of series category ids</td>\n</tr>\n<tr>\n<td><code>allowed_countries</code></td>\n<td>array</td>\n<td>List of ISO-2 country codes where the series is allowed (e.g., \"US\", \"GB\", \"PK\")</td>\n</tr>\n<tr>\n<td><code>blocked_countries</code></td>\n<td>array</td>\n<td>List of ISO-2 country codes where the series is blocked (e.g., \"US\", \"GB\", \"PK\")</td>\n</tr>\n<tr>\n<td><code>start_published_date</code></td>\n<td>datetime</td>\n<td>Date when the series content is set to be published</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["series","add"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[{"id":"11f983fa-b023-446e-912c-699b25ee1074","name":"Success Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"series_name\": \"Testing api series title\",\n    \"series_description\": \"Testing api series description\",\n    \"series_tags\": \"testing,series,tags\",\n    \"maturity_level\": \"all\",\n    \"partner_id\": \"\",\n    \"status\": 0\n}","options":{"raw":{"language":"json"}}},"url":"{{apiBase}}/series/add"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 09:09:48 GMT"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"timestamp\": 1690880988,\n    \"time\": 0.069,\n    \"ip\": \"182.187.142.133\",\n    \"message\": \"Series and its first season added successfully\",\n    \"data\": {\n        \"series_id\": 50,\n        \"season_id\": 83\n    }\n}"}],"_postman_id":"2af61697-a58a-49df-a177-574ff69b7fe6"},{"name":"Update Series","id":"dc923f2f-3caf-4a4b-a2c9-89dd28b92549","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"series_name\": \"Testing api series title updated\",\n    \"series_description\": \"Testing api series description updated\",\n    \"series_tags\": \"testing,series,tags\",\n    \"maturity_level\": \"all\",\n    \"partner_id\": \"\",\n    \"status\": 1,\n    \"content_language\": \"fa\",\n    \"category\": [\n        1, 2, 3\n    ],\n    \"allowed_countries\": [\n        \"PK\"\n    ],\n    \"blocked_countries\": [\n        \"GB\",\n        \"US\"\n    ],\n    \"start_published_date\": \"2023-08-22 12:21:34\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiBase}}/series/{series_id}/update","description":"<p>This API allows you to update the metadata of an existing series.</p>\n<h4 id=\"path-parameters\">Path Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>series_id</code></td>\n<td>string</td>\n<td>ID of the series you wish to update</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"body-parameters\">Body Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>series_name</code></td>\n<td>string</td>\n<td>Name of the series</td>\n</tr>\n<tr>\n<td><code>series_description</code></td>\n<td>string</td>\n<td>Brief description of the series</td>\n</tr>\n<tr>\n<td><code>series_tags</code></td>\n<td>string</td>\n<td>Comma-separated tags associated with the series</td>\n</tr>\n<tr>\n<td><code>maturity_level</code></td>\n<td>string</td>\n<td>Maturity level for the series (e.g., \"all\")</td>\n</tr>\n<tr>\n<td><code>partner_id</code></td>\n<td>string</td>\n<td>ID of the partner associated with the series</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>integer</td>\n<td>Status of the series (0 for inactive, 1 for active)</td>\n</tr>\n<tr>\n<td><code>content_language</code></td>\n<td>string</td>\n<td>ISO code for the content's language (e.g., \"en\", \"es\")</td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td>array</td>\n<td>Array of series cateogory ids</td>\n</tr>\n<tr>\n<td><code>allowed_countries</code></td>\n<td>array</td>\n<td>List of ISO-2 country codes where the series is allowed (e.g., \"US\", \"GB\", \"PK\")</td>\n</tr>\n<tr>\n<td><code>blocked_countries</code></td>\n<td>array</td>\n<td>List of ISO-2 country codes where the series is blocked (e.g., \"US\", \"GB\", \"PK\")</td>\n</tr>\n<tr>\n<td><code>start_published_date</code></td>\n<td>datetime</td>\n<td>Date when the series content is set to be published</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["series","{series_id}","update"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[{"id":"307fd938-0f9c-4dd9-a3e8-bb062f551047","name":"Success Response","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"series_name\": \"Testing api series title updated\",\n  \"series_description\": \"Testing api series description updated\",\n  \"series_tags\": \"testing,series,tags\",\n  \"maturity_level\": \"all\",\n  \"partner_id\": \"\",\n  \"status\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{apiBase}}/series/50/update"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 09:10:09 GMT"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"timestamp\": 1690881009,\n    \"time\": 0.094,\n    \"ip\": \"182.187.142.133\",\n    \"message\": \"Series details updated successfully\",\n    \"data\": {\n        \"series_id\": \"50\"\n    }\n}"}],"_postman_id":"dc923f2f-3caf-4a4b-a2c9-89dd28b92549"},{"name":"Add Season","id":"b46497a2-55d7-45f6-a85b-e62b10672c4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"sequence\": \"3\",\n  \"series_id\": \"3\",\n  \"status\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{apiBase}}/season/add","description":"<p>This API allows you to add a new season with its associated metadata to the database.</p>\n<h4 id=\"body-parameters\">Body Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>sequence</code></td>\n<td>string</td>\n<td>Season order of a series</td>\n</tr>\n<tr>\n<td><code>series_id</code></td>\n<td>string</td>\n<td>Series ID</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>integer</td>\n<td>Status of the season (0 or 1)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["season","add"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[{"id":"941bd487-eb87-4684-8348-3c3ce279cc7d","name":"Success Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"sequence\": \"3\",\n  \"series_id\": \"3\",\n  \"status\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{apiBase}}/season/add"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 09:08:34 GMT"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"timestamp\": 1690880914,\n    \"time\": 0.078,\n    \"ip\": \"182.187.142.133\",\n    \"message\": \"Season added successfully\",\n    \"data\": {\n        \"season_id\": 82\n    }\n}"}],"_postman_id":"b46497a2-55d7-45f6-a85b-e62b10672c4e"},{"name":"Update Season","id":"cd74515b-d67b-4b2b-a8ac-7aac459d44db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"sequence\": \"7\",\n  \"series_id\": \"3\",\n  \"status\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{apiBase}}/season/{season_id}/update","description":"<p>This API allows you to update a season with new metadata.</p>\n<h4 id=\"path-parameters\">Path Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>season_id</code></td>\n<td>string</td>\n<td>The ID of the season to update</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"body-parameters\">Body Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>sequence</code></td>\n<td>string</td>\n<td>Season sequence</td>\n</tr>\n<tr>\n<td><code>series_id</code></td>\n<td>string</td>\n<td>Series ID</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>integer</td>\n<td>Status of the season (0 or 1)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["season","{season_id}","update"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[{"id":"02e435fe-ba4b-43ca-9ff2-151469d6f5ef","name":"Success Response","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"sequence\": \"7\",\n  \"series_id\": \"3\",\n  \"status\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{apiBase}}/season/82/update"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 09:09:06 GMT"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"timestamp\": 1690880946,\n    \"time\": 0.061,\n    \"ip\": \"182.187.142.133\",\n    \"message\": \"Season details updated successfully\",\n    \"data\": {\n        \"season_id\": 82\n    }\n}"}],"_postman_id":"cd74515b-d67b-4b2b-a8ac-7aac459d44db"}],"id":"b44bd3a7-78a9-4c98-869f-fa2a341b84ac","description":"<p>This folder contains a set of APIs related to series content on the platform. These APIs enable you to retrieve information about series and its seasons</p>\n","_postman_id":"b44bd3a7-78a9-4c98-869f-fa2a341b84ac"},{"name":"Reels Shorts","item":[{"name":"Get Short Series","id":"20e6f747-2354-4355-8338-f0ebda4e76a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/shorts/series?page=1&limit=15&category=2","description":"<h2 id=\"overview\">Overview</h2>\n<p>Retrieves a paginated list of short series, optionally filtered by category. Use this endpoint to browse available short-form series content with support for pagination and category-based filtering.</p>\n<h2 id=\"http-method--url\">HTTP Method &amp; URL</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET {{apiBase}}/shorts/series\n</code></pre><h2 id=\"query-parameters\">Query Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>page</code></td>\n<td>integer</td>\n<td>Optional</td>\n<td>The page number for pagination. <strong>Default:</strong> <code>1</code>. Example: <code>1</code></td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>integer</td>\n<td>Optional</td>\n<td>The number of results per page. Example: <code>15</code></td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td>integer</td>\n<td>Optional</td>\n<td>Filter series by category ID. Example: <code>2</code> (Action)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<h3 id=\"200-ok\">200 OK</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>status</code></td>\n<td>integer</td>\n<td>HTTP status code</td>\n</tr>\n<tr>\n<td><code>timestamp</code></td>\n<td>integer</td>\n<td>Unix timestamp of the response</td>\n</tr>\n<tr>\n<td><code>time</code></td>\n<td>number</td>\n<td>Response time in seconds</td>\n</tr>\n<tr>\n<td><code>ip</code></td>\n<td>string</td>\n<td>Client IP address</td>\n</tr>\n<tr>\n<td><code>message</code></td>\n<td>string</td>\n<td>Status message (e.g., <code>\"Success\"</code>)</td>\n</tr>\n<tr>\n<td><code>data</code></td>\n<td>object</td>\n<td>Response payload containing series data and pagination info</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"data-object\"><code>data</code> Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>series</code></td>\n<td>array of objects</td>\n<td>List of short series</td>\n</tr>\n<tr>\n<td><code>current_page</code></td>\n<td>integer</td>\n<td>Current page number</td>\n</tr>\n<tr>\n<td><code>total</code></td>\n<td>integer</td>\n<td>Total number of results</td>\n</tr>\n<tr>\n<td><code>per_page</code></td>\n<td>integer</td>\n<td>Results per page</td>\n</tr>\n<tr>\n<td><code>last_page</code></td>\n<td>integer</td>\n<td>Last page number</td>\n</tr>\n<tr>\n<td><code>has_more</code></td>\n<td>boolean</td>\n<td>Whether more pages are available</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"series-object\"><code>series[]</code> Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>series_id</code></td>\n<td>integer</td>\n<td>Unique identifier for the series</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>Name of the series</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>string</td>\n<td>Description of the series</td>\n</tr>\n<tr>\n<td><code>portrait_thumbs</code></td>\n<td>object</td>\n<td>Thumbnail URLs at various resolutions (<code>original</code>, <code>160x240</code>, <code>240x360</code>, <code>320x480</code>, <code>480x720</code>, <code>720x1080</code>)</td>\n</tr>\n<tr>\n<td><code>total_seasons</code></td>\n<td>integer</td>\n<td>Number of seasons</td>\n</tr>\n<tr>\n<td><code>categories</code></td>\n<td>array of objects</td>\n<td>List of categories, each with <code>category_id</code> (integer) and <code>category_name</code> (string)</td>\n</tr>\n<tr>\n<td><code>date_added</code></td>\n<td>string</td>\n<td>Date the series was added (format: <code>YYYY-MM-DD HH:MM:SS</code>)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["shorts","series"],"host":["{{apiBase}}"],"query":[{"key":"page","value":"1"},{"key":"limit","value":"15"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"category","value":"2"}],"variable":[]}},"response":[],"_postman_id":"20e6f747-2354-4355-8338-f0ebda4e76a2"},{"name":"Get Short Seasons","id":"c0894d58-deb3-4bd8-b899-cce0aa041cb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/shorts/series/53","description":"<h2 id=\"get-short-series-by-id\">Get Short Series by ID</h2>\n<p>Retrieves detailed information about a specific short series, including its metadata, thumbnail images, categories, and season listings.</p>\n<h3 id=\"url\">URL</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET {{apiBase}}/shorts/series/:seriesId\n\n</code></pre><p><strong>Path Variable:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Variable</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>seriesId</code></td>\n<td>integer</td>\n<td>The unique identifier of the short series to retrieve (e.g., <code>53</code>).</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-structure\">Response Structure</h3>\n<p>The response is wrapped in a standard envelope with the following top-level fields:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>status</code></td>\n<td>integer</td>\n<td>HTTP status code (e.g., <code>200</code>).</td>\n</tr>\n<tr>\n<td><code>timestamp</code></td>\n<td>integer</td>\n<td>Unix timestamp of the response.</td>\n</tr>\n<tr>\n<td><code>time</code></td>\n<td>float</td>\n<td>Server processing time in seconds.</td>\n</tr>\n<tr>\n<td><code>ip</code></td>\n<td>string</td>\n<td>IP address of the requester.</td>\n</tr>\n<tr>\n<td><code>message</code></td>\n<td>string</td>\n<td>Human-readable status message (e.g., <code>\"Success\"</code>).</td>\n</tr>\n<tr>\n<td><code>data</code></td>\n<td>object</td>\n<td>The series detail payload.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"data-object\"><code>data</code> Object</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>series_id</code></td>\n<td>integer</td>\n<td>Unique identifier of the series.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>Display name of the series.</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>string</td>\n<td>Text description of the series.</td>\n</tr>\n<tr>\n<td><code>portrait_thumbs</code></td>\n<td>object</td>\n<td>Portrait thumbnail URLs at various resolutions. Keys include <code>original</code>, <code>160x240</code>, <code>240x360</code>, <code>320x480</code>, <code>480x720</code>, and <code>720x1080</code>.</td>\n</tr>\n<tr>\n<td><code>total_seasons</code></td>\n<td>integer</td>\n<td>Total number of seasons in the series.</td>\n</tr>\n<tr>\n<td><code>categories</code></td>\n<td>array</td>\n<td>List of categories the series belongs to. Each object contains <code>category_id</code> (integer) and <code>category_name</code> (string).</td>\n</tr>\n<tr>\n<td><code>date_added</code></td>\n<td>string</td>\n<td>Date and time the series was added, in <code>YYYY-MM-DD HH:MM:SS</code> format.</td>\n</tr>\n<tr>\n<td><code>seasons</code></td>\n<td>array</td>\n<td>List of seasons. Each object contains <code>season_id</code> (integer), <code>season_name</code> (string), <code>season_number</code> (integer), and <code>episode_count</code> (integer).</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"success-response\">Success Response</h3>\n<p><strong>Status:</strong> <code>200 OK</code></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": 200,\n  \"timestamp\": 1772250904,\n  \"time\": 0.072,\n  \"ip\": \"182.176.88.4\",\n  \"message\": \"Success\",\n  \"data\": {\n    \"series_id\": 53,\n    \"name\": \"Short Series 1\",\n    \"description\": \"Short Series 1\",\n    \"portrait_thumbs\": {\n      \"original\": \"https://...\",\n      \"160x240\": \"https://...\",\n      \"240x360\": \"https://...\",\n      \"320x480\": \"https://...\",\n      \"480x720\": \"https://...\",\n      \"720x1080\": \"https://...\"\n    },\n    \"total_seasons\": 1,\n    \"categories\": [\n      { \"category_id\": 2, \"category_name\": \"Action\" }\n    ],\n    \"date_added\": \"2026-02-28 03:01:04\",\n    \"seasons\": [\n      {\n        \"season_id\": 101,\n        \"season_name\": \"Season 1\",\n        \"season_number\": 1,\n        \"episode_count\": 0\n      }\n    ]\n  }\n}\n\n</code></pre>\n","urlObject":{"path":["shorts","series","53"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0894d58-deb3-4bd8-b899-cce0aa041cb9"},{"name":"Get Short Episodes","id":"83179f29-43c7-4f9f-a650-0248fc156244","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/shorts/series/53/episodes?season_id=101&page=1&limit=15","description":"<h2 id=\"get-short-episodes\">Get Short Episodes</h2>\n<p>Retrieves a paginated list of short-form episodes for a specific series and season. This endpoint returns episode metadata including titles, durations, thumbnail URLs at multiple resolutions, and pagination details.</p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>season_id</code></td>\n<td>integer</td>\n<td>Yes</td>\n<td>The ID of the season to filter episodes by.</td>\n</tr>\n<tr>\n<td><code>page</code></td>\n<td>integer</td>\n<td>No</td>\n<td>The page number for pagination (default: 1).</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>integer</td>\n<td>No</td>\n<td>The maximum number of episodes to return per page (default: 15).</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-structure\">Response Structure</h3>\n<p>The response returns a JSON object with the following top-level fields:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>cache</code></td>\n<td>boolean</td>\n<td>Whether the response was served from cache.</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>integer</td>\n<td>HTTP status code.</td>\n</tr>\n<tr>\n<td><code>timestamp</code></td>\n<td>integer</td>\n<td>Unix timestamp of the response.</td>\n</tr>\n<tr>\n<td><code>time</code></td>\n<td>float</td>\n<td>Server processing time in seconds.</td>\n</tr>\n<tr>\n<td><code>message</code></td>\n<td>string</td>\n<td>Status message (e.g., <code>\"Success\"</code>).</td>\n</tr>\n<tr>\n<td><code>data</code></td>\n<td>object</td>\n<td>Contains the episodes array and pagination info.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"data-object\"><code>data</code> Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>episodes</code></td>\n<td>array</td>\n<td>List of episode objects (see below).</td>\n</tr>\n<tr>\n<td><code>page</code></td>\n<td>integer</td>\n<td>Current page number.</td>\n</tr>\n<tr>\n<td><code>limit</code></td>\n<td>integer</td>\n<td>Number of results per page.</td>\n</tr>\n<tr>\n<td><code>total</code></td>\n<td>integer</td>\n<td>Total number of episodes matching the query.</td>\n</tr>\n<tr>\n<td><code>has_more</code></td>\n<td>boolean</td>\n<td>Whether additional pages of results are available.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"episode-object\">Episode Object</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>integer</td>\n<td>Unique identifier for the episode.</td>\n</tr>\n<tr>\n<td><code>title</code></td>\n<td>string</td>\n<td>Title of the episode.</td>\n</tr>\n<tr>\n<td><code>episode_number</code></td>\n<td>integer</td>\n<td>Sequential episode number within the season.</td>\n</tr>\n<tr>\n<td><code>duration</code></td>\n<td>integer</td>\n<td>Duration of the episode (in minutes).</td>\n</tr>\n<tr>\n<td><code>portrait_thumbs</code></td>\n<td>object</td>\n<td>Portrait thumbnail URLs at various resolutions (<code>original</code>, <code>160x240</code>, <code>240x360</code>, <code>320x480</code>, <code>480x720</code>, <code>720x1080</code>).</td>\n</tr>\n<tr>\n<td><code>watch_url</code></td>\n<td>string</td>\n<td>Direct URL to watch the episode.</td>\n</tr>\n<tr>\n<td><code>date_added</code></td>\n<td>string</td>\n<td>Timestamp when the episode was added (format: <code>YYYY-MM-DD HH:MM:SS</code>).</td>\n</tr>\n<tr>\n<td><code>season_id</code></td>\n<td>integer</td>\n<td>ID of the season this episode belongs to.</td>\n</tr>\n<tr>\n<td><code>season_number</code></td>\n<td>integer</td>\n<td>Sequential number of the season.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example-success-response\">Example Success Response</h3>\n<p>A successful request returns status <code>200</code> with the <code>\"Success\"</code> message. The <code>data.episodes</code> array contains the matching episodes, and the pagination fields (<code>page</code>, <code>limit</code>, <code>total</code>, <code>has_more</code>) indicate whether more results are available. When <code>has_more</code> is <code>false</code>, the current page contains the last set of results.</p>\n","urlObject":{"path":["shorts","series","53","episodes"],"host":["{{apiBase}}"],"query":[{"key":"season_id","value":"101"},{"key":"page","value":"1"},{"key":"limit","value":"15"}],"variable":[]}},"response":[],"_postman_id":"83179f29-43c7-4f9f-a650-0248fc156244"}],"id":"234c59cc-27ae-4921-8589-ed0ff36d26a1","_postman_id":"234c59cc-27ae-4921-8589-ed0ff36d26a1","description":""},{"name":"Asset Management","item":[{"name":"Add content asset","id":"cb5c5198-8e4f-4dbe-9037-0fb0342af92a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"content_id\": 1,\n    \"content_type\": 1,\n    \"asset_type\" : \"progressive\",\n    \"asset_host\" : \"demo.vodlix.com\",\n    \"asset_path\" : \"/your/path/to/your/asset.mp4\",\n    \"asset_mime_type\" : \"mp4\",\n    \"asset_size\" : \"5706494595\",\n    \"asset_width\" : \"2560\",\n    \"asset_height\" : \"1440\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiBase}}/v2/asset/add","description":"<p>This endpoint allows you to add a new asset to the system. It requires authentication with an admin user. Ensure that this feature is enabled by contacting the Vodlix team.</p>\n<p><strong>Request URL:</strong></p>\n<ul>\n<li>{{apiBase}}/v2/asset/add</li>\n</ul>\n<p><strong>Parameters:</strong></p>\n<ul>\n<li><code>content_id</code>: Integer - The ID of the content.</li>\n<li><code>content_type</code>: Integer - The type of content.</li>\n<li><code>asset_type</code>: String - The type of the asset (e.g., \"progressive\").</li>\n<li><code>asset_host</code>: String - The hostname where the asset is hosted.</li>\n<li><code>asset_path</code>: String - The path to the asset file.</li>\n<li><code>asset_mime_type</code>: String - The MIME type of the asset (e.g., \"mp4\").</li>\n<li><code>asset_size</code>: String - The size of the asset in bytes.</li>\n<li><code>asset_width</code>: String - The width of the asset in pixels.</li>\n<li><code>asset_height</code>: String - The height of the asset in pixels.</li>\n</ul>\n<p><strong>Responses:</strong></p>\n<ul>\n<li><p><strong>200 OK</strong></p>\n<ul>\n<li><strong>Description:</strong> Asset successfully added.</li>\n<li><strong>Body:</strong> <code>{\"message\": \"Asset added successfully\"}</code></li>\n</ul>\n</li>\n<li><p><strong>400 Bad Request</strong></p>\n<ul>\n<li><strong>Description:</strong> Invalid request parameters or body.</li>\n<li><strong>Body:</strong> <code>{\"error\": \"Invalid request parameters\"}</code></li>\n</ul>\n</li>\n<li><p><strong>401 Unauthorized</strong></p>\n<ul>\n<li><strong>Description:</strong> Authentication failed.</li>\n<li><strong>Body:</strong> <code>{\"error\": \"Unauthorized access\"}</code></li>\n</ul>\n</li>\n<li><p><strong>500 Internal Server Error</strong></p>\n<ul>\n<li><strong>Description:</strong> An unexpected error occurred on the server.</li>\n<li><strong>Body:</strong> <code>{\"error\": \"Internal server error\"}</code></li>\n</ul>\n</li>\n</ul>\n<p><strong>Notes:</strong></p>\n<ul>\n<li>Ensure that the feature is enabled by contacting the Vodlix team.</li>\n<li>The asset path should be a valid URL accessible from the asset host.</li>\n</ul>\n","urlObject":{"path":["v2","asset","add"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb5c5198-8e4f-4dbe-9037-0fb0342af92a"}],"id":"bd984543-6ebd-4559-87c3-c2e5193a8fb7","_postman_id":"bd984543-6ebd-4559-87c3-c2e5193a8fb7","description":""},{"name":"Pages","item":[{"name":"Get Page Data","id":"d8fcb81d-e7f8-4b2d-a8b4-1ad7384d0f26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/page/1","urlObject":{"path":["page","1"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d8fcb81d-e7f8-4b2d-a8b4-1ad7384d0f26"}],"id":"ba7238be-20e4-4952-a818-6c9dcb34b9f4","_postman_id":"ba7238be-20e4-4952-a818-6c9dcb34b9f4","description":""},{"name":"Categories","item":[{"name":"Get Categories","id":"7851e6c6-e01a-4d7e-8f01-c1f5651e891a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/videos/categories/?type=is_video","urlObject":{"path":["videos","categories",""],"host":["{{apiBase}}"],"query":[{"disabled":true,"key":"paginate","value":"1"},{"disabled":true,"key":"page","value":"1"},{"disabled":true,"key":"limit","value":"2"},{"disabled":true,"key":"only_featured","value":"1"},{"disabled":true,"key":"all","value":"1"},{"key":"type","value":"is_video"}],"variable":[]}},"response":[],"_postman_id":"7851e6c6-e01a-4d7e-8f01-c1f5651e891a"}],"id":"453ab160-6ffe-425a-81f8-ae1269437360","_postman_id":"453ab160-6ffe-425a-81f8-ae1269437360","description":""},{"name":"Comments","item":[{"name":"List of comments","id":"07c35ecf-8959-4f5d-bc2a-7501f5a9c241","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/comments?content_type=1&content_id=1082","urlObject":{"path":["v2","comments"],"host":["{{apiBase}}"],"query":[{"key":"content_type","value":"1"},{"key":"content_id","value":"1082"}],"variable":[]}},"response":[],"_postman_id":"07c35ecf-8959-4f5d-bc2a-7501f5a9c241"},{"name":"Post a new comment","id":"5e214c9d-94da-42d6-ac74-19f51c31369b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"body","value":"This is comment body","type":"text"},{"key":"content_type","value":"1","type":"text"},{"key":"content_id","value":"1082","type":"text"},{"key":"parent_id","value":"0","type":"text"}]},"url":"{{apiBase}}/v2/comments","urlObject":{"path":["v2","comments"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5e214c9d-94da-42d6-ac74-19f51c31369b"}],"id":"9f1d0ae2-5a44-42f2-9a06-e0fec0eea6f0","_postman_id":"9f1d0ae2-5a44-42f2-9a06-e0fec0eea6f0","description":""},{"name":"Ratings","item":[{"name":"Rate content","id":"15dd3687-2c8f-4d75-bd9f-9555d76cbc2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"content_type","value":"1","type":"text","description":"<p>content type which you want to rate\n1 =&gt; Movie, 2 =&gt; Series .. else Will be added soon</p>\n"},{"key":"content_id","value":"557","type":"text","description":"<p>content id which you want to rate</p>\n"},{"key":"rate","value":"1","type":"text","description":"<p>1 for like , -1 for dislike, 0 for cancel</p>\n"}]},"url":"{{apiBase}}/v2/rate","urlObject":{"path":["v2","rate"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"15dd3687-2c8f-4d75-bd9f-9555d76cbc2b"}],"id":"94c5e1bd-f6aa-45b2-9b25-3ce776ad3500","_postman_id":"94c5e1bd-f6aa-45b2-9b25-3ce776ad3500","description":""},{"name":"Search","item":[{"name":"Search","id":"28fd09a7-d314-4e96-83af-3f332a2ec26c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/search?q=free","urlObject":{"path":["v2","search"],"host":["{{apiBase}}"],"query":[{"key":"q","value":"free"}],"variable":[]}},"response":[],"_postman_id":"28fd09a7-d314-4e96-83af-3f332a2ec26c"}],"id":"b7afa3fc-9bc6-45ce-ac4e-d36a22b796b0","_postman_id":"b7afa3fc-9bc6-45ce-ac4e-d36a22b796b0","description":""},{"name":"Artists","item":[{"name":"Add content artists","id":"7cff40ad-02bf-4aac-8ec7-1667deac825a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"content_id\": 1,\n    \"content_type\": 2,\n    \"artist_id\": [\n        1,\n        2\n    ],\n    \"role_id\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{apiBase}}/content_artists","description":"<h1 id=\"add-content-artists\">Add Content Artists</h1>\n<h2 id=\"overview\">Overview</h2>\n<p>This endpoint associates one or more artists with a specific content item. It allows you to link artists to movies, TV shows, or other content types and specify their roles (e.g., actor, director, producer).</p>\n<h2 id=\"request-body-parameters\">Request Body Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>content_id</code></td>\n<td>integer</td>\n<td>Yes</td>\n<td>The unique identifier of the content item (movie, TV show, etc.) to which artists will be associated</td>\n</tr>\n<tr>\n<td><code>content_type</code></td>\n<td>integer</td>\n<td>Yes</td>\n<td>Numeric identifier representing the type of content (e.g., 1 = Movie, 2 = TV Show, 3 = Episode)</td>\n</tr>\n<tr>\n<td><code>artist_id</code></td>\n<td>array of integers</td>\n<td>Yes</td>\n<td>An array containing the IDs of artists to associate with the content. Multiple artists can be added in a single request</td>\n</tr>\n<tr>\n<td><code>role_id</code></td>\n<td>integer</td>\n<td>Yes</td>\n<td>The role identifier that defines the artists' involvement in the content (e.g., 1 = Actor, 2 = Director, 3 = Producer)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"example-use-case\">Example Use Case</h2>\n<p>You're adding cast information for a new TV show. The show has ID 1, and you want to associate two actors (with IDs 1 and 2) to it. Both actors have the role of \"Actor\" (role_id: 1).</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"content_id\": 1,\n  \"content_type\": 2,\n  \"artist_id\": [1, 2],\n  \"role_id\": 1\n}\n\n</code></pre>\n<h2 id=\"expected-response\">Expected Response</h2>\n<p>A successful request will typically return:</p>\n<ul>\n<li><p><strong>Status Code</strong>: <code>200 OK</code> or <code>201 Created</code></p>\n</li>\n<li><p><strong>Response Body</strong>: Confirmation of the association, potentially including the created relationship IDs or a success message</p>\n</li>\n</ul>\n<p>Example response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"message\": \"Artists successfully associated with content\",\n  \"data\": {\n    \"content_id\": 1,\n    \"artists_added\": [1, 2]\n  }\n}\n\n</code></pre>\n<h2 id=\"notes\">Notes</h2>\n<ul>\n<li><p>Ensure all artist IDs exist in the system before making this request</p>\n</li>\n<li><p>The same artist can be associated with different roles by making separate requests with different <code>role_id</code> values</p>\n</li>\n<li><p>Duplicate associations may be rejected depending on the API's business logic</p>\n</li>\n</ul>\n","urlObject":{"path":["content_artists"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7cff40ad-02bf-4aac-8ec7-1667deac825a"},{"name":"Get Content Artists","id":"cf57c321-2ae3-4ac4-a74d-155155aa27a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/content_artists?content_id=170&content_type=1&info=true","description":"<h1 id=\"get-content-artists\">Get Content Artists</h1>\n<h2 id=\"description\">Description</h2>\n<p>This endpoint retrieves detailed information about artists associated with specific content. It returns a list of artists (actors, directors, producers, etc.) who are credited for a particular piece of content in the Vodlix system.</p>\n<h2 id=\"query-parameters\">Query Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>content_id</code></td>\n<td>integer</td>\n<td>Yes</td>\n<td>The unique identifier of the content for which you want to retrieve artist information. Example: <code>170</code></td>\n</tr>\n<tr>\n<td><code>content_type</code></td>\n<td>integer</td>\n<td>Yes</td>\n<td>The type of content being queried. Common values: <code>1</code> for movies, <code>2</code> for TV shows, <code>3</code> for series episodes</td>\n</tr>\n<tr>\n<td><code>info</code></td>\n<td>boolean</td>\n<td>Yes</td>\n<td>When set to <code>true</code>, returns extended information about each artist including biography, profile images, and additional metadata. Set to <code>false</code> for basic artist details only</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"expected-response-format\">Expected Response Format</h2>\n<p>The API returns a JSON object containing an array of artist objects with the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"success\",\n  \"data\": {\n    \"artists\": [\n      {\n        \"artist_id\": 123,\n        \"name\": \"Artist Name\",\n        \"role\": \"Actor/Director/Producer\",\n        \"character_name\": \"Character Name (if applicable)\",\n        \"profile_image\": \"URL to profile image\",\n        \"biography\": \"Artist biography (when info=true)\",\n        \"birth_date\": \"YYYY-MM-DD\",\n        \"nationality\": \"Country\"\n      }\n    ]\n  }\n}\n\n</code></pre>\n<h2 id=\"example-use-cases\">Example Use Cases</h2>\n<ol>\n<li><p><strong>Display Cast &amp; Crew</strong>: Retrieve all artists for a movie to display on a content detail page</p>\n</li>\n<li><p><strong>Filter by Role</strong>: Get specific artist types (actors, directors) for content credits</p>\n</li>\n<li><p><strong>Artist Profiles</strong>: Fetch detailed artist information including biographies for artist profile pages</p>\n</li>\n<li><p><strong>Content Recommendations</strong>: Use artist data to suggest similar content featuring the same artists</p>\n</li>\n</ol>\n<h2 id=\"notes\">Notes</h2>\n<ul>\n<li><p>The <code>apiBase</code> variable should be set to your Vodlix API base URL</p>\n</li>\n<li><p>Response may vary based on content availability and artist data completeness</p>\n</li>\n<li><p>Setting <code>info=false</code> will improve response time for basic queries</p>\n</li>\n</ul>\n","urlObject":{"path":["content_artists"],"host":["{{apiBase}}"],"query":[{"key":"content_id","value":"170"},{"key":"content_type","value":"1"},{"disabled":true,"key":"limit","value":"6"},{"description":{"content":"<p>By setting it to true, result will also include artist roles</p>\n","type":"text/plain"},"key":"info","value":"true"}],"variable":[]}},"response":[],"_postman_id":"cf57c321-2ae3-4ac4-a74d-155155aa27a6"},{"name":"Delete Content Artists","id":"83ebc123-ecb5-4331-b4da-70e1b9ec4061","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{apiBase}}/content_artists?content_artist_id=1","description":"<h1 id=\"delete-content-artist\">Delete Content Artist</h1>\n<p>This endpoint deletes a content artist from the Vodlix system by their unique identifier.</p>\n<h2 id=\"description\">Description</h2>\n<p>Removes a content artist record from the database. This is a permanent action that will delete the artist's association with content in the system.</p>\n<h2 id=\"query-parameters\">Query Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>content_artist_id</code></td>\n<td>integer</td>\n<td>Yes</td>\n<td>The unique identifier of the content artist to delete</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response-codes\">Response Codes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>200 OK</code></td>\n<td>Content artist successfully deleted</td>\n</tr>\n<tr>\n<td><code>400 Bad Request</code></td>\n<td>Invalid or missing <code>content_artist_id</code> parameter</td>\n</tr>\n<tr>\n<td><code>401 Unauthorized</code></td>\n<td>Missing or invalid authentication credentials</td>\n</tr>\n<tr>\n<td><code>404 Not Found</code></td>\n<td>Content artist with the specified ID does not exist</td>\n</tr>\n<tr>\n<td><code>500 Internal Server Error</code></td>\n<td>Server error occurred while processing the request</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"example-usage\">Example Usage</h2>\n<p>To delete a content artist with ID <code>1</code>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>DELETE {{apiBase}}/content_artists?content_artist_id=1\n\n</code></pre><p><strong>Note:</strong> Make sure to replace the <code>content_artist_id</code> value with the actual ID of the content artist you want to delete. This action cannot be undone, so verify the ID before sending the request.</p>\n","urlObject":{"path":["content_artists"],"host":["{{apiBase}}"],"query":[{"key":"content_artist_id","value":"1"}],"variable":[]}},"response":[],"_postman_id":"83ebc123-ecb5-4331-b4da-70e1b9ec4061"},{"name":"Add artist","id":"cafa7104-51d4-4a46-b4b3-acf009f8e877","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"John\",\n    \"middle_name\": \"Doe\",\n    \"last_name\": \"Smith\",\n    \"description\": \"This is a demo artist\",\n    \"gender\": \"male\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiBase}}/artists","description":"<h1 id=\"add-artist\">Add Artist</h1>\n<h2 id=\"overview\">Overview</h2>\n<p>This endpoint creates a new artist in the Vodlix system. It accepts artist details including name, biographical information, and gender, then returns the complete artist profile with a unique artist ID.</p>\n<h2 id=\"request-details\">Request Details</h2>\n<p><strong>Method:</strong> <code>POST</code><br /><strong>Endpoint:</strong> <code>{{apiBase}}/artists</code></p>\n<h3 id=\"request-body-parameters\">Request Body Parameters</h3>\n<p>The request accepts a JSON payload with the following fields:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>first_name</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The artist's first name</td>\n</tr>\n<tr>\n<td><code>middle_name</code></td>\n<td>string</td>\n<td>No</td>\n<td>The artist's middle name</td>\n</tr>\n<tr>\n<td><code>last_name</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The artist's last name</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>string</td>\n<td>No</td>\n<td>Biographical description or summary of the artist</td>\n</tr>\n<tr>\n<td><code>gender</code></td>\n<td>string</td>\n<td>No</td>\n<td>The artist's gender (e.g., \"male\", \"female\")</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Example Request Body:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"first_name\": \"John\",\n  \"middle_name\": \"Doe\",\n  \"last_name\": \"Smith\",\n  \"description\": \"This is a demo artist\",\n  \"gender\": \"male\"\n}\n\n</code></pre>\n<h2 id=\"response-format\">Response Format</h2>\n<h3 id=\"success-response-200-ok\">Success Response (200 OK)</h3>\n<p>The API returns a JSON object containing the newly created artist's complete profile.</p>\n<p><strong>Response Structure:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": 200,\n  \"timestamp\": 1768335079,\n  \"time\": 0.054,\n  \"ip\": \"182.176.88.4\",\n  \"message\": \"Success\",\n  \"data\": {\n    \"artist_id\": \"15667\",\n    \"primary_role\": \"0\",\n    \"first_name\": \"John\",\n    \"middle_name\": \"Doe\",\n    \"last_name\": \"Smith\",\n    \"date_added\": \"2026-01-13 20:11:19\",\n    \"date_of_birth\": null,\n    \"gender\": \"male\",\n    \"bio_description\": \"This is a demo artist\",\n    \"avatar_url\": null,\n    \"file_directory\": \"\",\n    \"file_name\": \"\",\n    \"thumbs\": {\n      \"original\": \"https://demo.cloud.vodlix.com/images/no-image.png\"\n    },\n    \"backdrop\": {\n      \"original\": \"https://demo.cloud.vodlix.com/images/no-image.png\"\n    },\n    \"total_count\": \"0\",\n    \"url_slug\": \"/15667/john-doe-smith\"\n  }\n}\n\n</code></pre>\n<h3 id=\"response-fields\">Response Fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>status</code></td>\n<td>HTTP status code</td>\n</tr>\n<tr>\n<td><code>timestamp</code></td>\n<td>Unix timestamp of the response</td>\n</tr>\n<tr>\n<td><code>time</code></td>\n<td>Request processing time in seconds</td>\n</tr>\n<tr>\n<td><code>message</code></td>\n<td>Response message indicating success or failure</td>\n</tr>\n<tr>\n<td><code>data.artist_id</code></td>\n<td>Unique identifier for the newly created artist</td>\n</tr>\n<tr>\n<td><code>data.date_added</code></td>\n<td>Timestamp when the artist was added to the system</td>\n</tr>\n<tr>\n<td><code>data.url_slug</code></td>\n<td>URL-friendly slug for the artist's profile page</td>\n</tr>\n<tr>\n<td><code>data.thumbs</code></td>\n<td>Object containing thumbnail image URLs</td>\n</tr>\n<tr>\n<td><code>data.backdrop</code></td>\n<td>Object containing backdrop image URLs</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"notes\">Notes</h2>\n<ul>\n<li><p>The API automatically generates a unique <code>artist_id</code> upon successful creation</p>\n</li>\n<li><p>A URL-friendly slug is automatically created based on the artist's name</p>\n</li>\n<li><p>Default placeholder images are assigned for thumbnails and backdrops if not provided</p>\n</li>\n<li><p>The <code>date_added</code> field is automatically set to the current timestamp</p>\n</li>\n<li><p>Optional fields like <code>date_of_birth</code> and <code>avatar_url</code> will be <code>null</code> if not provided during creation</p>\n</li>\n</ul>\n","urlObject":{"path":["artists"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cafa7104-51d4-4a46-b4b3-acf009f8e877"},{"name":"Get Artist By Id","id":"c9f0b070-7ada-4aef-8eb7-9b29310a7f0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/artists/1","description":"<h1 id=\"get-artist-by-id\">Get Artist By Id</h1>\n<h2 id=\"overview\">Overview</h2>\n<p>This API endpoint retrieves detailed information about a specific artist using their unique identifier. The endpoint returns comprehensive artist data including profile information, metadata, and related attributes.</p>\n<h2 id=\"url-structure\">URL Structure</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET {{apiBase}}/artists/{artistId}\n\n</code></pre><h3 id=\"path-parameters\">Path Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>artistId</code></td>\n<td>integer</td>\n<td>Yes</td>\n<td>The unique identifier of the artist to retrieve</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Example:</strong> <code>{{apiBase}}/artists/1</code></p>\n<h2 id=\"response-format\">Response Format</h2>\n<p>The endpoint returns a JSON object containing artist information. Expected response structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": 1,\n  \"name\": \"Artist Name\",\n  \"bio\": \"Artist biography\",\n  \"genre\": \"Music genre\",\n  \"imageUrl\": \"https://example.com/image.jpg\",\n  // Additional artist properties\n}\n\n</code></pre>\n<h2 id=\"status-codes\">Status Codes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>200 OK</code></td>\n<td>Artist successfully retrieved</td>\n</tr>\n<tr>\n<td><code>401 Unauthorized</code></td>\n<td>Missing or invalid authentication credentials</td>\n</tr>\n<tr>\n<td><code>404 Not Found</code></td>\n<td>Artist with the specified ID does not exist</td>\n</tr>\n<tr>\n<td><code>500 Internal Server Error</code></td>\n<td>Server error occurred while processing the request</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"use-cases\">Use Cases</h2>\n<ul>\n<li><p><strong>Artist Profile Display</strong>: Fetch artist details to display on artist profile pages</p>\n</li>\n<li><p><strong>Content Management</strong>: Retrieve artist information for administrative or editorial purposes</p>\n</li>\n<li><p><strong>Data Integration</strong>: Pull artist data for integration with third-party systems or analytics</p>\n</li>\n<li><p><strong>Mobile Applications</strong>: Load artist information for mobile app artist detail views</p>\n</li>\n</ul>\n<h2 id=\"example-usage\">Example Usage</h2>\n<p>To retrieve information for artist with ID 1, send a GET request to:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{{apiBase}}/artists/1\n\n</code></pre><p>For different artists, simply replace the ID in the URL path.</p>\n","urlObject":{"path":["artists","1"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c9f0b070-7ada-4aef-8eb7-9b29310a7f0b"},{"name":"Get Artists","id":"30aff858-01a6-4674-9a94-0487a939a4cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/artists","description":"<h1 id=\"get-artists\">Get Artists</h1>\n<h2 id=\"overview\">Overview</h2>\n<p>This endpoint retrieves a list of all artists available in the Vodlix system. It returns comprehensive information about each artist, including their profile details, metadata, and associated content.</p>\n<h2 id=\"endpoint-details\">Endpoint Details</h2>\n<p><strong>HTTP Method:</strong> <code>GET</code></p>\n<p><strong>Endpoint Path:</strong> <code>{{apiBase}}/artists</code></p>\n<p><strong>Full URL:</strong> <code>{{apiBase}}/artists</code></p>\n<h2 id=\"variables\">Variables</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Variable</th>\n<th>Type</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>apiBase</code></td>\n<td>Environment</td>\n<td>The base URL for the Vodlix API</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><p>The <code>apiBase</code> variable should be configured in your active environment and typically points to the root API URL (e.g., <code>https://api.vodlix.com/v1</code>).</p>\n<h2 id=\"request-parameters\">Request Parameters</h2>\n<p>This endpoint accepts optional query parameters for filtering and pagination:</p>\n<ul>\n<li><p><strong>page</strong> (integer): Page number for pagination</p>\n</li>\n<li><p><strong>limit</strong> (integer): Number of results per page</p>\n</li>\n<li><p><strong>sort</strong> (string): Sort order (e.g., <code>name</code>, <code>created_at</code>)</p>\n</li>\n<li><p><strong>search</strong> (string): Search term to filter artists by name</p>\n</li>\n</ul>\n<h2 id=\"response-format\">Response Format</h2>\n<p>The endpoint returns a JSON response with the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"data\": [\n    {\n      \"id\": \"string\",\n      \"name\": \"string\",\n      \"bio\": \"string\",\n      \"image_url\": \"string\",\n      \"created_at\": \"timestamp\",\n      \"updated_at\": \"timestamp\"\n    }\n  ],\n  \"pagination\": {\n    \"current_page\": 1,\n    \"total_pages\": 10,\n    \"total_items\": 100,\n    \"items_per_page\": 10\n  }\n}\n\n</code></pre>\n<h2 id=\"example-use-cases\">Example Use Cases</h2>\n<ol>\n<li><p><strong>Display Artist Directory</strong>: Retrieve all artists to populate a browsable directory or catalog in your application</p>\n</li>\n<li><p><strong>Search Functionality</strong>: Use with search parameters to implement artist search features</p>\n</li>\n<li><p><strong>Content Management</strong>: Fetch artist data for administrative dashboards or content management systems</p>\n</li>\n<li><p><strong>Analytics</strong>: Retrieve artist lists for reporting and analytics purposes</p>\n</li>\n<li><p><strong>Integration</strong>: Sync artist data with external systems or databases</p>\n</li>\n</ol>\n<h2 id=\"response-codes\">Response Codes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>Success - Artists retrieved successfully</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized - Invalid or missing authentication</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Forbidden - Insufficient permissions</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Not Found - Endpoint not available</td>\n</tr>\n<tr>\n<td>429</td>\n<td>Too Many Requests - Rate limit exceeded</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Internal Server Error - Server-side error</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"notes\">Notes</h2>\n<ul>\n<li><p>Results may be paginated for large datasets</p>\n</li>\n<li><p>Response times may vary based on the total number of artists</p>\n</li>\n<li><p>Consider implementing caching for frequently accessed artist data</p>\n</li>\n<li><p>Check API rate limits to avoid throttling</p>\n</li>\n<li><p>The response structure may include additional fields depending on API version</p>\n</li>\n</ul>\n","urlObject":{"path":["artists"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"30aff858-01a6-4674-9a94-0487a939a4cf"},{"name":"Get Artist Roles","id":"d6bf46c4-62cc-42a3-af36-567dcb85a1a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/artist_roles","description":"<h1 id=\"get-artist-roles\">Get Artist Roles</h1>\n<h2 id=\"description\">Description</h2>\n<p>This endpoint retrieves a list of all available artist roles in the system. Artist roles define the different types of contributions artists can make (e.g., Actor, Director, Producer, Writer, Cinematographer, etc.).</p>\n<h2 id=\"request-details\">Request Details</h2>\n<ul>\n<li><p><strong>Method:</strong> GET</p>\n</li>\n<li><p><strong>Endpoint:</strong> <code>{{apiBase}}/artist_roles</code></p>\n</li>\n<li><p><strong>Query Parameters:</strong> None required</p>\n</li>\n</ul>\n<h2 id=\"response-format\">Response Format</h2>\n<p>The endpoint returns a JSON response containing an array of artist role objects. Each role typically includes:</p>\n<ul>\n<li><p>Role ID</p>\n</li>\n<li><p>Role name</p>\n</li>\n<li><p>Role description (if applicable)</p>\n</li>\n<li><p>Additional metadata</p>\n</li>\n</ul>\n<h2 id=\"example-use-cases\">Example Use Cases</h2>\n<ol>\n<li><p><strong>Populating dropdown menus</strong> - Use this endpoint to fetch available artist roles when creating or editing artist profiles</p>\n</li>\n<li><p><strong>Content categorization</strong> - Retrieve roles to properly categorize and filter artists by their contributions</p>\n</li>\n<li><p><strong>Search and filter functionality</strong> - Display available role options for users to filter content by artist type</p>\n</li>\n<li><p><strong>Admin panels</strong> - Show all available roles for management and configuration purposes</p>\n</li>\n</ol>\n<h2 id=\"notes\">Notes</h2>\n<ul>\n<li><p>This is a read-only endpoint that returns reference data</p>\n</li>\n<li><p>The response is typically cached as artist roles don't change frequently</p>\n</li>\n<li><p>No pagination is required as the number of roles is usually limited</p>\n</li>\n</ul>\n","urlObject":{"path":["artist_roles"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d6bf46c4-62cc-42a3-af36-567dcb85a1a2"},{"name":"Get artist content","id":"f09ba8f1-d252-4a21-9863-7f7adc3f754d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/artists/1/content","description":"<h1 id=\"get-artist-content\">Get Artist Content</h1>\n<h2 id=\"description\">Description</h2>\n<p>This endpoint retrieves all content associated with a specific artist. The content may include albums, tracks, videos, playlists, or other media items created or associated with the artist.</p>\n<h2 id=\"path-parameters\">Path Parameters</h2>\n<ul>\n<li><code>artist_id</code> (integer, required) - The unique identifier of the artist whose content you want to retrieve. In this example, the artist ID is <code>1</code>.</li>\n</ul>\n<h2 id=\"variables\">Variables</h2>\n<ul>\n<li><code>{{apiBase}}</code> (required) - The base URL for the API. This should be configured in your environment variables.</li>\n</ul>\n<h2 id=\"response-format\">Response Format</h2>\n<p>The endpoint returns a JSON response containing the artist's content. The exact structure depends on the API implementation, but typically includes:</p>\n<ul>\n<li>Content items (albums, tracks, videos, etc.)</li>\n<li>Metadata for each content item</li>\n<li>Pagination information (if applicable)</li>\n</ul>\n<h2 id=\"example-use-cases\">Example Use Cases</h2>\n<ul>\n<li><strong>Display Artist Portfolio</strong>: Retrieve all content to display on an artist's profile page</li>\n<li><strong>Content Management</strong>: List all content for administrative or management purposes</li>\n<li><strong>Analytics</strong>: Fetch content data for reporting and analysis</li>\n<li><strong>Mobile App Integration</strong>: Load artist content for mobile applications</li>\n<li><strong>Third-party Integration</strong>: Sync artist content with external platforms</li>\n</ul>\n<h2 id=\"example-request\">Example Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET {{apiBase}}/artists/1/content\n</code></pre><h2 id=\"notes\">Notes</h2>\n<ul>\n<li>Ensure the <code>apiBase</code> variable is properly configured in your active environment</li>\n<li>The artist ID in the URL path can be modified to retrieve content for different artists</li>\n<li>Authentication may be required depending on the API configuration</li>\n</ul>\n","urlObject":{"path":["artists","1","content"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f09ba8f1-d252-4a21-9863-7f7adc3f754d"}],"id":"fa3d3b1f-576a-47c0-9d56-d013b1a6d64b","_postman_id":"fa3d3b1f-576a-47c0-9d56-d013b1a6d64b","description":""},{"name":"Content V2","item":[{"name":"Get category content","id":"6aa6ff4f-d07d-4a00-8837-e18b8bc0545b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/categories/content/10?page=1&paginate=1&limit=15","urlObject":{"path":["v2","categories","content","10"],"host":["{{apiBase}}"],"query":[{"key":"page","value":"1"},{"key":"paginate","value":"1"},{"key":"limit","value":"15"}],"variable":[]}},"response":[],"_postman_id":"6aa6ff4f-d07d-4a00-8837-e18b8bc0545b"},{"name":"Get Trending Content","id":"a5535792-6078-44fd-b8c6-9ecc3348e09c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/trending/content?page=1&paginate=1&limit=25","urlObject":{"path":["v2","trending","content"],"host":["{{apiBase}}"],"query":[{"key":"page","value":"1"},{"key":"paginate","value":"1"},{"key":"limit","value":"25"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"content_type","value":"1"}],"variable":[]}},"response":[],"_postman_id":"a5535792-6078-44fd-b8c6-9ecc3348e09c"},{"name":"Get Recent Content","id":"9249b24c-dc8e-434b-a154-527283ccbd5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/recent/content?page=1&paginate=1&limit=25","urlObject":{"path":["v2","recent","content"],"host":["{{apiBase}}"],"query":[{"key":"page","value":"1"},{"key":"paginate","value":"1"},{"key":"limit","value":"25"},{"disabled":true,"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"content_type","value":"1"}],"variable":[]}},"response":[],"_postman_id":"9249b24c-dc8e-434b-a154-527283ccbd5d"}],"id":"31782f37-bc75-4c5c-83a5-83bbedb2771e","_postman_id":"31782f37-bc75-4c5c-83a5-83bbedb2771e","description":""},{"name":"Live Channels","item":[{"name":"EPG","item":[{"name":"Get EPG","id":"b967c682-4a16-4fee-bd5e-50d20aab88c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/epg?channel_id=24&start_date=2022-07-05&end_date=2022-07-05","urlObject":{"path":["epg"],"host":["{{apiBase}}"],"query":[{"key":"channel_id","value":"24"},{"disabled":true,"key":"date","value":"2022-07-04"},{"key":"start_date","value":"2022-07-05"},{"key":"end_date","value":"2022-07-05"}],"variable":[]}},"response":[],"_postman_id":"b967c682-4a16-4fee-bd5e-50d20aab88c4"}],"id":"b1977675-f4cc-4080-a484-65edda3d7eb9","_postman_id":"b1977675-f4cc-4080-a484-65edda3d7eb9","description":""}],"id":"2b8b3e4d-6721-46c2-b69b-e36de22fcede","_postman_id":"2b8b3e4d-6721-46c2-b69b-e36de22fcede","description":""},{"name":"Featured Content","item":[{"name":"Get featured content list","id":"09a0bc69-e698-4cc6-918d-1097039d6dd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/featured_content?content_type=2","urlObject":{"path":["v2","featured_content"],"host":["{{apiBase}}"],"query":[{"key":"content_type","value":"2"}],"variable":[]}},"response":[],"_postman_id":"09a0bc69-e698-4cc6-918d-1097039d6dd5"}],"id":"b30edfe7-d00d-45ba-a41d-9982872dc9ab","_postman_id":"b30edfe7-d00d-45ba-a41d-9982872dc9ab","description":""}],"id":"64734c0d-c4a3-4e16-b17a-04244d58e7ee","description":"<p>This section in our API documentation is your central hub for accessing a wide array of media content on the platform. This includes, but is not limited to, movies, live channels, TV shows, categories, pages, comments, ratings, and the search functionality. Utilize this section to effectively retrieve and display the diverse content available on your platform.</p>\n","_postman_id":"64734c0d-c4a3-4e16-b17a-04244d58e7ee"},{"name":"Users","item":[{"name":"OTP","item":[{"name":"Send OTP","id":"9425071c-39d0-426a-b6fb-2c1b6135b5c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"user","value":"+923167265251","type":"text","description":"<p>email/phone</p>\n"}]},"url":"{{apiBase}}/users/send/otp","urlObject":{"path":["users","send","otp"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9425071c-39d0-426a-b6fb-2c1b6135b5c2"},{"name":"Verify OTP","id":"205c7ce0-db59-4eac-894c-b0f36b44107c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"user","value":"+923167265251","type":"text"},{"key":"code","value":"7489","type":"text"}]},"url":"{{apiBase}}/users/verify/otp","urlObject":{"path":["users","verify","otp"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"205c7ce0-db59-4eac-894c-b0f36b44107c"}],"id":"b640d162-84d2-4a4d-a909-8f9b0718c3f4","_postman_id":"b640d162-84d2-4a4d-a909-8f9b0718c3f4","description":""},{"name":"User Profiles","item":[{"name":"Profile Lock","item":[{"name":"Forgot","item":[{"name":"Forgot Profile Lock","id":"574e8a17-80ec-4565-abf0-bce65b221ef7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{apiBase}}/users/profile/lock/forgot","urlObject":{"path":["users","profile","lock","forgot"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"574e8a17-80ec-4565-abf0-bce65b221ef7"},{"name":"Finally Reset","id":"c5645992-7cd7-49bc-944b-7fb5cb9db589","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"userid","value":"1","type":"text","description":"<p>sent to email</p>\n"},{"key":"verification_code","value":"YTAxNGZmM2I0MDIwMjMwNDAzMTc0NDM1","type":"text","description":"<p>sent to email</p>\n"},{"key":"profile_id","value":"1","type":"text","description":"<p>sent to email</p>\n"},{"key":"pin_code","value":"1234","type":"text"}]},"url":"{{apiBase}}/users/profile/lock/reset","urlObject":{"path":["users","profile","lock","reset"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c5645992-7cd7-49bc-944b-7fb5cb9db589"}],"id":"f80b10cb-b516-469b-a8e9-93c97a4ea2c2","_postman_id":"f80b10cb-b516-469b-a8e9-93c97a4ea2c2","description":""},{"name":"Profile Lock","id":"dea1d816-f960-47b5-8b7c-4eea5b5cce1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"pin_code","value":"1235","type":"text","description":"<p>Profile ID and User ID is optional Server will automatically get them</p>\n"}]},"url":"{{apiBase}}/users/profile/lock","urlObject":{"path":["users","profile","lock"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dea1d816-f960-47b5-8b7c-4eea5b5cce1c"},{"name":"Remove Profile Lock","id":"75f07f79-9f1d-4e01-9ee4-6d7615f8b429","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{apiBase}}/users/profile/lock/remove","urlObject":{"path":["users","profile","lock","remove"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"75f07f79-9f1d-4e01-9ee4-6d7615f8b429"}],"id":"c9b9ecb9-e13a-4e63-a2f0-e90f15c74ce8","_postman_id":"c9b9ecb9-e13a-4e63-a2f0-e90f15c74ce8","description":""},{"name":"Set profile picture","id":"bb7c29bb-1344-44fb-bb28-5a583fd8a296","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"avatarId","value":"2","type":"text","disabled":true},{"key":"profileId","value":"1","type":"text"},{"key":"custom","value":"1","type":"text"},{"key":"avatar_file","type":"file","src":"/Users/zainjamil/Documents/Resources/vodlix/square.jpeg"}]},"url":"{{apiBase}}/v2/users/me/profile/1/setPicture","urlObject":{"path":["v2","users","me","profile","1","setPicture"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bb7c29bb-1344-44fb-bb28-5a583fd8a296"},{"name":"Add Profile","id":"297b03a1-fc71-493b-9a92-57ad2e9a239c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"first_name","value":"new","type":"text"},{"key":"maturity_level","value":"16_plus","description":"<p>can be [ all, 7_plus,  13_plus,  16_plius, 18_plus</p>\n","type":"text"}]},"url":"{{apiBase}}/users/addSubProfile","urlObject":{"path":["users","addSubProfile"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"297b03a1-fc71-493b-9a92-57ad2e9a239c"},{"name":"Update Profile","id":"10e8668f-2dfb-49fe-a75f-e657faa93ad6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"user_profile_id","value":"510","type":"text"},{"key":"first_name","value":"Helloasdf","type":"text"},{"key":"maturity_level","value":"18_plus","type":"text"}]},"url":"{{apiBase}}/users/updateSubProfile","urlObject":{"path":["users","updateSubProfile"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"10e8668f-2dfb-49fe-a75f-e657faa93ad6"}],"id":"c9b1053d-88f1-4893-bf88-d1f0e1d5b79b","_postman_id":"c9b1053d-88f1-4893-bf88-d1f0e1d5b79b","description":""},{"name":"Device Management","item":[{"name":"Add Device","id":"067350fe-101f-43dc-95a3-c4f991d7676f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{apiBase}}/v2/device","urlObject":{"path":["v2","device"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"067350fe-101f-43dc-95a3-c4f991d7676f"},{"name":"Update Device Activity","id":"f5cc9b74-6a99-484c-825a-0c7b2c4ef10c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"mac_address","value":"847ba5046647646d","type":"text"},{"key":"content_id","value":"2018","type":"text"},{"key":"content_type","value":"1","type":"text"},{"key":"current_screen","value":"Player","type":"text"}]},"url":"{{apiBase}}/v2/device_activity","urlObject":{"path":["v2","device_activity"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f5cc9b74-6a99-484c-825a-0c7b2c4ef10c"},{"name":"Device Check","id":"8f379753-d742-43ff-99d7-6f1bd91d22a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"mac_address","value":"847ba5046647646d","type":"text"}]},"url":"{{apiBase}}/v2/device_check?mac_address=847ba5046647646d","urlObject":{"path":["v2","device_check"],"host":["{{apiBase}}"],"query":[{"key":"mac_address","value":"847ba5046647646d"}],"variable":[]}},"response":[],"_postman_id":"8f379753-d742-43ff-99d7-6f1bd91d22a4"}],"id":"9739f918-3a76-41fe-b55a-0906ad1c4b2f","_postman_id":"9739f918-3a76-41fe-b55a-0906ad1c4b2f","description":""},{"name":"User Interests / Content Subscriptions","item":[{"name":"Subscribe content","id":"bc81292d-db05-4e00-839f-9ba6414bbdd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"content_id","value":"611","type":"text","disabled":true},{"key":"content_type","value":"8","type":"text"},{"key":"userid","value":"1","type":"text","description":"<p>optional (server will handle)</p>\n"},{"key":"profile_id","value":"1","type":"text","description":"<p>optional (server will handle)</p>\n"},{"key":"content_ids[]","value":"1","type":"text"}]},"url":"{{apiBase}}/v2/content/subscribe","urlObject":{"path":["v2","content","subscribe"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bc81292d-db05-4e00-839f-9ba6414bbdd0"},{"name":"Unsubscribe content","id":"8439a11b-ce0b-4573-a0d1-b2c68c2d0bc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"content_id","value":"612","type":"text"},{"key":"content_type","value":"8","type":"text"},{"key":"userid","value":"1","type":"text"},{"key":"profile_id","value":"1","type":"text"}]},"url":"{{apiBase}}/v2/content/unsubscribe","urlObject":{"path":["v2","content","unsubscribe"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8439a11b-ce0b-4573-a0d1-b2c68c2d0bc3"}],"id":"c5d9ba78-1d4d-41ce-ba17-fa640b889712","_postman_id":"c5d9ba78-1d4d-41ce-ba17-fa640b889712","description":""},{"name":"TV Login","item":[{"name":"Generate Code","id":"642de83a-fae5-49f2-8602-63b3f3dc0a96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/tv/generate_code","urlObject":{"path":["v2","tv","generate_code"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"642de83a-fae5-49f2-8602-63b3f3dc0a96"},{"name":"Verify Code","id":"31ca3246-6944-445b-bcdc-c86776545094","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"code","value":"395937","description":"<p>6 digit generated code</p>\n","type":"text"}]},"url":"{{apiBase}}/v2/tv/verify_code","urlObject":{"path":["v2","tv","verify_code"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"31ca3246-6944-445b-bcdc-c86776545094"},{"name":"Verify Login","id":"15cc3ad7-d011-4873-8627-8d8840cae805","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"code","value":"143399","type":"text","description":"<p>6 digit generated code</p>\n"}]},"url":"{{apiBase}}/v2/tv/verify_login","urlObject":{"path":["v2","tv","verify_login"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"15cc3ad7-d011-4873-8627-8d8840cae805"}],"id":"7ef72e3f-107b-4d69-be41-9760bdb171e1","_postman_id":"7ef72e3f-107b-4d69-be41-9760bdb171e1","description":""},{"name":"Wallet","item":[{"name":"Get user wallet details","id":"58a2c157-d140-4334-96df-0e77ebd82d57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/wallet/details","urlObject":{"path":["wallet","details"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"58a2c157-d140-4334-96df-0e77ebd82d57"},{"name":"Make a purchase from wallet","id":"35994d99-16d5-4aba-a141-74b4d143f7b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"gateway","value":"wallet","type":"text"},{"key":"agree","value":"true","type":"text"},{"key":"usage_id","value":"","type":"text"},{"key":"content_type","value":"1","type":"text","disabled":true},{"key":"content_id","value":"19","type":"text","disabled":true},{"key":"content_bundle_id","value":"2","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{apiBase}}/wallet/purchase","urlObject":{"path":["wallet","purchase"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"35994d99-16d5-4aba-a141-74b4d143f7b5"}],"id":"6ae7496e-43be-4c92-abc9-257eba6ad8ca","_postman_id":"6ae7496e-43be-4c92-abc9-257eba6ad8ca","description":""},{"name":"User Login Status","item":[{"name":"Kick / Logout User","id":"4fa471d8-1c46-4d68-a975-43ab467c8666","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"APIKEY","value":"ZDdjODM2ODRhODcyMzg4YWFmMWE1ODc0YjBkZTBiY2U=","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"userid","value":"420300820","type":"text"},{"key":"sso","value":"1","type":"text"}]},"url":"{{apiBase}}/users/kick","urlObject":{"path":["users","kick"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4fa471d8-1c46-4d68-a975-43ab467c8666"},{"name":"Check if logged in","id":"a5d76f98-6400-4442-a210-0ecb09b6990b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/users/check_login","urlObject":{"path":["users","check_login"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5d76f98-6400-4442-a210-0ecb09b6990b"}],"id":"0eb1c0c9-e900-4be9-b62a-08bc07a75cee","_postman_id":"0eb1c0c9-e900-4be9-b62a-08bc07a75cee","description":""},{"name":"Sign Up","id":"4556ac7b-5d25-475c-b05a-10cf293383a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"username","value":"name","type":"text"},{"key":"email","value":"name@email.com","type":"text"},{"key":"phone","value":"1234556","type":"text"},{"key":"password","value":"admin1232","type":"text"},{"key":"c_password","value":"admin1232","type":"text","description":"<p>confimr pass</p>\n"},{"key":"country","value":"in","type":"text","description":"<p>Country Code</p>\n"},{"key":"birthday","value":"22/10/2021","type":"text","description":"<p>dd/mm/yyyy</p>\n"},{"key":"sex","value":"male","type":"text"}]},"url":"{{apiBase}}/users/signup","urlObject":{"path":["users","signup"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4556ac7b-5d25-475c-b05a-10cf293383a5"},{"name":"Sign In","event":[{"listen":"test","script":{"id":"226b2df1-827c-4625-ab62-b96b0fbca799","exec":["const jsonData = JSON.parse(responseBody);\r","postman.setEnvironmentVariable('access_token', jsonData.user.token);"],"type":"text/javascript"}}],"id":"1fbaed63-7aba-4986-a5ae-80a67e753890","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"username","value":"admin","type":"text","description":"<p>admin</p>\n"},{"key":"password","value":"admin1232","type":"text","description":"<p>manoj12345</p>\n"}]},"url":"{{apiBase}}/users/signin","urlObject":{"path":["users","signin"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[{"id":"83184196-d464-4ea4-86d9-e5b477abfabf","name":"Error Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"username","value":"admin","type":"text","description":"admin"},{"key":"password","value":"admin1232","type":"text","description":"manoj12345"}]},"url":"{{apiBase}}/users/signin"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 27 Jun 2023 16:53:21 GMT"},{"key":"Server","value":"Apache/2.4.41 (Ubuntu)"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, close"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 400,\n    \"message\": \"Invalid username or password\",\n    \"data\": {}\n}"}],"_postman_id":"1fbaed63-7aba-4986-a5ae-80a67e753890"},{"name":"Get User Details","id":"cb3d9c16-ac95-46bb-99cb-2d45ad3e4d33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/users/list/2","urlObject":{"path":["users","list","2"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb3d9c16-ac95-46bb-99cb-2d45ad3e4d33"},{"name":"Select profile","id":"3609efc6-9960-45c6-bd2a-06b2914b66f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"profile_id","value":"1","type":"text"}]},"url":"{{apiBase}}/users/selectProfile","urlObject":{"path":["users","selectProfile"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3609efc6-9960-45c6-bd2a-06b2914b66f1"},{"name":"Sign Out","id":"ae636d39-fb80-480e-aef2-3d2e5f59cac2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{apiBase}}/users/signout","urlObject":{"path":["users","signout"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae636d39-fb80-480e-aef2-3d2e5f59cac2"},{"name":"Rentals","id":"86b5ef0a-3ff9-45ec-8d42-a17e78ff9d56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/users/me/rentals?paginate=1&page=1","urlObject":{"path":["users","me","rentals"],"host":["{{apiBase}}"],"query":[{"key":"paginate","value":"1"},{"key":"page","value":"1"}],"variable":[]}},"response":[],"_postman_id":"86b5ef0a-3ff9-45ec-8d42-a17e78ff9d56"},{"name":"Get icons list","id":"e5763c48-6825-4d83-9c44-e19f0b106159","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/users/icons","urlObject":{"path":["v2","users","icons"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e5763c48-6825-4d83-9c44-e19f0b106159"},{"name":"Get My Invoices","id":"6974d2d4-072b-46e6-ae56-ddbd7e2420b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/me/invoices","urlObject":{"path":["v2","me","invoices"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6974d2d4-072b-46e6-ae56-ddbd7e2420b6"},{"name":"Get My Invoice by Id","id":"e7ff6a59-d739-4c90-881e-6c471cda5f9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/me/invoices/14","urlObject":{"path":["v2","me","invoices","14"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e7ff6a59-d739-4c90-881e-6c471cda5f9f"},{"name":"My connected accounts","id":"46ce43bc-1eae-4d6c-a181-eab500efe1cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"avatarId","value":"2","description":"<p>Index value from icons list</p>\n","type":"text"}]},"url":"{{apiBase}}/v2/me/connectedAccounts","urlObject":{"path":["v2","me","connectedAccounts"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"46ce43bc-1eae-4d6c-a181-eab500efe1cf"},{"name":"Get My Details","event":[{"listen":"test","script":{"id":"491e2b36-f5d1-4685-bca7-47c340d89b62","exec":[""],"type":"text/javascript"}}],"id":"2f289313-c93d-47ec-8a4a-333977586671","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"user-agent":true}},"request":{"method":"GET","header":[],"body":{"mode":"file","file":{}},"url":"{{apiBase}}/users/me","urlObject":{"path":["users","me"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2f289313-c93d-47ec-8a4a-333977586671"},{"name":"Forget Password","id":"82bdf4ce-6364-4b75-97d1-0dd28d434b06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"reset","value":"true","type":"text"},{"key":"email","value":"test@gmailcom","type":"text"},{"key":"code","value":"123123","type":"text"},{"key":"password","value":"1232","type":"text"},{"key":"confirm_password","value":"1232","type":"text"}]},"url":"{{apiBase}}/forgot/password","urlObject":{"path":["forgot","password"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"82bdf4ce-6364-4b75-97d1-0dd28d434b06"},{"name":"Add to My List Video","id":"6318ed95-b9a0-4464-8cc1-8de7f0bc9144","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"videoid","value":"1","type":"text"}]},"url":"{{apiBase}}/videos/addToFavourites","urlObject":{"path":["videos","addToFavourites"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6318ed95-b9a0-4464-8cc1-8de7f0bc9144"},{"name":"Add to My List Series","id":"d7f857aa-287a-4a30-afa0-ca2d22a46667","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"series_id","value":"1","type":"text"}]},"url":"{{apiBase}}/series/addToFavourites","urlObject":{"path":["series","addToFavourites"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d7f857aa-287a-4a30-afa0-ca2d22a46667"},{"name":"Remove from My List Video","id":"0fe7e77a-695e-456f-a597-6b438be7ce21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"videoid","value":"1","type":"text"}]},"url":"{{apiBase}}/videos/removeFavourite","urlObject":{"path":["videos","removeFavourite"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0fe7e77a-695e-456f-a597-6b438be7ce21"},{"name":"Remove from My List Series","id":"8ec006e5-d38c-491f-ba6f-a3fd99101037","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"series_id","value":"1","type":"text"}]},"url":"{{apiBase}}/series/removeFavourite","urlObject":{"path":["series","removeFavourite"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ec006e5-d38c-491f-ba6f-a3fd99101037"},{"name":"Remove Profile","id":"6bf8eb03-d251-4e37-a57b-5bd3e27c721a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{apiBase}}/users/deleteSubProfile/{{user_profiel_id}}","urlObject":{"path":["users","deleteSubProfile","{{user_profiel_id}}"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6bf8eb03-d251-4e37-a57b-5bd3e27c721a"}],"id":"af8ea38f-9ce7-47d5-b03d-ad436c4bc4a6","_postman_id":"af8ea38f-9ce7-47d5-b03d-ad436c4bc4a6","description":""},{"name":"Statistics","item":[{"name":"Add Stats","id":"a1d66d58-719c-42ae-98cc-810ed042f74d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"browser\": \"android_app\",\r\n    \"categories\": [\r\n        1,\r\n        10,\r\n        23\r\n    ],\r\n    \"country\": null,\r\n    \"device_type\": \"phone\",\r\n    \"device_name\": \"tecno tecno bf7\",\r\n    \"object_id\": 4792,\r\n    \"object_type\": 1,\r\n    \"content_length\": 7196,\r\n    \"app_name\": \"Vodlix Mobile\",\r\n    \"app_version\": \"4.6.1\",\r\n    \"os\": \"android\",\r\n    \"package\": \"svod\",\r\n    \"season_id\": 0,\r\n    \"series_id\": 0,\r\n    \"title\": \"Kandahar (2023)\",\r\n    \"uploader\": 1,\r\n    \"user\": null,\r\n    \"bitrate\": 0,\r\n    \"partner_id\": 0,\r\n    \"is_chromecast\": 0,\r\n    \"series_title\": \"\",\r\n    \"event\": \"impression\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{apiBase}}/stats","description":"<h1 id=\"vodlix-stats-api-documentation\">Vodlix Stats API Documentation</h1>\n<p>Track user interactions with your video content - views, playback progress, and content impressions.</p>\n<hr />\n<h2 id=\"endpoint\">Endpoint</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /api/stats\n</code></pre><p><strong>Authentication:</strong> Optional - works for both logged-in and anonymous users</p>\n<hr />\n<h2 id=\"getting-started\">Getting Started</h2>\n<p>Send video events to track how users interact with your content. The API handles most details automatically.</p>\n<h3 id=\"simple-example\">Simple Example</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"object_id\": 12345,\n  \"object_type\": 1,\n  \"event\": \"view\"\n}\n</code></pre>\n<p>That's it! The system will auto-detect the browser, device, and operating system.</p>\n<hr />\n<h2 id=\"parameters\">Parameters</h2>\n<h3 id=\"required-just-3\">Required (Just 3!)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>object_id</code></td>\n<td>integer</td>\n<td>Video or episode ID</td>\n<td><code>12345</code></td>\n</tr>\n<tr>\n<td><code>object_type</code></td>\n<td>integer</td>\n<td>Content type (see below)</td>\n<td><code>1</code></td>\n</tr>\n<tr>\n<td><code>event</code></td>\n<td>string</td>\n<td>What happened (see events below)</td>\n<td><code>\"view\"</code></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Content Types:</strong></p>\n<ul>\n<li><code>1</code> = Video</li>\n<li><code>3</code> = Episode (part of a series)</li>\n<li><code>4</code> = Live stream</li>\n</ul>\n<h3 id=\"optional-add-as-needed\">Optional (Add as needed)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>title</code></td>\n<td>string</td>\n<td>Video title</td>\n<td><code>\"Action Movie 2024\"</code></td>\n</tr>\n<tr>\n<td><code>seconds</code></td>\n<td>integer</td>\n<td>How many seconds watched</td>\n<td><code>120</code></td>\n</tr>\n<tr>\n<td><code>content_length</code></td>\n<td>integer</td>\n<td>Total video duration</td>\n<td><code>7200</code></td>\n</tr>\n<tr>\n<td><code>series_id</code></td>\n<td>integer</td>\n<td>Series ID (for episodes)</td>\n<td><code>100</code></td>\n</tr>\n<tr>\n<td><code>series_title</code></td>\n<td>string</td>\n<td>Series name</td>\n<td><code>\"Season 1\"</code></td>\n</tr>\n<tr>\n<td><code>uploader</code></td>\n<td>integer</td>\n<td>Creator's user ID</td>\n<td><code>50</code></td>\n</tr>\n<tr>\n<td><code>partner_id</code></td>\n<td>integer</td>\n<td>Content partner ID</td>\n<td><code>25</code></td>\n</tr>\n<tr>\n<td><code>device_type</code></td>\n<td>string</td>\n<td><code>mobile</code>, <code>tablet</code>, or <code>desktop</code></td>\n<td><code>\"mobile\"</code></td>\n</tr>\n<tr>\n<td><code>os</code></td>\n<td>string</td>\n<td>Operating system</td>\n<td><code>\"android\"</code></td>\n</tr>\n<tr>\n<td><code>browser</code></td>\n<td>string</td>\n<td>Browser or app name</td>\n<td><code>\"chrome\"</code></td>\n</tr>\n<tr>\n<td><code>app_name</code></td>\n<td>string</td>\n<td>Your app name</td>\n<td><code>\"Vodlix Mobile\"</code></td>\n</tr>\n<tr>\n<td><code>app_version</code></td>\n<td>string</td>\n<td>App version</td>\n<td><code>\"4.6.1\"</code></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td>string</td>\n<td>2-letter country code</td>\n<td><code>\"us\"</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"events-you-can-track\">Events You Can Track</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Event</th>\n<th>When to Use</th>\n<th>Required Extra Fields</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>view</code></td>\n<td>User lands on video page</td>\n<td>None</td>\n</tr>\n<tr>\n<td><code>start</code></td>\n<td>User clicks play</td>\n<td>None</td>\n</tr>\n<tr>\n<td><code>playback</code></td>\n<td>Every 10 seconds during playback</td>\n<td><code>seconds</code></td>\n</tr>\n<tr>\n<td><code>impression</code></td>\n<td>Content shown in feed/carousel</td>\n<td>None</td>\n</tr>\n<tr>\n<td><code>finish</code></td>\n<td>Video completes</td>\n<td>None</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"examples-that-work\">Examples That Work</h2>\n<h3 id=\"track-a-video-view\">Track a Video View</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">curl -X POST https://your-domain.com/api/stats \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"object_id\": 12345,\n    \"object_type\": 1,\n    \"event\": \"view\",\n    \"title\": \"Amazing Video\"\n  }'\n</code></pre>\n<h3 id=\"track-video-start\">Track Video Start</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"object_id\": 12345,\n  \"object_type\": 1,\n  \"event\": \"start\",\n  \"title\": \"Amazing Video\",\n  \"content_length\": 3600\n}\n</code></pre>\n<h3 id=\"track-playback-progress\">Track Playback Progress</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"object_id\": 12345,\n  \"object_type\": 1,\n  \"event\": \"playback\",\n  \"seconds\": 120,\n  \"content_length\": 3600,\n  \"title\": \"Amazing Video\"\n}\n</code></pre>\n<h3 id=\"track-video-completion\">Track Video Completion</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"object_id\": 12345,\n  \"object_type\": 1,\n  \"event\": \"finish\",\n  \"seconds\": 3600,\n  \"title\": \"Amazing Video\"\n}\n</code></pre>\n<h3 id=\"track-mobile-app-view\">Track Mobile App View</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"object_id\": 4792,\n  \"object_type\": 1,\n  \"event\": \"impression\",\n  \"title\": \"Kandahar (2023)\",\n  \"device_type\": \"mobile\",\n  \"browser\": \"android_app\",\n  \"os\": \"android\",\n  \"app_name\": \"Vodlix Mobile\",\n  \"app_version\": \"4.6.1\",\n  \"uploader\": 100,\n  \"partner_id\": 50\n}\n</code></pre>\n<h3 id=\"track-episode-view\">Track Episode View</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"object_id\": 789,\n  \"object_type\": 3,\n  \"event\": \"view\",\n  \"title\": \"Episode 5\",\n  \"series_id\": 100,\n  \"series_title\": \"My Series\",\n  \"uploader\": 50,\n  \"partner_id\": 25\n}\n</code></pre>\n<hr />\n<h2 id=\"response\">Response</h2>\n<h3 id=\"success\">Success</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": 200,\n  \"message\": \"OK\",\n  \"data\": \"ch_insert\"\n}\n</code></pre>\n<p>You'll get this response when everything works correctly.</p>\n<hr />\n<h2 id=\"what-happens-after-you-send-data\">What Happens After You Send Data</h2>\n<h3 id=\"view-tracking\">View Tracking</h3>\n<p>When you send a <code>view</code> event for a video, the system automatically:</p>\n<ul>\n<li>Increments the view counter for that video</li>\n<li>Updates series view count (if it's an episode)</li>\n<li>Records analytics for reporting</li>\n</ul>\n<h3 id=\"auto-detection\">Auto-Detection</h3>\n<p>If you don't send these fields, they're detected automatically:</p>\n<ul>\n<li><code>device_type</code> - Desktop, mobile, or tablet</li>\n<li><code>browser</code> - Chrome, Safari, Firefox, etc.</li>\n<li><code>os</code> - Windows, Mac, iOS, Android, etc.</li>\n</ul>\n<hr />\n<h2 id=\"integration-examples\">Integration Examples</h2>\n<h3 id=\"javascript-web-player\">JavaScript (Web Player)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">// Track view when page loads\nfunction trackView(videoId, title) {\n  fetch('/api/stats', {\n    method: 'POST',\n    headers: { 'Content-Type': 'application/json' },\n    body: JSON.stringify({\n      object_id: videoId,\n      object_type: 1,\n      event: 'view',\n      title: title\n    })\n  });\n}\n\n// Track playback progress every 10 seconds\nfunction trackProgress(videoId, currentTime, duration) {\n  fetch('/api/stats', {\n    method: 'POST',\n    headers: { 'Content-Type': 'application/json' },\n    body: JSON.stringify({\n      object_id: videoId,\n      object_type: 1,\n      event: 'playback',\n      seconds: Math.floor(currentTime),\n      content_length: Math.floor(duration)\n    })\n  });\n}\n</code></pre>\n<h3 id=\"php-server-side\">PHP (Server Side)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">&lt;?php\nfunction trackVideoView($videoId, $title) {\n    $data = [\n        'object_id' =&gt; $videoId,\n        'object_type' =&gt; 1,\n        'event' =&gt; 'view',\n        'title' =&gt; $title\n    ];\n    \n    $ch = curl_init();\n    curl_setopt($ch, CURLOPT_URL, 'https://your-domain.com/api/stats');\n    curl_setopt($ch, CURLOPT_POST, 1);\n    curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));\n    curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']);\n    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n    \n    $response = curl_exec($ch);\n    curl_close($ch);\n    \n    return json_decode($response, true);\n}\n</code></pre>\n<h3 id=\"python-backend\">Python (Backend)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-python\">import requests\n\ndef track_video_view(video_id, title):\n    url = \"https://your-domain.com/api/stats\"\n    data = {\n        \"object_id\": video_id,\n        \"object_type\": 1,\n        \"event\": \"view\",\n        \"title\": title\n    }\n    \n    response = requests.post(url, json=data)\n    return response.json()\n</code></pre>\n<h3 id=\"android-mobile-app\">Android (Mobile App)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-java\">JSONObject stats = new JSONObject();\nstats.put(\"object_id\", videoId);\nstats.put(\"object_type\", 1);\nstats.put(\"event\", \"view\");\nstats.put(\"title\", videoTitle);\nstats.put(\"browser\", \"android_app\");\nstats.put(\"os\", \"android\");\nstats.put(\"app_name\", \"Vodlix Mobile\");\nstats.put(\"app_version\", \"4.6.1\");\n\n// Send to API\nsendStatsRequest(stats);\n</code></pre>\n<hr />\n<h2 id=\"common-patterns\">Common Patterns</h2>\n<h3 id=\"pattern-1-track-view-on-page-load\">Pattern 1: Track View on Page Load</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">// When video page loads\ntrackStats({\n  object_id: 12345,\n  object_type: 1,\n  event: 'view',\n  title: 'My Video'\n});\n</code></pre>\n<h3 id=\"pattern-2-track-start-when-user-plays\">Pattern 2: Track Start When User Plays</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">player.on('play', function() {\n  trackStats({\n    object_id: 12345,\n    object_type: 1,\n    event: 'start',\n    content_length: player.duration()\n  });\n});\n</code></pre>\n<h3 id=\"pattern-3-track-progress-periodically\">Pattern 3: Track Progress Periodically</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">setInterval(function() {\n  if (player.playing()) {\n    trackStats({\n      object_id: 12345,\n      object_type: 1,\n      event: 'playback',\n      seconds: Math.floor(player.currentTime()),\n      content_length: Math.floor(player.duration())\n    });\n  }\n}, 10000); // Every 10 seconds\n</code></pre>\n<h3 id=\"pattern-4-track-completion\">Pattern 4: Track Completion</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">player.on('ended', function() {\n  trackStats({\n    object_id: 12345,\n    object_type: 1,\n    event: 'finish',\n    seconds: Math.floor(player.duration())\n  });\n});\n</code></pre>\n<hr />\n<h2 id=\"tips-for-best-results\">Tips for Best Results</h2>\n<h3 id=\"for-videos\">For Videos</h3>\n<p>Always include:</p>\n<ul>\n<li><code>object_id</code> and <code>object_type</code></li>\n<li><code>event</code> type</li>\n<li><code>title</code> (helps with reporting)</li>\n<li><code>content_length</code> (for playback events)</li>\n</ul>\n<h3 id=\"for-episodes\">For Episodes</h3>\n<p>Also include:</p>\n<ul>\n<li><code>series_id</code> and <code>series_title</code></li>\n<li>These help track series-level analytics</li>\n</ul>\n<h3 id=\"for-mobile-apps\">For Mobile Apps</h3>\n<p>Include these for better insights:</p>\n<ul>\n<li><code>app_name</code> and <code>app_version</code></li>\n<li><code>browser</code> (set to your app identifier like \"android_app\")</li>\n<li><code>os</code> (\"android\" or \"ios\")</li>\n</ul>\n<h3 id=\"for-partners\">For Partners</h3>\n<p>Include <code>partner_id</code> to track partner content separately</p>\n<hr />\n<h2 id=\"quick-reference\">Quick Reference</h2>\n<h3 id=\"minimum-payload\">Minimum Payload</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"object_id\": 12345,\n  \"object_type\": 1,\n  \"event\": \"view\"\n}\n</code></pre>\n<h3 id=\"recommended-payload\">Recommended Payload</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"object_id\": 12345,\n  \"object_type\": 1,\n  \"event\": \"view\",\n  \"title\": \"Video Title\",\n  \"uploader\": 100,\n  \"partner_id\": 50\n}\n</code></pre>\n<h3 id=\"full-payload-playback-tracking\">Full Payload (Playback Tracking)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"object_id\": 12345,\n  \"object_type\": 1,\n  \"event\": \"playback\",\n  \"title\": \"Video Title\",\n  \"seconds\": 120,\n  \"content_length\": 3600,\n  \"uploader\": 100,\n  \"partner_id\": 50,\n  \"device_type\": \"mobile\",\n  \"os\": \"android\",\n  \"browser\": \"chrome\",\n  \"country\": \"us\"\n}\n</code></pre>\n<hr />\n<h2 id=\"need-help\">Need Help?</h2>\n<p>Check these resources:</p>\n<ul>\n<li>Source code: <code>api/app/Controllers/StatsController.php</code></li>\n<li>Route definition: <code>api/src/routes.php</code></li>\n<li>Your technical lead</li>\n</ul>\n<p>That's it! Start tracking your content interactions with just a few simple API calls.</p>\n","urlObject":{"path":["stats"],"host":["{{apiBase}}"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"a1d66d58-719c-42ae-98cc-810ed042f74d"},{"name":"Fetch reports","id":"dc5569bd-69b2-4491-9caf-3a5e2bbf3d99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/reports?start=2025-05-01&end=2025-05-30&kind=views_watch_time&events=view,playback","description":"<h2 id=\"description\">Description</h2>\n<p>Fetches analytics reports with various filtering and aggregation options.</p>\n<h2 id=\"query-parameters\">Query Parameters</h2>\n<ul>\n<li><p><strong>kind</strong>: Specifies the type of report to generate. Possible values include:</p>\n<ul>\n<li><p><code>views_watch_time</code></p>\n</li>\n<li><p><code>top_content</code></p>\n</li>\n<li><p><code>location_views</code></p>\n</li>\n<li><p><code>device_views</code></p>\n</li>\n<li><p><code>device_os</code></p>\n</li>\n<li><p><code>device_browser</code></p>\n</li>\n<li><p><code>device_application</code></p>\n</li>\n<li><p><code>content_category</code></p>\n</li>\n</ul>\n</li>\n<li><p><strong>start</strong>: The start date for the report in ISO format (e.g., <code>2024-01-01</code>).</p>\n</li>\n<li><p><strong>end</strong>: The end date for the report in ISO format (e.g., <code>2024-01-31</code>).</p>\n</li>\n<li><p><strong>events</strong>: A comma-separated list of event types to filter the report. Examples include <code>view</code> and <code>play</code>.</p>\n</li>\n<li><p><strong>partner</strong>: A boolean value to filter by partner content (e.g., <code>true</code>).</p>\n</li>\n<li><p><strong>partner_userid</strong>: The ID of the partner user to filter the report (e.g., <code>123</code>).</p>\n</li>\n<li><p><strong>country</strong>: The country code to filter the report (e.g., <code>US</code>).</p>\n</li>\n<li><p><strong>device_uuid</strong>: The unique identifier for a device to filter the report (e.g., <code>abc-123</code>).</p>\n</li>\n<li><p><strong>userid</strong>: The ID of the user to filter the report (e.g., <code>456</code>).</p>\n</li>\n<li><p><strong>user_list_id</strong>: The ID of the user list to filter the report (e.g., <code>789</code>).</p>\n</li>\n<li><p><strong>content_id</strong>: The ID of the content to filter the report (e.g., <code>101</code>).</p>\n</li>\n<li><p><strong>content_type</strong>: The type of content to filter the report (e.g., <code>video</code>).</p>\n</li>\n</ul>\n","urlObject":{"path":["reports"],"host":["{{apiBase}}"],"query":[{"key":"start","value":"2025-05-01"},{"key":"end","value":"2025-05-30"},{"key":"kind","value":"views_watch_time"},{"key":"events","value":"view,playback"}],"variable":[]}},"response":[],"_postman_id":"dc5569bd-69b2-4491-9caf-3a5e2bbf3d99"},{"name":"Fetch Content Reports","id":"05ef42ba-3a6c-4460-a14a-69affa786d1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/content/reports?start=2025-05-01&end=2025-05-30&kind=views_watch_time&events=view,playback","description":"<h2 id=\"description\">Description</h2>\n<p>Fetches content-specific analytics reports with event-level detail and various filtering and aggregation options.</p>\n<h2 id=\"query-parameters\">Query Parameters</h2>\n<ul>\n<li><p><strong>start</strong>: Start date for the report in ISO format (e.g., <code>2024-01-01</code>).</p>\n</li>\n<li><p><strong>end</strong>: End date for the report in ISO format (e.g., <code>2024-01-31</code>).</p>\n</li>\n<li><p><strong>events</strong>: A comma-separated list of event types to filter the report (e.g., <code>view</code>, <code>play</code>).</p>\n</li>\n<li><p><strong>kind</strong>: Specifies the type of report to generate (e.g., <code>top_content</code>).</p>\n<ul>\n<li><strong>group_by</strong>: A comma-separated list of fields to group the report by (e.g., <code>object_id</code>, <code>content_type</code>).</li>\n</ul>\n</li>\n<li><p><strong>content_id</strong>: Alias for <code>object_id</code> to filter the report (e.g., <code>123</code>).</p>\n</li>\n<li><p><strong>content_type</strong>: The type of content to filter the report (e.g., <code>video</code>).</p>\n</li>\n<li><p><strong>partner</strong>: A boolean value to filter by partner content (e.g., <code>true</code>).</p>\n</li>\n<li><p><strong>partner_userid</strong>: The ID of the partner user to filter the report (e.g., <code>456</code>).</p>\n</li>\n<li><p><strong>country</strong>: The country code to filter the report (e.g., <code>US</code>).</p>\n</li>\n<li><p><strong>device_uuid</strong>: The unique identifier for a device to filter the report (e.g., <code>abc-123</code>).</p>\n</li>\n<li><p><strong>userid</strong>: The ID of the user to filter the report (e.g., <code>789</code>).</p>\n</li>\n</ul>\n","urlObject":{"path":["content","reports"],"host":["{{apiBase}}"],"query":[{"key":"start","value":"2025-05-01"},{"key":"end","value":"2025-05-30"},{"key":"kind","value":"views_watch_time"},{"key":"events","value":"view,playback"}],"variable":[]}},"response":[],"_postman_id":"05ef42ba-3a6c-4460-a14a-69affa786d1f"}],"id":"cdd0f5fc-512e-43c4-a775-315bfbbe7bde","_postman_id":"cdd0f5fc-512e-43c4-a775-315bfbbe7bde","description":""},{"name":"Continue Watching APIs","item":[{"name":"Get Continue Watching List","id":"1da29b08-5268-4c52-b913-8723ecb744f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/continueWatchTime?limit=20","urlObject":{"path":["v2","continueWatchTime"],"host":["{{apiBase}}"],"query":[{"disabled":true,"key":"series_id","value":""},{"disabled":true,"key":"video_id","value":"440"},{"key":"limit","value":"20"},{"disabled":true,"key":"profile_id","value":"1"}],"variable":[]}},"response":[],"_postman_id":"1da29b08-5268-4c52-b913-8723ecb744f7"},{"name":"Update Continue Watching List","id":"292ecdee-06b9-468e-9a56-7b62f463f541","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"video_id","value":"10000","type":"text"},{"key":"watch_time","value":"10","type":"text"},{"key":"series_id","value":"2","type":"text"}]},"url":"{{apiBase}}/v2/continueWatchTime","urlObject":{"path":["v2","continueWatchTime"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"292ecdee-06b9-468e-9a56-7b62f463f541"},{"name":"Delete Continue Watching List","id":"4f2554d9-0801-4066-940d-b0880d5fd257","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[{"key":"video_id","value":"336","type":"text"},{"key":"series_id","value":"1","type":"text","disabled":true}]},"url":"{{apiBase}}/v2/continueWatchTime","urlObject":{"path":["v2","continueWatchTime"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f2554d9-0801-4066-940d-b0880d5fd257"}],"id":"0f38a137-f9ec-4f20-bc06-8422cb6ecc4c","_postman_id":"0f38a137-f9ec-4f20-bc06-8422cb6ecc4c","description":""},{"name":"Content List","item":[{"name":"Editors Pick","item":[{"name":"List","id":"46fb1417-4eed-4b90-973d-aa031de2d76a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/contentList/items/1","urlObject":{"path":["v2","contentList","items","1"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"46fb1417-4eed-4b90-973d-aa031de2d76a"}],"id":"9f78c2ae-b561-453a-86e0-196e9ad0838a","_postman_id":"9f78c2ae-b561-453a-86e0-196e9ad0838a","description":""},{"name":"Get Content Lists","id":"d97fbb69-0a6c-4560-9c4c-17fe2dbca5fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{apiBase}}/v2/contentList/3","description":"<p>You can get content lists with content list group id</p>\n<p><strong>Types</strong><br />0 =&gt; Normal list<br />1 =&gt; Top 10</p>\n<p><strong>Thumbs Display types</strong></p>\n<p>0 =&gt; portrait<br />1 =&gt; landscape</p>\n<p>If any content list have editors pick 1 it will be treated as editors pick</p>\n<p>Each content list have its own type and it will be displayed as their respective types as mentioned above with <strong>Types</strong> heading</p>\n","urlObject":{"path":["v2","contentList","3"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d97fbb69-0a6c-4560-9c4c-17fe2dbca5fd"},{"name":"Get Content List Items","id":"35138689-0592-4da6-8389-da09b00b6437","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/contentList/items/1","urlObject":{"path":["v2","contentList","items","1"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"35138689-0592-4da6-8389-da09b00b6437"}],"id":"2ad9eda3-4a60-41ce-974b-698a7119f049","_postman_id":"2ad9eda3-4a60-41ce-974b-698a7119f049","description":""},{"name":"Billing / Monetization","item":[{"name":"Gift Cards","item":[{"name":"Get Voucher Packages","id":"b2663d80-4b4d-45bd-8b08-52c5bb493c53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/voucher/packages?code=TVOD-5qsO-9ss","urlObject":{"path":["voucher","packages"],"host":["{{apiBase}}"],"query":[{"key":"code","value":"TVOD-5qsO-9ss"},{"disabled":true,"key":"content_type","value":"1"},{"disabled":true,"key":"videoid","value":"20"},{"disabled":true,"key":"series_id","value":""}],"variable":[]}},"response":[],"_postman_id":"b2663d80-4b4d-45bd-8b08-52c5bb493c53"},{"name":"Verify Voucher","id":"6a80606f-7aa0-479a-b77d-5b2decd4f4a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"code","value":"BASIC-cjjR-rO9","type":"text"}]},"url":"{{apiBase}}/voucher/verify","urlObject":{"path":["voucher","verify"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6a80606f-7aa0-479a-b77d-5b2decd4f4a3"},{"name":"Apply Voucher","id":"d0fa66f6-0c39-402d-973e-0dca19207354","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"code","value":"TVOD-5qsO-9ss","type":"text"},{"key":"gift_card_package_id","value":"1","type":"text","disabled":true},{"key":"package_id","value":"33","type":"text","disabled":true}]},"url":"{{apiBase}}/voucher/apply","urlObject":{"path":["voucher","apply"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d0fa66f6-0c39-402d-973e-0dca19207354"}],"id":"4ad68365-7a27-4273-81fe-acb22b14326a","_postman_id":"4ad68365-7a27-4273-81fe-acb22b14326a","description":""},{"name":"Content Bundles","item":[{"name":"Get Content Bundles","id":"9b11f112-7366-473f-bc8d-37df3d974bfd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/v2/content_bundles/2","urlObject":{"path":["v2","content_bundles","2"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9b11f112-7366-473f-bc8d-37df3d974bfd"},{"name":"bundle Checkout Tvode","id":"8c2ca612-16fe-4b17-b9a2-f5b35d061251","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"name","value":"Zain","type":"text"},{"key":"lastname","value":"jamil","type":"text"},{"key":"creditCardNumber","value":"4242424242424242","type":"text"},{"key":"ExpirationDate","value":"11/25","type":"text"},{"key":"securitycode","value":"123","type":"text"},{"key":"gateway","value":"stripe","type":"text"},{"key":"agree","value":"true","type":"text"},{"key":"usage_id","value":"","type":"text","disabled":true},{"key":"content_bundle_id","value":"2","type":"text"}]},"url":"{{apiBase}}/paid/ppvCheckoutIPN","urlObject":{"path":["paid","ppvCheckoutIPN"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8c2ca612-16fe-4b17-b9a2-f5b35d061251"}],"id":"38194ab4-c4ac-4fd3-b545-3dd9398d3e6d","_postman_id":"38194ab4-c4ac-4fd3-b545-3dd9398d3e6d","description":""},{"name":"Paid Subscription","item":[{"name":"Actions","id":"78d70915-0e67-476d-a2bf-a76f6d0a0404","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"subscription_id","value":"9","description":"<p>For activate, deactive, delete\nFor Update Subscription id is requored</p>\n","type":"text"},{"key":"userid","value":"396","description":"<p>For create</p>\n","type":"text","disabled":true},{"key":"package_id","value":"33","description":"<p>For create</p>\n","type":"text","disabled":true},{"key":"start_date","value":"2021-12-04 16:52:55","description":"<p>For Update (optional)</p>\n","type":"text"},{"key":"end_date","value":"","description":"<p>For Update (optional)</p>\n","type":"text"},{"key":"active","value":"","description":"<p>For Update (optional)</p>\n","type":"text"},{"key":"credits_used","value":"","description":"<p>For Update (optional)</p>\n","type":"text"},{"key":"total_watched","value":"1","description":"<p>For Update (optional)</p>\n","type":"text"},{"key":"total_watched_time","value":"3","description":"<p>For Update (optional)</p>\n","type":"text"}]},"url":"{{apiBase}}/subscription/create","description":"<p>api/subscription/{action}</p>\n<p><strong>Actions</strong></p>\n<ul>\n<li>activate</li>\n<li>deactivate</li>\n<li>delete</li>\n<li>create</li>\n<li>update</li>\n</ul>\n<p>Just replace these from URL to trigger an action</p>\n","urlObject":{"path":["subscription","create"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"78d70915-0e67-476d-a2bf-a76f6d0a0404"},{"name":"Create New Package","id":"6502efdf-31cb-4b4a-a4ac-04f183b25852","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"title","value":"New Package Title","type":"text","description":"<p>Title of your package can be anything ( required )</p>\n"},{"key":"description","value":"New Package description","type":"text","description":"<p>Description of your package can be anything ( required )</p>\n"},{"key":"price","value":"10","type":"text","description":"<p>Price of your package ( required numeric )</p>\n"},{"key":"subscription_interval","value":"1","type":"text","description":"<p>subscription interval according to frequency ( required )</p>\n"},{"key":"subscription_frequency","value":"M","type":"text","description":"<p>required ( D / W / M / Y )</p>\n"},{"key":"hd_available","value":"1","type":"text","description":"<p>what your package will include ( 1 / 0 )</p>\n"},{"key":"uhd_available","value":"1","type":"text","description":"<p>what your package will include ( 1 / 0 )</p>\n"},{"key":"multiple_devices","value":"1","type":"text","description":"<p>what your package will include ( 1 / 0 )</p>\n"},{"key":"unlimited_access","value":"1","type":"text","description":"<p>what your package will include ( 1 / 0 )</p>\n"},{"key":"number_of_screens","value":"5","type":"text","description":"<p>Number of screens allowed to user in theis package</p>\n"},{"key":"allow_free_trial","value":"0","type":"text","description":"<p>Does your package includes Free Trial ( 1 / 0 )</p>\n"},{"key":"trial_frequency","value":"M","type":"text","description":"<p>required if trial enabled ( D / W / M / Y \"if empty M will be selected\" )</p>\n"},{"key":"trial_frequency_interval","value":"1","type":"text","description":"<p>required if trial enabled (\"if empty 1 will be selected\" )</p>\n"}]},"url":"{{apiBase}}/v2/package/create","urlObject":{"path":["v2","package","create"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6502efdf-31cb-4b4a-a4ac-04f183b25852"},{"name":"Update Existing Package","id":"fd506c72-c95a-40de-9e55-e212ee485688","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"package_id","value":"73","description":"<p>required</p>\n","type":"text"},{"key":"title","value":"New Package Title","type":"text","description":"<p>Title of your package can be anything ( required )</p>\n"},{"key":"description","value":"New Package description","type":"text","description":"<p>Description of your package can be anything ( required )</p>\n"},{"key":"price","value":"10","type":"text","description":"<p>Price of your package ( required numeric )</p>\n"},{"key":"subscription_interval","value":"1","type":"text","description":"<p>subscription interval according to frequency ( required )</p>\n"},{"key":"subscription_frequency","value":"M","type":"text","description":"<p>required ( D / W / M / Y )</p>\n"},{"key":"hd_available","value":"1","type":"text","description":"<p>what your package will include ( 1 / 0 )</p>\n"},{"key":"uhd_available","value":"1","type":"text","description":"<p>what your package will include ( 1 / 0 )</p>\n"},{"key":"multiple_devices","value":"1","type":"text","description":"<p>what your package will include ( 1 / 0 )</p>\n"},{"key":"unlimited_access","value":"1","type":"text","description":"<p>what your package will include ( 1 / 0 )</p>\n"},{"key":"number_of_screens","value":"5","type":"text","description":"<p>Number of screens allowed to user in theis package</p>\n"},{"key":"allow_free_trial","value":"0","type":"text","description":"<p>Does your package includes Free Trial ( 1 / 0 )</p>\n"},{"key":"trial_frequency","value":"M","type":"text","description":"<p>required if trial enabled ( D / W / M / Y \"if empty M will be selected\" )</p>\n"},{"key":"trial_frequency_interval","value":"1","type":"text","description":"<p>required if trial enabled (\"if empty 1 will be selected\" )</p>\n"},{"key":"status","value":"1","description":"<p>activate = 1 / 0 = inactive package_status</p>\n","type":"text"}]},"url":"{{apiBase}}/v2/package/update","urlObject":{"path":["v2","package","update"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd506c72-c95a-40de-9e55-e212ee485688"},{"name":"Delete Package","id":"7af9bb4c-4de6-4967-a674-97732eb0a4b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{apiBase}}/v2/package/delete/73","urlObject":{"path":["v2","package","delete","73"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7af9bb4c-4de6-4967-a674-97732eb0a4b3"},{"name":"Get Packages","id":"dcb5397e-7cf7-448b-9d07-842fe3d683e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/paid/packages?exclude_content_bundle=true&gateway_type=applepay","urlObject":{"path":["paid","packages"],"host":["{{apiBase}}"],"query":[{"key":"exclude_content_bundle","value":"true"},{"key":"gateway_type","value":"applepay"}],"variable":[]}},"response":[],"_postman_id":"dcb5397e-7cf7-448b-9d07-842fe3d683e3"}],"id":"69a2f960-2058-4a47-827c-c192876615df","_postman_id":"69a2f960-2058-4a47-827c-c192876615df","description":""},{"name":"Ads","item":[{"name":"Get Vmap","id":"99f93c56-7d28-4003-8d1c-f5562a1d04dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiBase}}/ads/vmap/1254","urlObject":{"path":["ads","vmap","1254"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"99f93c56-7d28-4003-8d1c-f5562a1d04dc"}],"id":"d80863fc-6545-427c-b7e7-9677e5e468a5","_postman_id":"d80863fc-6545-427c-b7e7-9677e5e468a5","description":""}],"id":"5f7e9a32-516e-45be-8de7-c70feeb5f7e1","_postman_id":"5f7e9a32-516e-45be-8de7-c70feeb5f7e1","description":""},{"name":"Notifications","item":[{"name":"Push Notification","id":"43e0f356-b5ba-479a-9fb8-96ba6db0952c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"notification_title","value":"Test Notification Title","description":"<p>required</p>\n","type":"text","uuid":"c75b12d4-50eb-43e4-b650-db9e7eab301e"},{"key":"notification_body","value":"Test Notification Description","description":"<p>required</p>\n","type":"text","uuid":"7090e9c9-1723-4f0e-82ff-b3093d0ea04a"},{"key":"notification_type","value":"1","description":"<p>required\n1 for broadcast ( Recommended )\n2 for device</p>\n","type":"text","uuid":"11f43dcf-99d9-4ef4-8fa1-065da0f671fd"},{"key":"content_id","value":"","description":"<p>optional\nID for Movie, Episode or TV Show</p>\n","type":"text","uuid":"93db531d-9cb7-4914-a024-199a78573063"},{"key":"content_type","value":"","description":"<p>optional\n1 for Movie or Episode\n2 for TV Show</p>\n","type":"text","uuid":"e54792f4-ca69-4e0c-8078-3616b21d31a1"},{"key":"device_token","value":"xxxxxxxx","description":"<p>optional ( if notification type is 2 then required )</p>\n","type":"text","uuid":"a7b891e5-9bdf-45a8-b630-c6756972d2f4"}]},"url":"{{apiBase}}/push/notification","description":"<h3 id=\"push-notification-api\">Push Notification API</h3>\n<p><strong>Endpoint:</strong> <code>POST /push/notification</code></p>\n<p>This endpoint is used to send push notifications to users. It supports both broadcast notifications (to all users) and device-specific notifications.</p>\n<p><strong>Request Body (form-data):</strong></p>\n<ul>\n<li><p><strong>notification_title</strong> (required): The title of the notification.</p>\n</li>\n<li><p><strong>notification_body</strong> (required): The body or description of the notification.</p>\n</li>\n<li><p><strong>notification_type</strong> (required): Type of notification. Use <code>1</code> for broadcast (recommended) or <code>2</code> for device-specific.</p>\n</li>\n<li><p><strong>content_id</strong> (optional): The ID of the related content (e.g., Movie, Episode, or TV Show).</p>\n</li>\n<li><p><strong>content_type</strong> (optional): The type of content. Use <code>1</code> for Movie or Episode, <code>2</code> for TV Show.</p>\n</li>\n<li><p><strong>device_token</strong> (optional, required if notification_type is 2): The device token to send the notification to a specific device.</p>\n</li>\n</ul>\n<p><strong>Response:</strong></p>\n<ul>\n<li><p>On success, returns a status indicating the notification was sent.</p>\n</li>\n<li><p>On failure, returns a JSON object with status code, error message, and error code (e.g., <code>vodlix_error</code>).</p>\n</li>\n</ul>\n<p><strong>Example Error Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": 400,\n  \"timestamp\": 1753369511,\n  \"time\": 0.379,\n  \"ip\": \"::1\",\n  \"message\": \"Notification failed to send.\",\n  \"error_code\": \"vodlix_error\",\n  \"data\": []\n}\n\n</code></pre>\n","urlObject":{"path":["push","notification"],"host":["{{apiBase}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"43e0f356-b5ba-479a-9fb8-96ba6db0952c"}],"id":"a6c9be57-59ae-4b81-bb28-bb5509bd56c6","_postman_id":"a6c9be57-59ae-4b81-bb28-bb5509bd56c6","description":""}],"event":[{"listen":"prerequest","script":{"id":"38bacf8f-3a07-48c5-a19d-a81837573602","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d3062882-6e1f-45e6-a0eb-84f19393bea3","type":"text/javascript","exec":[""]}}]}