← Back to Developer Portal
Developer Reference / teels-api

Teels Short Video Stream API

Fetch trending short video playlists, HLS stream manifest (.m3u8) URLs, and engagement statistics.

GET /v1/teels/trendingv1.0 REST API

Overview & Usage

Access viral short video clips created on Loprok. Retrieve direct HTTP Live Streaming (HLS) playlist URLs for seamless video playback integration in mobile apps or web players.

Code Example & Request Syntax

// Fetch Trending Teels Video Streams
fetch('https://developer.loprok.com/v1/teels/trending?limit=5', {
  headers: { 'Authorization': 'Bearer YOUR_LOPROK_API_KEY' }
})
.then(res => res.json())
.then(data => console.log(data));