{"title":"youtube - Liquid Filter Reference","slug":"youtube-filter-reference","url":"https://support.storeconnect.com/articles/youtube-filter-reference","url_markdown":"https://support.storeconnect.com/articles/youtube-filter-reference.md","subtitle":null,"summary":"Generates responsive HTML embed code for a YouTube video ID. Supports a `start_at` option to begin playback at a specific number of seconds.","type":"Developer_Documentation","video_url":"","keywords":"liquid, filters, youtube, videos, storeconnect","last_modified":"2026-08-21T07:12:35+0000","body_markdown":"| Filter Name | youtube |\n| :---- | :---- |\n| **Group** | Videos |\n| **Version** | 1.2.3 |\n\nReturns HTML embed code for the supplied YouTube id\n\n## **Examples**\n\n\n```\n{{ \"12345-abcde\" | youtube }}\n```\n\n\nResult:\n\n```\n\u003cdiv class=\"responsive-iframe\"\u003e\u003ciframe src=\"https://www.youtube.com/embed/12345-abcde?start=0\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen class=\"Video_embed youtube\"\u003e\u003c/iframe\u003e\u003c/div\u003e\n```\n\n### **Options**\n\nstart\\_at\n\n**Moves the playback starting position of the video forward by this number of seconds**\n\nWhen start\\_at is provided, it adjusts the embed code for the requested start time:\n\n\n```\n{{ \"12345-abcde\" | youtube, start_at: 927 }}\n```\n\n\nResult:\n\n```\n\u003cdiv class=\"responsive-iframe\"\u003e\u003ciframe src=\"https://www.youtube.com/embed/12345-abcde?start=927\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen class=\"Video_embed youtube\"\u003e\u003c/iframe\u003e\u003c/div\u003e\n```\n\nBack to [Filter List](liquid-filters)"}