Skip to content

Zoroapi/Anime-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 

Repository files navigation

Anime API Wrapper

API Base

https://www.zoroapi.tk/

Authentication

This API doesn't require any Authentication As We does not store any files on our server, we only linked to the media which is hosted on 3rd party services!

Rate Limits

The number of request is limited to 120 requests per hour, per IP address. I wanted to make it unlimited, but some people like to go wild, so I had to set a limit to guarantee the good functionality for everyone. If you need a higher limit, please contact us on discord. All IPs sending excessive requests will be banned. If you need help using this API, please don't hesistate to contact us. BUT while using auotcode Endpoint There Is no limits!

Endpoint

GET https://www.zoroapi.tk/search?name=<name>

Fetch Example

const axios = require("axios");
 const getData = async (animename) => {
     let url = `https://www.zoroapi.tk/search?name=${animename}`;
     await axios.get(url)
     .then(function (response) {
         console.log(response.data);
     })
 };
 getData("Example"); // Example - Naruto

Sample Response JSON

{
  "status": "success",
  "search": "naruto",
  "amount": "1",
  "anime": {
    "name": "Boruto: Naruto Next Generations",
    "episodes": "266",
    "duration": "23m",
    "languages": "SUB,DUB",
    "link": "https://zoro.to/boruto-naruto-next-generations-8143?ref=search"
   }
 }

Releases

No releases published

Packages

No packages published