mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-29 17:39:41 +05:00
Changelog:
Backend: - ADD Search API - EXTEND Release API
This commit is contained in:
parent
642277face
commit
ed21441f9f
4 changed files with 93 additions and 2 deletions
|
@ -5,7 +5,10 @@ from fastapi import Request
|
|||
|
||||
API_URL = "https://api.anixart.tv"
|
||||
ENDPOINTS = {
|
||||
"release": f"{API_URL}/release",
|
||||
"release": {
|
||||
"info": f"{API_URL}/release",
|
||||
"episode": f"{API_URL}/episode",
|
||||
},
|
||||
"profile": f"{API_URL}/profile",
|
||||
"filter": f"{API_URL}/filter",
|
||||
"auth": f"{API_URL}/auth/signIn",
|
||||
|
@ -17,6 +20,11 @@ ENDPOINTS = {
|
|||
"delayed": f"{API_URL}/profile/list/all/4",
|
||||
"abandoned": f"{API_URL}/profile/list/all/5",
|
||||
},
|
||||
"search": f"{API_URL}/search/releases",
|
||||
"statistic": {
|
||||
"addHistory": f"{API_URL}/history/add",
|
||||
"markWatched": f"{API_URL}/episode/watch",
|
||||
},
|
||||
}
|
||||
USER_AGENT = "AnixartApp/8.2.1-23121216 (Android 11; SDK 30; arm64-v8a;)"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue