├── .github └── workflows │ └── jekyll-gh-pages.yml ├── .gitignore ├── .hintrc ├── CNAME ├── Cloud ├── nap_APIs.md ├── sr_APIs.md └── ys_APIs.md ├── Docs └── FAQ.md ├── HoYoPlay ├── BiliBili │ ├── GI.md │ ├── SR.md │ └── ZZZ.md ├── Epic-Google │ ├── Epic-Google_GI.md │ ├── Epic_SR.md │ ├── Epic_ZZZ.md │ └── HI3 │ │ ├── Region │ │ ├── Asia.md │ │ ├── Global.md │ │ ├── Japan.md │ │ ├── Korea.md │ │ └── SEA.md │ │ └── Root.md ├── Official │ ├── China.md │ └── Global.md └── URI.md ├── Installer ├── HYP-BiliBili.md ├── HYP-GPlay.md └── HoYoPlay.md ├── README.md ├── Sophon └── Imp.md ├── _config.yml ├── _layouts └── default.html ├── assets └── css │ └── style.scss └── favicon.ico /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Guide/download_and_verify.md 2 | -------------------------------------------------------------------------------- /.hintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/.hintrc -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | aapi.studiobutter.io.vn -------------------------------------------------------------------------------- /Cloud/nap_APIs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/Cloud/nap_APIs.md -------------------------------------------------------------------------------- /Cloud/sr_APIs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/Cloud/sr_APIs.md -------------------------------------------------------------------------------- /Cloud/ys_APIs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/Cloud/ys_APIs.md -------------------------------------------------------------------------------- /Docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/Docs/FAQ.md -------------------------------------------------------------------------------- /HoYoPlay/BiliBili/GI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/HoYoPlay/BiliBili/GI.md -------------------------------------------------------------------------------- /HoYoPlay/BiliBili/SR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/HoYoPlay/BiliBili/SR.md -------------------------------------------------------------------------------- /HoYoPlay/BiliBili/ZZZ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/HoYoPlay/BiliBili/ZZZ.md -------------------------------------------------------------------------------- /HoYoPlay/Epic-Google/Epic-Google_GI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/HoYoPlay/Epic-Google/Epic-Google_GI.md -------------------------------------------------------------------------------- /HoYoPlay/Epic-Google/Epic_SR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/HoYoPlay/Epic-Google/Epic_SR.md -------------------------------------------------------------------------------- /HoYoPlay/Epic-Google/Epic_ZZZ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/HoYoPlay/Epic-Google/Epic_ZZZ.md -------------------------------------------------------------------------------- /HoYoPlay/Epic-Google/HI3/Region/Asia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/HoYoPlay/Epic-Google/HI3/Region/Asia.md -------------------------------------------------------------------------------- /HoYoPlay/Epic-Google/HI3/Region/Global.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/HoYoPlay/Epic-Google/HI3/Region/Global.md -------------------------------------------------------------------------------- /HoYoPlay/Epic-Google/HI3/Region/Japan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/HoYoPlay/Epic-Google/HI3/Region/Japan.md -------------------------------------------------------------------------------- /HoYoPlay/Epic-Google/HI3/Region/Korea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/HoYoPlay/Epic-Google/HI3/Region/Korea.md -------------------------------------------------------------------------------- /HoYoPlay/Epic-Google/HI3/Region/SEA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/HoYoPlay/Epic-Google/HI3/Region/SEA.md -------------------------------------------------------------------------------- /HoYoPlay/Epic-Google/HI3/Root.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/HoYoPlay/Epic-Google/HI3/Root.md -------------------------------------------------------------------------------- /HoYoPlay/Official/China.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/HoYoPlay/Official/China.md -------------------------------------------------------------------------------- /HoYoPlay/Official/Global.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/HoYoPlay/Official/Global.md -------------------------------------------------------------------------------- /HoYoPlay/URI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/HoYoPlay/URI.md -------------------------------------------------------------------------------- /Installer/HYP-BiliBili.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/Installer/HYP-BiliBili.md -------------------------------------------------------------------------------- /Installer/HYP-GPlay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/Installer/HYP-GPlay.md -------------------------------------------------------------------------------- /Installer/HoYoPlay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/Installer/HoYoPlay.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/README.md -------------------------------------------------------------------------------- /Sophon/Imp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/Sophon/Imp.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/_config.yml -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/assets/css/style.scss -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiobutter/anime_api/HEAD/favicon.ico --------------------------------------------------------------------------------