Modern Search Engine API for Manga.
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)
{
"id": {
"title": "string",
"author": "string",
"updated_on": "string"
},
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)
{
"title": "string",
"author": [
"string"
],
"status": "string",
"description": "string",
"updated": "string",
"genres": [
"string"
],
"alternative": [
"string"
],
"chapters": [
{
"chapter-id": "chapter-name"
},
]
}
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)
"chapter-id": [
{
"alt": "string",
"img": "string"
}
]
}
Contributions are welcome! Please fork the repository and submit a pull request with your changes. For major changes, please open an issue first to discuss what you would like to change.