Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dhanush-git/gogoanime-api
This is a personal project that I am working on... work in progress π·ββοΈ
https://github.com/dhanush-git/gogoanime-api
anime anime-scraper animejs api downloader gogoanime gogoanime-api
Last synced: about 1 month ago
JSON representation
This is a personal project that I am working on... work in progress π·ββοΈ
- Host: GitHub
- URL: https://github.com/dhanush-git/gogoanime-api
- Owner: Dhanush-git
- Created: 2020-11-01T19:41:02.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-06-27T19:53:20.000Z (over 1 year ago)
- Last Synced: 2024-05-02T04:17:33.708Z (9 months ago)
- Topics: anime, anime-scraper, animejs, api, downloader, gogoanime, gogoanime-api
- Language: JavaScript
- Homepage:
- Size: 104 KB
- Stars: 30
- Watchers: 4
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gogoanime-API v.1π§¬
This is a personal project that I am working on π§°
it is a simple api for scrapping πͺ gogoanime.so**How to use the API ?**
π’ step 1
```
Download the repo π’
```π’ step 2
```
npm install
```
this should install π» all the dependencies required for running this project π
π’ step 3```
npm start
```
Now you should get a output similar to this```
Listening to port 3000
```
π₯³ Yay, our API server is running πββοΈπ¨π’ step 4 : Now visit
```
http://127.0.0.1:3000/
```
and you should be greeted with
```
π Hello worldπ, Welcome to π¦ GogoAnime API π§¬
```# API Documentation π
*Running on localhost*
**Available routes**
/Popular/:page_no
/NewSeasons/page_no
/getAnime/anime_id
/getEpisode/episode_id
/search/search_query
**GET | Popular Anime πΏ**
```
http://127.0.0.1:3000/Popular/:page
```
>this will return all the popular anime
```
[
{
"name": "anime name",
"img_url": "url",
"anime_id": "anime id"
}
...
]
```**GET | New Seasons π**
```
http://127.0.0.1:3000/NewSeasons/:page
```
>this will return all anime with new seasons available
```
[
{
"name": "anime name",
"img_url": "url",
"anime_id": "anime id"
}
...
]
```
**GET | Anime π΅οΈββοΈ**
```
http://127.0.0.1:3000/getAnime/:anime_id
```
>this will return the anime **name ,thumbnail image ,about ?** and **episode_id** for all the episodes available for that anime
```
[
{
"name": "anime name",
"img_url": "url",
"about": "Plot Summary: about the anime",
"episode_id":
[
"some-anime-episode-1",
"some-anime-episode-2",
"some-anime-episode-3"
...
]
}
]
```
**GET | Anime Episode π½**
```
http://127.0.0.1:3000/getEpisode/:episode_id
```
>this will return the downloadable π» link for the episode
```
[
{
"quality": "watch(360P-mp4)",
"ep_link": "episode url"
}
...
]
```**GET | Search Anime π½**
```
http://127.0.0.1:3000/search/:search-query
```
>this will return all the anime related to the search
```
[
{
"name": "anime name",
"img_url": "url",
"anime_id": "anime id"
}
...
]
```
**π’ Troubleshootings**
This is just a personal project created for study / demonstration purpose and to simplify my working life, it may or may not be a good fit for your project(s).
**β€οΈ Show your support**
Please β this repository if you like it or this project helped you!
Feel free to open issues or submit pull-requests to help me improving my work.
**π€ Author**
Dhanush Suvarna