loader

Note

You can pass the apikey in one of the following three ways:

  • 1. In the GET method: you can pass parameters in the query string of the URL with param "apikey".

Anime

GET api/anime/anisearch   (-1 request)

Search Anime/Manga by name.

https://misfitsdev.co/api/anime/anisearch?apikey=123456789&name=high%20school%20dxd&type=anime
const axios = require('axios');
(async () => {
  try {
    const response = await axios({
      url: 'https://misfitsdev.co/api/anime/anisearch',
      method: 'GET',
      params: {
        'apikey': '123456789',
        'name': 'high school dxd',
        'type': 'anime',
      }
    });
    console.log(response.data);
  }
  catch (error) {
    console.log(error);
  }
})();
import requests

url = 'https://misfitsdev.co/api/anime/anisearch'
querystring = {
    'apikey': '123456789',
    'name': 'high school dxd',
    'type': 'anime',
}
response = requests.request('GET', url, headers=headers, params=querystring)
print(response.text)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://misfitsdev.co/api/anime/anisearch');
$params['apikey'] = '123456789';
$params['name'] = 'high+school+dxd';
$params['type'] = 'anime';
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
$result = curl_exec($ch);
curl_close($ch);
echo $result;
#!/bin/bash

curl -X GET "https://misfitsdev.co/api/anime/anisearch?apikey=123456789&name=high%2520school%2520dxd&type=anime"
Name Type Range Description
apikey * int 1-9 Your API key
type int 1-8 anime or manga (default anime)
name * int 1-255 Name of the anime/manga
{
    "data": {
        "Page": {
            "media": [
                {
                    "id": 20,
                    "idMal": 20,
                    "isAdult": false,
                    "status": "FINISHED",
                    "chapters": null,
                    "episodes": 220,
                    "type": "ANIME",
                    "genres": [
                        "Action",
                        "Adventure",
                        "Comedy",
                        "Drama",
                        "Fantasy",
                        "Supernatural"
                    ],
                    "meanScore": 79,
                    "format": "TV",
                    "bannerImage": "https:\/\/s4.anilist.co\/file\/anilistcdn\/media\/anime\/banner\/20-HHxhPj5JD13a.jpg",
                    "coverImage": {
                        "large": "https:\/\/s4.anilist.co\/file\/anilistcdn\/media\/anime\/cover\/medium\/bx20-YJvLbgJQPCoI.jpg",
                        "extraLarge": "https:\/\/s4.anilist.co\/file\/anilistcdn\/media\/anime\/cover\/large\/bx20-YJvLbgJQPCoI.jpg"
                    },
                    "title": {
                        "english": "Naruto",
                        "romaji": "NARUTO",
                        "userPreferred": "Naruto"
                    }
                },
                {
                    "id": 1735,
                    "idMal": 1735,
                    "isAdult": false,
                    "status": "FINISHED",
                    "chapters": null,
                    "episodes": 500,
                    "type": "ANIME",
                    "genres": [
                        "Action",
                        "Adventure",
                        "Comedy",
                        "Drama",
                        "Fantasy",
                        "Supernatural"
                    ],
                    "meanScore": 81,
                    "format": "TV",
                    "bannerImage": "https:\/\/s4.anilist.co\/file\/anilistcdn\/media\/anime\/banner\/1735.jpg",
                    "coverImage": {
                        "large": "https:\/\/s4.anilist.co\/file\/anilistcdn\/media\/anime\/cover\/medium\/bx1735-Az5gbEdWeotG.png",
                        "extraLarge": "https:\/\/s4.anilist.co\/file\/anilistcdn\/media\/anime\/cover\/large\/bx1735-Az5gbEdWeotG.png"
                    },
                    "title": {
                        "english": "Naruto: Shippuden",
                        "romaji": "NARUTO: Shippuuden",
                        "userPreferred": "Naruto: Shippuden"
                    }
                },
                [],
                [],
                [],
                []
            ]
        }
    },
    "api_server": "https:\/\/misfitsdev.co"
}