docs(animeCategories): add all possible anime categories

This commit is contained in:
Ritesh Ghosh
2023-12-18 20:08:00 +05:30
parent 893abce23b
commit 1d370d693f
+2
View File
@@ -670,6 +670,8 @@ https://api-aniwatch.onrender.com/anime/{category}?page={page}
#### Request sample #### Request sample
```javascript ```javascript
// categories -> "most-favorite", "most-popular", "subbed-anime", "dubbed-anime", "recently-updated", "recently-added", "top-upcoming", "top-airing", "movie", "special", "ova", "ona", "tv", "completed"
const resp = await fetch("https://api-aniwatch.onrender.com/anime/tv?page=2"); const resp = await fetch("https://api-aniwatch.onrender.com/anime/tv?page=2");
const data = await resp.json(); const data = await resp.json();
console.log(data); console.log(data);