diff --git a/lib/Service/FyydApiService.php b/lib/Service/FyydApiService.php
new file mode 100644
index 0000000000000000000000000000000000000000..6d087a7c66c1683f25b7c2627006c642b2954013
--- /dev/null
+++ b/lib/Service/FyydApiService.php
@@ -0,0 +1,135 @@
+<?php
+
+/**
+ * Podcast App
+ *
+ * @author Jonas Heinrich
+ * @copyright 2021 Jonas Heinrich <onny@project-insanity.org>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public
+ * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+declare(strict_types=1);
+
+namespace OCA\Podcast\Service;
+
+use OCP\IURLGenerator;
+use OCP\Http\Client\IClientService;
+
+use function urlencode;
+
+class FyydApiService {
+
+	/** @var IClientService */
+	private $clientService;
+
+	/** @var IURLGenerator */
+	private $url;
+
+	public function __construct(
+		IClientService $clientService,
+		IURLGenerator $url
+	) {
+		$this->clientService = $clientService;
+		$this->url = $url;
+	}
+
+  public function queryEpisodes(int $podcast_id, int $count = 20, int $page = 0) {
+
+		$url = "https://api.fyyd.de/0.2/podcast/episodes";
+
+		$options['query'] = [
+			'podcast_id' => $podcast_id,
+			'count' => $count,
+			'page' => $page
+		];
+
+		$client = $this->clientService->newClient();
+		try {
+			$response = $client->get($url, $options);
+		} catch (Exception $e) {
+			$this->logger->error("Could not search for podcasts: " . $e->getMessage());
+			throw $e;
+		}
+		$body = $response->getBody();
+		$parsed = json_decode($body, true);
+
+		return $parsed;
+	}
+
+	public function queryEpisode(int $episode_id) {
+
+		$url = "https://api.fyyd.de/0.2/episode";
+
+		$options['query'] = [
+			'episode_id' => $episode_id,
+		];
+
+		$client = $this->clientService->newClient();
+		try {
+			$response = $client->get($url, $options);
+		} catch (Exception $e) {
+			$this->logger->error("Could not search for podcasts: " . $e->getMessage());
+			throw $e;
+		}
+		$body = $response->getBody();
+		$parsed = json_decode($body, true);
+
+		return $parsed;
+	}
+
+	public function queryPodcast(int $podcast_id) {
+
+		$url = "https://api.fyyd.de/0.2/podcast";
+
+		$options['query'] = [
+			'podcast_id' => $podcast_id,
+		];
+
+		$client = $this->clientService->newClient();
+		try {
+			$response = $client->get($url, $options);
+		} catch (Exception $e) {
+			$this->logger->error("Could not search for podcasts: " . $e->getMessage());
+			throw $e;
+		}
+		$body = $response->getBody();
+		$parsed = json_decode($body, true);
+
+		return $parsed;
+	}
+
+	public function queryCategory(string $category, int $count = 20,
+		int $page = 0) {
+
+		$url = "https://api.fyyd.de/0.2/podcast";
+
+		$options['query'] = [
+			'podcast_id' => $podcast_id,
+		];
+
+		$client = $this->clientService->newClient();
+		try {
+			$response = $client->get($url, $options);
+		} catch (Exception $e) {
+			$this->logger->error("Could not search for podcasts: " . $e->getMessage());
+			throw $e;
+		}
+		$body = $response->getBody();
+		$parsed = json_decode($body, true);
+
+		return $parsed;
+	}
+}