Anichart's Schedule API Wrapper is an UNOFFICIAL wrapper for the Anichart's API. that allows you to get the weekly schedule airing animes using Anichart's graphQL API.
curl http://localhost:3000/
{
"sundaySchedule": [
{
"id": 332659,
"episode": 1029,
"airingAt": 1660437000,
"media": {
"id": 21,
"title": {
"romaji": "ONE PIECE",
"native": "ONE PIECE",
"english": "ONE PIECE"
},
"siteUrl": "https://anilist.co/anime/21",
"episodes": null,
"source": "MANGA",
"description": "Gold Roger was known as the Pirate King, the strongest and most infamous being to have sailed the Grand Line. ect...",
"coverImage": {
"extraLarge": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/nx21-tXMN3Y20PIL9.jpg",
"color": "#e4a15d"
}
}
},
]
...
}
- Clone the repo
git clone https://github.com/retconned/anichart-api
- Change directory to the project folder
cd anichart-api
- Run the app locally
yarn dev
- Build the docker image
docker build . -t kingyo-bot
- Build the image
docker build -t anichart-api .
- Run the container
docker run --name anichart-api -p 3000:3000 -it --rm anichart-api
- Kill the container
docker kill anichart-api
This project is not affiliated with “AniList” or “AniChart”. This project is just a wrapper for the prexisting Anichart graphQL API.