API Path
The main path of the entire API, you can try to use the main path to make sure the API runs properly.
https://muse-anime-api.vercel.app
Unofficial API that you can use for free for your project
Muse API is an unofficial API that provides information about referenced anime from Muse Indonesia's youtube account. Sometimes you will find broken links because Muse Indonesia itself often re-uploads their videos. So if you find any broken links please contact us.
Official Youtube Muse IndonesiaThe main path of the entire API, you can try to use the main path to make sure the API runs properly.
https://muse-anime-api.vercel.app
Displays the entire anime data sorted in Ascending (A to Z). Response data is paginated so you need the /:page parameter to be a number page (starting at 1).
{path}/anime/:page
Displays the details of the anime and requires a parameter in the form of an /:id which you can find in the form of q_kode.
{path}/anime/w/:id
Displays certain episodes of anime and requires a parameter in the form of an /:id which you can find in the form of q_kode and /:episode parameters in the form of numbers (starting at 1).
{path}/anime/w/:id/:episode
Displays the available genres.
{path}/genre
Displays anime based on the appropriate genres. requires a parameter of /:genreName . to remove space, - or other attributes and make the parameter lowercase, you can do {text}.replace(/\s+/g, '').toLowerCase(); . Example :
Sci-fi to scifi
{path}/genre/:genreName/:page
Displays the available seasons.
{path}/season
Displays anime based on the appropriate seasons. requires a parameter of /:seasonName . to remove space, - or other attributes and make the parameter lowercase, you can do {text}.replace(/\s+/g, '').toLowerCase(); . Example :
Summer 2020 to summer2020
{path}/season/:seasonName/:page
Displays anime by relevant title. can make it easier for you to create a search feature on your project. requires the /:title parameter to be a string with at least one letter.
{path}/season/:title