API Keys for Enhanced Functionality (Optional)
December 30, 2025 ยท View on GitHub
๐ฟ What is ListSync?
ListSync automatically syncs your watchlists from IMDb, Trakt and many more with Overseerr/Jellyseerr. No more manual adding - just add movies, shows, and anime to your favorite watchlist, and they'll appear in your media server automatically.
๐ฟ Modern Web Dashboard
ListSync includes a web dashboard built with Nuxt 3 and Vue 3, providing an interface to manage all your sync operations without touching config files.
๐ธ View More Screenshots
Setup Wizard
Access the dashboard at http://localhost:3222 and complete the setup wizard to connect your media server and watchlists.
Easy-to-use setup wizard for first-time configuration.
Collections
ListSync now supports browsing and syncing entire movie franchises.
Sync full collections with a single click.
๐ฟ Quick Start
No configuration files needed! Just run the container and open your browser.
docker run -d --name listsync -p 3222:3222 -p 4222:4222 -v listsync-data:/usr/src/app/data ghcr.io/woahai321/list-sync:main
That's it! Now go to http://localhost:3222 to finish setup.
๐ฟ Getting Started
๐ฟ Docker Deployment
๐ฟ Full Stack Deployment (Recommended)
# Clone and setup
git clone https://github.com/Woahai321/list-sync.git && cd list-sync
# (Optional: Configure a .env file)
# Use pre-built image
docker-compose up -d
# Or build from source
docker-compose -f docker-compose.local.yml up -d --build
Access:
- Dashboard:
http://localhost:3222 - API Docs:
http://localhost:4222/docs - Health:
http://localhost:4222/api/system/health
All 3 services (Core Sync, FastAPI Backend, Nuxt Frontend) run in a single container managed by supervisor.
๐ฟ Option 2: Core-Only Deployment (Lightweight)
Lightweight Core Sync Engine
Minimal setup with just the sync engine
# 1. Clone the repository
git clone https://github.com/Woahai321/list-sync.git
cd list-sync
# 2. Copy and configure environment file
cp .env.example .env
nano .env # Add your Overseerr URL, API key, and lists
# 3. Start with the core docker-compose file
docker-compose -f docker-compose.core.yml up -d
# Done! Sync runs automatically in the background
Monitoring Core-Only:
# View logs
docker-compose -f docker-compose.core.yml logs -f
๐ฟ Option 3: Running ListSync Locally (Without Docker)
Prerequisites
- Python 3.9+, Node.js 18+, Chrome/Chromium, Git
Setup
# Clone and install dependencies
git clone https://github.com/Woahai321/list-sync.git && cd list-sync
pip install -r requirements.txt -r api_requirements.txt
cd listsync-nuxt && npm install && cd ..
Configuration
Create .env file with:
OVERSEERR_URL=http://your-overseerr:5055
OVERSEERR_API_KEY=your-api-key-here
IMDB_LISTS=top
Start All Services
Run these commands in 3 separate terminals:
Terminal 1 - Core Sync Service:
python -m list_sync
Terminal 2 - FastAPI Backend:
python start_api.py
Terminal 3 - Nuxt Frontend:
cd listsync-nuxt && npm run dev
Access:
- Dashboard:
http://localhost:3222 - API Docs:
http://localhost:4222/docs - Health:
http://localhost:4222/api/system/health
๐ฟ API Keys & List Configuration
๐ API Keys
๐ Trakt API Configuration (Required)
Setting up Trakt API Access
ListSync now uses the official Trakt API v2 for improved reliability and performance. To use Trakt lists, you need to configure API credentials:
Step 1: Create a Trakt Application
- Go to https://trakt.tv/oauth/applications
- Click "New Application"
- Fill in the required fields:
- Name:
ListSync(or any name you prefer) - Redirect URI:
urn:ietf:wg:oauth:2.0:oob(not used but required) - Other fields can be left as default
- Name:
- Click "Save App"
Step 2: Get Your Client ID
- After creating the app, you'll see your Client ID and Client Secret
- Copy the Client ID (the Client Secret is not needed for ListSync)
Step 3: Configure ListSync
Add your Client ID to your .env file or via the web dashboard:
# Trakt API Configuration
TRAKT_CLIENT_ID=your_client_id_here
๐ TMDB API Configuration (Optional)
Setting up TMDB API Access
ListSync can use the official TMDB API for improved reliability and performance. To use TMDB lists with API access, you need to configure API credentials:
Step 1: Create a TMDB Account
- Go to https://www.themoviedb.org/settings/api
- Click "Request an API Key"
- Fill in the required fields:
- Application Name:
ListSync(or any name you prefer) - Application Summary:
Media list synchronization tool - Application URL:
https://github.com/Woahai321/list-sync
- Application Name:
- Click "Submit"
Step 2: Get Your API Key
- After approval, you'll receive your API Key (v3 auth)
- Copy the API key
Step 3: Configure ListSync
Add your API key to your .env file or via the web dashboard:
# TMDB API Configuration
TMDB_KEY=your_api_key_here
๐ TVDB API Configuration (Optional)
Setting up TVDB API Access
ListSync can use the official TVDB API for enhanced data quality. To use TVDB with API access, you need to configure API credentials:
Step 1: Create a TVDB Account
- Go to https://thetvdb.com/api-information
- Click "Register" to create an account
- Verify your email address
Step 2: Get Your API Key
- Go to https://thetvdb.com/dashboard/account/apikey
- Click "Create New API Key"
- Fill in the required fields:
- Application Name:
ListSync - Application Summary:
Media list synchronization tool
- Application Name:
- Click "Create"
Step 3: Configure ListSync
Add your API key to your .env file or via the web dashboard:
# TVDB API Configuration
TVDB_KEY=your_api_key_here
๐ฟ List Providers
๐ IMDb
Using the Raw URL:
- Navigate to your IMDb list in your browser.
- Copy the URL from the address bar. Examples:
- Custom lists:
https://www.imdb.com/list/ls012345678/ - IMDb charts:
https://www.imdb.com/chart/top/(Top 250),https://www.imdb.com/chart/boxoffice/(Box Office) - Watchlists:
https://www.imdb.com/user/ur12345678/watchlist
- Custom lists:
- Paste the URL directly into ListSync.
Using the List ID:
- Look at the URL:
- Custom lists:
ls012345678 - IMDb charts: Use the chart name (e.g.,
top,boxoffice) - Watchlists:
ur12345678
- Custom lists:
- Use the list ID in ListSync.
Supported IMDb Charts:
top(Top 250 Movies)boxoffice(Box Office)moviemeter(MovieMeter)tvmeter(TVMeter)
๐ Trakt
Using the Raw URL:
- Navigate to your Trakt list in your browser.
- Copy the URL from the address bar. Examples:
- User Watchlist:
https://trakt.tv/users/username/watchlist - Custom List:
https://app.trakt.tv/users/username/lists/listname
- User Watchlist:
- Paste the URL directly into ListSync.
Trakt Special Lists:
ListSync supports a shortcut format of list-type:media-type. Examples:
trending:movies- Top trending moviespopular:shows- Popular TV showsanticipated:movies- Most anticipated movies
Available Types:
- List types: trending, popular, anticipated, watched, boxoffice, streaming, favorited
- Media types: movies, shows
Note: The boxoffice list type is only available for movies.
These special lists sync a configurable number of items (default: 20, can be set via TRAKT_SPECIAL_ITEMS_LIMIT environment variable).
๐ TMDB
Using the Raw URL:
- Navigate to your TMDB list in your browser.
- Copy the URL from the address bar. Examples:
https://www.themoviedb.org/list/12345https://www.themoviedb.org/list/67890-my-favorite-movies
- Paste the URL directly into ListSync.
Note: TMDB lists require the full URL format for proper access.
๐ TVDB
Using the Raw URL:
- Navigate to your TVDB list in your browser.
- Copy the URL from the address bar. Examples:
https://www.thetvdb.com/lists/67890
- Paste the URL directly into ListSync.
Note: TVDB requires the full URL format.
๐ Letterboxd
Using the Raw URL:
- Navigate to your Letterboxd list in your browser.
- Copy the URL from the address bar. Examples:
- Custom Lists:
https://letterboxd.com/username/list/my-list/ - User Watchlist:
https://letterboxd.com/username/watchlist/
- Custom Lists:
- Paste the URL directly into ListSync.
Note: Please have patience with this list provider as it relies on web scraping.
๐ AniList
Using the Raw URL:
- Navigate to your AniList profile in your browser.
- Copy the URL from the address bar. Examples:
- All Lists:
https://anilist.co/user/username/animelist - Specific Status:
https://anilist.co/user/username/animelist/Planning
- All Lists:
- Paste the URL directly into ListSync.
Using Just the Username:
- You can also just enter the username:
username
- This will sync all their anime lists (Watching, Planning, Completed, etc.)
Supported List Statuses:
- โ Planning - Anime planned to watch
- โ Watching - Currently watching
- โ Completed - Finished anime
- โ Paused - On hold
- โ Dropped - Dropped anime
- โ Custom Lists - User-created custom lists
Note: Anime titles are automatically resolved to TMDB IDs via Trakt API for Overseerr compatibility. Resolution works with both English and Romaji titles.
๐ MDBList
Using the Raw URL:
- Navigate to your MDBList list in your browser.
- Copy the URL from the address bar. Example:
https://mdblist.com/lists/username/listname
- Paste the URL directly into ListSync.
Using Username/List Format:
- You can also use the simpler format:
username/listname
- ListSync will automatically expand this to the full URL.
๐ SIMKL
โ ๏ธ SIMKL provider is currently disabled.
SIMKL API currently only supports authenticated user watchlists and does not support custom public lists. We have been in contact with the developers and the required API endpoint for this tool does not have an ETA.
Future Plans: SIMKL support may be re-enabled if/when SIMKL API adds support for custom public lists.
For now, please use Trakt, IMDB, Letterboxd or any other provider for list syncing.
๐ Steven Lu
This is a curated list of popular movies maintained by Steven Lu, available at:
https://s3.amazonaws.com/popular-movies/movies.json
To enable this list, simply add the below variable:
STEVENLU_LISTS=stevenlu
This will be recognized as the Steven Lu Popular Movies list.
๐ฟ Configuration
๐ฟ Basic Configuration
Essential Settings
All you need is a .env file with four settings:
OVERSEERR_URL=http://your-overseerr:5055 # Your Overseerr/Jellyseerr URL
OVERSEERR_API_KEY=your-api-key-here # Get from Overseerr Settings โ General
TRAKT_CLIENT_ID=your-api-key-here # Trakt API Client ID
IMDB_LISTS=top # Start with IMDb Top 250
Optional Settings:
SYNC_INTERVAL=24 # Hours between syncs (default: 24)
AUTOMATED_MODE=true # Enable automatic syncing (default: true)
OVERSEERR_4K=false # Request 4K versions (default: false)
DISCORD_WEBHOOK_URL=... # Discord notifications (optional)
TZ=America/New_York # Your timezone (default: GMT)
# API Keys for Enhanced Functionality (Optional)
TMDB_KEY=... # TMDB API Key (for better performance)
TVDB_KEY=... # TVDB API Key (for enhanced data)
# List Configuration
IMDB_LISTS=top,boxoffice # IMDb lists to sync
TRAKT_LISTS=... # Trakt lists to sync
LETTERBOXD_LISTS=... # Letterboxd lists to sync
ANILIST_LISTS=... # AniList anime lists to sync (username or full URL)
MDBLIST_LISTS=... # MDBList lists to sync
# SIMKL_CLIENT_ID=... # SIMKL API Client ID (DISABLED - see SIMKL section)
# SIMKL_USER_TOKEN=... # SIMKL OAuth Token (DISABLED - see SIMKL section)
TVDB_LISTS=... # TVDB lists to sync (full URLs)
TMDB_LISTS=... # TMDB lists to sync (full URLs)
STEVENLU_LISTS=stevenlu # Steven Lu popular movies
๐ฟ Built-in Provider Presets
One-Click Presets
The Add List wizard includes over 50+ curated presets. Just select and sync.
1. ๐ IMDb
| Category | Presets (Click to Preview) |
|---|---|
| Charts | Top 250, Box Office, MovieMeter, TVMeter |
| Festivals | London Film Festival 2025, Sundance 2025 |
2. ๐ Trakt
| Category | Presets (Click to Preview) |
|---|---|
| Streaming (Movies) | Netflix, Amazon Prime, Disney+, Hulu |
| Streaming (Shows) | Netflix, Amazon Prime, Disney+, Hulu, HBO, BBC |
| Genres (Movies) | Action, Comedy, Crime, Drama, Horror, Sci-Fi, Thriller, History, War, 80's Movies |
| Genres (Shows) | Comedy, Crime, Drama, Horror, Sci-Fi |
| Popular & Latest | Top Movies, Top Movies of the Week, Latest Releases, Latest Blu-ray Releases, Latest TV Shows |
| Recommendations | Gary Recommends, Recommended Movies, Movies from the Last Decade, TV Recommendations |
| Regional/Other | UK Shows, Video Nasties, Collaborations |
3. โก Trakt Special
| Category | Presets (Click to Preview) |
|---|---|
| Movies | Trending, Popular, Anticipated, Most Watched, Box Office |
| TV Shows | Trending, Popular, Anticipated, Most Watched |
4. ๐ฌ Letterboxd
| Category | Presets (Click to Preview) |
|---|---|
| Top Rated | Top 250 Narrative, Top 250 Most Fans, 1001 Must See Movies |
| Curated | Movies to Watch Once, Feel Something |
5. ๐ MDBList
| Category | Presets (Click to Preview) |
|---|---|
| Streaming | Netflix Movies, Amazon Prime Movies, Disney+ Movies, Netflix Shows, HBO Shows |
| Popular | Top Watched This Week |
6. ๐ Steven Lu
| Category | Presets (Click to Preview) |
|---|---|
| Collections | All Movies (Unfiltered), Original Collection |
| Metacritic | Min 50, Min 60, Min 70, Min 80 |
| IMDb | Min 5.0, Min 6.0, Min 7.0, Min 8.0 |
| Rotten Tomatoes | Min 50, Min 60, Min 70, Min 80 |
7. ๐ญ TMDB
| Category | Presets (Click to Preview) |
|---|---|
| Charts | Top 250 IMDB, IMDB 50 Most Popular, Top 10 Movies |
| Box Office | All Time Box Office |
๐ฟ Timezone Configuration
Configure Your Local Timezone
ListSync automatically timestamps all sync activities and displays them in the web interface. To ensure timestamps match your local time, configure your timezone using any of the three supported formats below.
ListSync supports three timezone formats for maximum flexibility:
1๏ธโฃ IANA Timezone Names (Recommended - Handles DST Automatically)
# docker-compose.yml or .env file
environment:
- TZ=Europe/Paris # France (CET/CEST with DST)
- TZ=America/New_York # US Eastern (EST/EDT with DST)
- TZ=America/Los_Angeles # US Pacific (PST/PDT with DST)
- TZ=America/Chicago # US Central (CST/CDT with DST)
- TZ=Asia/Tokyo # Japan
- TZ=Australia/Sydney # Australia Eastern
- TZ=Europe/London # UK (GMT/BST with DST)
2๏ธโฃ Common Abbreviations (Simple & Familiar)
# docker-compose.yml or .env file
environment:
- TZ=EST # US Eastern Standard Time
- TZ=PST # US Pacific Standard Time
- TZ=CET # Central European Time
- TZ=GMT # Greenwich Mean Time
- TZ=BST # British Summer Time
- TZ=AEST # Australian Eastern Standard Time
3๏ธโฃ UTC/GMT Offsets (Universal & Simple)
# docker-compose.yml or .env file
environment:
# UTC offsets
- TZ=UTC # Coordinated Universal Time
- TZ=UTC+1 # Central European Time
- TZ=UTC-5 # US Eastern Time
- TZ=UTC-8 # US Pacific Time
- TZ=UTC+8 # China/Singapore Time
- TZ=UTC+5:30 # India Standard Time
# GMT offsets (equivalent to UTC)
- TZ=GMT+1 # Central European Time
- TZ=GMT-5 # US Eastern Time
๐ Finding Your Timezone
- ๐ฟ IANA Names: Wikipedia TZ Database
- ๐ฟ UTC Offsets: timeanddate.com/time/zones
- ๐ฅ๏ธ Linux/macOS: Run
timedatectlorcat /etc/timezone - ๐ช Windows: Check "Time zone" in Settings โ Time & Language
๐ฟ Which Format Should I Use?
| Format | Best For | Handles DST? | Example |
|---|---|---|---|
| IANA Names | Production use | โ Yes | Europe/Paris |
| Abbreviations | Quick setup | โ Yes | EST, CET |
| UTC/GMT Offsets | Testing, fixed offsets | โ No | UTC+1, GMT-5 |
Tip: Use IANA timezone names for production deployments as they automatically handle Daylight Saving Time (DST) transitions!
๐ฟ Compatibility
๐ฟ SeerrBridge Integration
SeerrBridge is our companion application that provides an alternative to traditional *arr stack (Radarr/Sonarr) setup. It works alongside ListSync to create a complete media management solution:
- Automated Processing: When ListSync adds requests to Jellyseerr/Overseerr, SeerrBridge automatically processes them
- Browser Automation: Uses Selenium to automate media fetching through Debrid Media Manager
- Simplified Setup: Eliminates the need for complex *arr stack configuration
How ListSync & SeerrBridge Work Together
- ListSync adds media requests to Jellyseerr/Overseerr
- SeerrBridge detects the requests via webhook
- SeerrBridge automatically processes the requests through DMM
- Media becomes available in your RD library
For detailed information about SeerrBridge, visit the SeerrBridge Repository.
๐ฟ System Architecture
View System Architecture Diagram
%%{init: {'flowchart': {'diagramPadding': 20, 'nodeSpacing': 25, 'rankSpacing': 35, 'curve': 'linear'}}}%%
graph LR
%% Condensed Flow with Reduced Text and More Padding
%% UI
subgraph ui["User Interaction"]
U["๐ฟ User Opens Dashboard\n(localhost:3222)"] --> D["๐ฟ Nuxt Dashboard\n(Port 3222)"] --> B["๐ FastAPI Backend\n(Port 4222)"]
end
%% Core
subgraph core["Core System"]
B --> C["โ๏ธ Core Sync Engine\n(Python)"] --> DB[("๐พ SQLite DB\n(Lists, History)")]
end
%% Providers
subgraph prov["Data Providers"]
C --> P["๐ฟ Provider System\n(Multiple Sources)"]
subgraph scrap["Web Scraping (Selenium)"]
P --> S["๐ Selenium\n(Chrome Browser)"]
S --> I["๐ฟ IMDb\n(Charts, Lists)"]
S --> L["๐ฟ Letterboxd\n(Lists)"]
S --> M["๐ฟ MDBList\n(Collections)"]
S --> Si["๐ฟ Simkl\n(Watchlists (OAuth))"]
S --> T["๐ฟ TVDB\n(Favorites, Lists)"]
end
subgraph api["Direct APIs"]
P --> Tr["๐ Trakt API --> ๐ฟ Trakt\n(Lists, Trending)"]
P --> Tm["๐ญ TMDB API --> ๐ฟ TMDB\n(Lists, Collections)"]
P --> A["๐ฟ AniList GraphQL --> ๐ฟ AniList\n(Anime Lists)"]
P --> St["๐ฟ Steven Lu S3 --> ๐ฟ Steven Lu\n(Movies List)"]
end
end
%% Pipeline
subgraph pipe["Processing Pipeline"]
P --> E["๐ Extract Data\n(Title, Year, ID)"]
E --> De["๐ Deduplicate\n(IMDb ID)"]
De --> Se["๐ Search Overseerr\n(Fuzzy Match)"]
Se --> Ch["โ
Check Status\n(Available?)"]
Ch --> R["๐ฟ Create Requests\n(Movies, Seasons)"]
end
%% Output
subgraph out["Output & Storage"]
R --> O["๐ฏ Overseerr\n(Media Requests)"]
R --> DB
end
%% Feedback
DB -.->|"Feedback Loop"| C
%% Darker Colors
style U fill:#a78bfa,stroke:#6b21a8,stroke-width:2px
style D fill:#8b5cf6,stroke:#7c3aed,stroke-width:2px
style B fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px
style C fill:#9333ea,stroke:#a855f7,stroke-width:3px
style DB fill:#581c87,stroke:#6b21a8,stroke-width:3px
style P fill:#a855f7,stroke:#9333ea,stroke-width:2px
style S fill:#8b5cf6,stroke:#7c3aed,stroke-width:2px
style Tr fill:#7c3aed,stroke:#6b21a8,stroke-width:2px
style Tm fill:#6b21a8,stroke:#581c87,stroke-width:2px
style A fill:#9333ea,stroke:#7c2d12,stroke-width:2px
style St fill:#9333ea,stroke:#7c2d12,stroke-width:2px
style E fill:#9333ea,stroke:#6b21a8,stroke-width:2px
style De fill:#7c3aed,stroke:#581c87,stroke-width:2px
style Se fill:#7c3aed,stroke:#581c87,stroke-width:2px
style Ch fill:#7c3aed,stroke:#581c87,stroke-width:2px
style R fill:#7c3aed,stroke:#581c87,stroke-width:2px
style O fill:#581c87,stroke:#4c1d95,stroke-width:3px
%% Subgraph Style
classDef sub fill:none,stroke:#a855f7,stroke-width:1px,stroke-dasharray: 3 3
class ui,core,prov,scrap,api,pipe,out sub
For a detailed technical breakdown, see our Architecture Documentation.
๐ฟ Troubleshooting
If you encounter any issues while using ListSync, please check our Troubleshooting Guide for solutions to common problems.
Quick Fixes:
- Sync not working? Check your Overseerr API key and URL
- Lists not loading? Verify list URLs are public and accessible
- Docker issues? Ensure ports 3222 and 4222 are available
- Need help? Join our Discord community for support
๐ฟ Documentation
For comprehensive documentation, visit our Documentation Hub or explore specific guides:
- User Guide - Complete usage guide with examples
- Installation Guide - Detailed installation instructions
- Configuration Guide - Environment setup and configuration
- API Documentation - Complete REST API reference
- Architecture Overview - Technical architecture and design
๐ฟ Support ListSync's Development
If you find ListSync useful and would like to support its development, consider becoming a sponsor:
โก๏ธ Sponsor us on GitHub
Thank you for your support!
๐ฟ Contributing
We welcome contributions! For guidelines on how to contribute, please see our Contributing Guide.
๐ฟ Notes
- Security Best Practices: Please read scripts you find online before running them.
- API Credentials: Always keep your API credentials secure.
- Rate Limiting: Be mindful of provider's rate limiting policies during imports.
- Permissions: Only import and manage media you have the rights to handle.
๐ฟ License
This project is licensed under the MIT License. Review the LICENSE file for more details.
๐ฟ Legal Information
For important legal information about using ListSync, please refer to our Legal Disclaimer.