Automatically download new chapters from your favorite manga using follow lists.
A follow.txt file in your library root tells Komga which manga to monitor for new chapters. The system periodically checks for updates and downloads them automatically.
/manga/)follow.txt# My favorite manga to follow
https://mangadex.org/title/a1c7c817-4e59-43b7-9365-09c5f56e5eb1
https://mangadex.org/title/32d76d19-8a05-4db0-9fc2-e0b0648fe9d0
https://mangadex.org/title/239d6260-d71f-43b0-afff-074e3619e3de
# Comments start with #
# Empty lines are ignored
Get current configuration:
curl http://localhost:25600/api/v1/downloads/follow-config
Update configuration:
curl -X PUT http://localhost:25600/api/v1/downloads/follow-config \
-H "Content-Type: application/json" \
-d '{
"libraryId": "your-library-id",
"enabled": true,
"checkIntervalHours": 24
}'
| Option | Default | Description |
|---|---|---|
enabled |
true |
Enable/disable follow list checking |
checkIntervalHours |
24 |
Hours between checks |
Each library can have its own follow list and settings:
/manga/
├── follow.txt # Library-specific follow list
├── Series A/
│ └── ...
└── Series B/
└── ...
/comics/
├── follow.txt # Different follow list for comics library
└── ...
View scheduled tasks:
curl http://localhost:25600/api/v1/downloads/scheduler
Response:
{
"libraries": [
{
"libraryId": "abc123",
"libraryName": "Manga",
"enabled": true,
"nextCheckAt": "2024-01-15T12:00:00Z",
"lastCheckAt": "2024-01-14T12:00:00Z",
"urlCount": 15
}
]
}
Force an immediate check:
curl -X POST http://localhost:25600/api/v1/downloads/follow-check/{libraryId}
follow.txt exists and is readable.chapter-urls.json