diff --git a/bridges/StorytelBridge.php b/bridges/StorytelBridge.php
new file mode 100644
index 00000000..2316aacd
--- /dev/null
+++ b/bridges/StorytelBridge.php
@@ -0,0 +1,58 @@
+ [
+ 'url' => [
+ 'name' => 'Storytel List URL',
+ 'required' => true,
+ 'exampleValue' => 'https://www.storytel.com/tr/lists/23d09e0bd8fe4d998d1832ddbfa18166',
+ ],
+ ],
+ ];
+
+ public function collectData()
+ {
+ $url = $this->getInput('url');
+
+ if (!preg_match('/^https:\/\/www\.storytel\.com/', $url)) {
+ returnServerError('Invalid URL: Only Storytel URLs are allowed.');
+ }
+
+ $html = getSimpleHTMLDOM($url);
+ if (!$html) {
+ returnServerError('Unable to fetch Storytel list');
+ }
+
+ foreach ($html->find('li.sc-4615116a-1') as $element) {
+ $item = [];
+
+ $titleElement = $element->find('span.sc-b1963858-0.hoTsmF', 0);
+ $item['title'] = $titleElement ? $titleElement->plaintext : 'No title';
+
+ $authorElement = $element->find('span.sc-b1963858-0.ghYMwH', 0);
+ $item['author'] = $authorElement ? $authorElement->plaintext : 'Unknown author';
+
+ $imgElement = $element->find('img.sc-da400893-5', 0);
+ $coverUrl = $imgElement ? $imgElement->getAttribute('srcset') : '';
+ if ($coverUrl) {
+ $coverUrls = explode(', ', $coverUrl);
+ $bestCoverUrl = trim(end($coverUrls));
+ $item['content'] = '';
+ }
+
+ $linkElement = $element->find('a', 0);
+ $item['uri'] = $linkElement ? 'https://www.storytel.com' . $linkElement->getAttribute('href') : $url;
+
+ $item['content'] .= '
Author: ' . $item['author'] . '
'; + $item['content'] .= ''; + + $this->items[] = $item; + } + } +}