Skip to content

sakshamssr/upanime

Repository files navigation

UpAnime

Modern Search Engine API for Manga.

Search

Details regarding the usage of the search function.

https://upanime.vercel.app/manga/{query}
import requests

# Using the example query "dragon".
url = "https://upanime.vercel.app/manga/dragon"
response = requests.get(url)
data = response.json()

print(data)

Json Output Format:

{
    "id": {
        "title": "string",
        "author": "string",
        "updated_on": "string"
    },

Get Manga Info

Details regarding the usage of the get manga info function.

https://upanime.vercel.app/manga/info/{id}
import requests

# Using the example query "pb992910".
url = "https://upanime.vercel.app/manga/info/pb992910"
response = requests.get(url)
data = response.json()

print(data)

Json Output Format:

{
    "title": "string",
    "author": [
        "string"
    ],
    "status": "string",
    "description": "string",
    "updated": "string",
    "genres": [
        "string"
    ],
    "alternative": [
        "string"
    ],
    "chapters": [
        {
            "chapter-id": "chapter-name"
        },
    ]
}

Get Manga Chapter Pages

Details regarding the usage of the Get manga chapter pages function.

https://upanime.vercel.app/manga/info/{id}/{chapter-id}
import requests

# Using the example id "pb992910".
# Using the example chapter-id "chapter-1".
url = "https://upanime.vercel.app/manga/info/pb992910/chapter-1"
response = requests.get(url)
data = response.json()

print(data)

Json Output Format:

 "chapter-id": [
        {
            "alt": "string",
            "img": "string"
        }
              ]
}