Giter Site home page Giter Site logo

anime-api's Introduction

Anime API

API made with Node.js ( scrape data primarily from hianime.to and secondarily from kaido.to )

! Disclaimer !

  1. Please don't spam the api. This api is deployed on a free web service. You can clone this repository on your local server for testing purposes.

  2. This api does not store any files , it only link to the media which is hosted on 3rd party services.

  3. This api is explicitly made for educational purposes only and not for commercial usage. This repo will not be responsible for any misuse of it.

Table of Contents

Installation

Local installation

Make sure you have node installed on your device

Run the following code to clone the repository and install all required dependencies

$ git clone https://github.com/itzzzme/anime-api.git
$ cd anime-api
$ npm install

Start the server

$ npm start #or npm run devStart

Deployment

Vercel

Host your own instance of anime-api on vercel

Deploy to Vercel

Render

Host your own instance of anime-api on Render.

Deploy to Render

Documentation

Get Basic info

  GET /api/

Endpoint

  https://anime-api-five-woad.vercel.app/api/

No parameter required ❌

Example of request

import axios from "axios";
const resp = await axios.get("https://anime-api-five-woad.vercel.app/api/");
console.log(resp.data);

Sample Response

{
  "success": true,
  "results": {
    "spotlights": [
      {
        "data_id": number,
        "poster": string,
        "title": string,
        "description": string,
        "tvInfo": {
          "showType": string,
          "duration": string,
          "releaseDate": string,
          "quality": string,
          "episodeInfo": [object]
        }
      },
      {...}
    ],
    "trending": [
      {
        "data_id": number,
        "number": number,
        "poster": string,
        "title": string
      },
      {
        "data_id": number,
        "number": number,
        "poster": string,
        "title": string
      },
      {...}
    ]
  }
}

Get Top 10 anime's info

  GET /api/top-ten

Endpoint

  https://anime-api-five-woad.vercel.app/api/info?id={string}

No parameter required ❌

Example of request

import axios from "axios";
const resp = await axios.get("https://anime-api-five-woad.vercel.app/api/top-ten");
console.log(resp.data);

Sample Response

{
  "success": true,
  "results": [
    {
      "data_id": number,
      "number": number,
      "name": string,
      "poster": string,
      "tvInfo": [Object]
    },
    {
      "data_id": number,
      "number": number,
      "name": string,
      "poster": string,
      "tvInfo": [Object]
    },
    {..}
  ]
}

Get specified anime's info

  GET /api/info

Endpoint

  https://anime-api-five-woad.vercel.app/api/info?id={string}

Parameters

Parameter Type Description Mandatory ? Default
id string anime-id Yes ✔️ --

Example of request

import axios from "axios";
const resp = await axios.get(
  "https://anime-api-five-woad.vercel.app/api/info?id=yami-shibai-9-17879"
);
console.log(resp.data);

Sample Response

{
  "success": true,
  "results": {
    "seasons": [
      {
        "data_number": number,
        "data_id": number,
        "season": string,
        "title": string,
        "season_poster": string
      },
      {...}
    ],
    "data": {
      "data_id": number,
      "title": string,
      "poster": string,
      "animeInfo": {
        "Overview": string,
        "Japanese": string,
        "Synonyms": string,
        "Aired": string,
        "Premiered": string,
        "Duration": string,
        "Status": string,
        "MAL Score": string,
        "Genres": [Object],
        "Studios": string,
        "Producers": [Object]
      }
    }
  }
}

Get several categories info

  GET /api/<category>

Endpoint

  https://anime-api-five-woad.vercel.app/api/{string}?page={number}
  #or
  https://anime-api-five-woad.vercel.app/api/{string}

Parameters

Parameter Parameter-type Data-type Description Mandatory ? Default
category path string Category Yes ✔️ --
page query number Page-no. No ❌ 1

List of Categories

  • top-airing
  • most-popular
  • most-favorite
  • completed
  • recently-updated
  • recently-added
  • top-upcoming
  • subbed-anime
  • dubbed-anime
  • top-upcoming
  • movie
  • special
  • ova
  • ona
  • tv

Example of request

import axios from "axios";
const resp = await axios.get(
  "https://anime-api-five-woad.vercel.app/api/most-popular?page=1"
);
console.log(resp.data);

Sample Response

{
  "success": true,
  "results": {
    "totalPages": number,
    "data": [
      {
        "data_id": number,
        "poster": string,
        "title": string,
        "description": string,
        "tvInfo": {
          "showType": string,
          "duration": string,
          "sub": number,
          "dub": number
        }
      },
      {
        "data_id": number,
        "poster": string,
        "title": string,
        "description": string,
        "tvInfo": {
          "showType": sting,
          "duration": string,
          "sub": number,
          "dub": number,
          "eps": number
        }
      },
      {...}
    ]
  }
}

Get search result's info

  GET /api/search

Endpoint

  https://anime-api-five-woad.vercel.app/api/search?keyword={string}

Parameters

Parameter Parameter-type Type Description Mandatory ? Default
keyword query string keyword Yes ✔️ --

Example of request

import axios from "axios";
const resp = await axios.get(
  "https://anime-api-five-woad.vercel.app/api/search?keyword=one%20punch%20man"
);
console.log(resp.data);

Sample Response

{
  "success": true,
  "results": [
    {
        "data_id": number,
        "poster": string,
        "title": string,
        "tvInfo": [Object]
      },
    {
        "data_id": number,
        "poster": string,
        "title": string,
        "tvInfo": [Object]
      },
    {
      "data_id": number,
      "poster": string,
      "title": string,
      "tvInfo": [Object]
    },
    {...}
  ]
}

Get streaming info

  GET /api/stream

Endpoint

  https://anime-api-five-woad.vercel.app/api/stream?id={string}

Parameters

Parameter Parameter-type Type Description Mandatory ? Default
id query string keyword Yes ✔️ --

Example of request

import axios from "axios";
const resp = await axios.get(
  "https://anime-api-five-woad.vercel.app/api/stream?id=frieren-beyond-journeys-end-18542?ep=107257"
);
console.log(resp.data);

Sample Response

{
  "success": true,
  "results": {
    "streamingInfo": [
      {
        "status": "fulfilled",
        "value": {
          "decryptionResult": {
            "link": string,
            "server": string,
            "type": "dub"
          },
          "subtitleResult": {
            "subtitles": [
              {
                "file": string,
                "label": string,
                "kind": string,
                "default": boolean
              },
              {
                "file": string,
                "kind": string
              }
            ],
            "intro": [Object],
            "outro": [Object]
          }
        }
      },
      {...},
      {
        "status": "fulfilled",
        "value": {
          "decryptionResult": {
            "link": string,
            "server": string,
            "type": "sub"
          },
          "subtitleResult": {
            "subtitles": [
              {
                "file": string,
                "label": string,
                "kind": string
              },
              {...}
            ],
            "intro": [Object],
            "outro": [Object]
          }
        }
      },
      {...}
    ],
    "episodes": [
      {
        "data_id": number,
        "episode_no": number,
        "title": string,
        "japanese_title": string
      },
      {...}
    ]
  }
}

Pull Requests

  • Pull requests are welcomed that address bug fixes, improvements, or new features.
  • Fork the repository and create a new branch for your changes.
  • Ensure your code follows our coding standards.
  • Include tests if applicable.
  • Describe your changes clearly in the pull request, explaining the problem and solution.

Reporting Issues

If you discover any issues or have suggestions for improvement, please open an issue. Provide a clear and concise description of the problem, steps to reproduce it, and any relevant information about your environment.

Support

If you like the project feel free to drop a star ✨. Your appreciation means a lot.

Made by itzzzme 🫰

anime-api's People

Contributors

itzzzme avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

anime-api's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.