Skip the Intros. Keep the Story.¶
OpenSkip is a free, open-source, community-driven database of TV show intro and outro timestamps. Built by viewers, for viewers.
Skip Intros & Outros¶
Automatically skip opening credits, recaps, and end credits across your favorite media players and apps.
Simple REST API¶
Easy-to-use API that returns timestamps in milliseconds. Perfect for building plugins and integrations.
Community Powered¶
Every timestamp is submitted and verified by the community. No paywalls, no subscriptions, just free data.
100% Open Source¶
The entire project is open source. Self-host it, contribute to it, or use the public API for free.
TVDB Integration¶
Lookup shows using TVDB IDs for seamless integration with popular media managers like Sonarr and Plex.
Fast & Reliable¶
Lightweight API designed for speed. Get timestamp data in milliseconds with minimal overhead.
How It Works¶
-
Media player detects what you're watching - Your plugin identifies the show, season, and episode using metadata or file analysis.
-
Query the OpenSkip API - Send a request with the TVDB ID, season, and episode number to get timestamp data.
-
Skip automatically - Use the returned timestamps to automatically skip intros, outros, recaps, or show previews.
# Example: Get timestamps for Breaking Bad S01E01
curl "https://api.openskip.io/api/v1/timestamps?tvdb_id=81189&season=1&episode=1"
{
"items": [
{
"id": 1,
"episode_id": 1,
"intro_start": 0.0,
"intro_end": 45.5,
"outro_start": 3420.0,
"outro_end": 3480.0,
"source": "community",
"confidence": 100
}
],
"total": 1
}
Join the Community¶
OpenSkip thrives because of contributors like you. Whether you're a developer building integrations or a viewer submitting timestamps, every contribution makes the experience better for everyone.
Build a Plugin¶
Create integrations for Plex, Jellyfin, Kodi, or any media player. Our API is simple and well-documented.
Submit Timestamps¶
Help grow the database by submitting timestamps for your favorite shows. Every submission helps.
Quick Links¶
- :material-book-open-variant: API Documentation - Complete API reference
- :material-rocket-launch: Quick Start Guide - Get up and running in minutes
- :material-github: GitHub Repository - View source code
- :material-bug: Report Issues - Found a bug? Let us know