How To Use IPTV
SowadSimply paste the link to one of the playlists into any video player that supports live streaming and press Open.

Getting started is straightforward. You can use the raw M3U URLs directly in most media players:
# For VLC, just open Network Stream and paste: https://iptv-org.github.io/iptv/index.m3u
Or if you're building an application, you can fetch the playlists programmatically:
// Fetch the main playlist
const response = await fetch('https://iptv-org.github.io/iptv/index.m3u');
const playlist = await response.text();
The repository has detailed documentation on different playlist categories—whether you want just news channels, specific country streams, or particular content types.