From 8106f71f7c447c5f49715552422d322fce8963cc Mon Sep 17 00:00:00 2001 From: Koert Weber <80591987+WBRK-dev@users.noreply.github.com> Date: Wed, 14 Aug 2024 18:26:46 +0200 Subject: [PATCH] docs: fixed documentation about episode sources --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e34ad70..3528e7d 100644 --- a/README.md +++ b/README.md @@ -1053,14 +1053,14 @@ https://api-aniwatch.onrender.com/anime/episode-srcs?id={episodeId}&server={serv | Parameter | Type | Description | Required? | Default | | :--------: | :----: | :--------------------------------------------------: | :-------: | :--------------: | | `id` | string | The id of the episode. | Yes | -- | -| `server` | string | The name of the server. | No | `"vidstreaming"` | +| `server` | string | The name of the server. | No | `"hd-1"` | | `category` | string | The category of the episode ('sub', 'dub' or 'raw'). | No | `"sub"` | #### Request sample ```javascript const resp = await fetch( - "https://api-aniwatch.onrender.com/anime/episode-srcs?id=steinsgate-3?ep=230&server=vidstreaming&category=dub" + "https://api-aniwatch.onrender.com/anime/episode-srcs?id=steinsgate-3?ep=230&server=hd-1&category=dub" ); const data = await resp.json(); console.log(data);