# Trending Feed This example explains how to generate a trending content feed. As a use case scenario, you have built a mobile app using Firstup to keep employees engaged with company news, training, and community content. You want to display a feed titled **Trending** that shows trending video posts across the organization which the authenticated user is allowed to view. **Example UI** ee-home-trending.png **Endpoint** GET /v2/feed/posts **Parameters** * `name=trending` - Pulls from the named feed preset for trending content, which is already filtered server-side based on platform logic (e.g., popular posts, high engagement). * `filter.content_type=video` - Narrows the feed to only video posts, aligning with the use case. * `filter.visibility=public` - Ensures only public content is shown, respecting the user's access level. * `page.size=10 and page.number=1` - Returns the first page of 10 posts for this feed.