mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
32 lines
985 B
JavaScript
32 lines
985 B
JavaScript
export const API_URL = "https://api.anixart.tv";
|
|
export const USER_AGENT =
|
|
"AnixartApp/8.2.1-23121216 (Android 11; SDK 30; arm64-v8a;)";
|
|
|
|
export const ENDPOINTS = {
|
|
release: {
|
|
info: `${API_URL}/release`,
|
|
episode: `${API_URL}/episode`,
|
|
},
|
|
user: {
|
|
profile: `${API_URL}/profile`,
|
|
bookmark: `${API_URL}/profile/list/all`,
|
|
history: `${API_URL}/history`,
|
|
favorite: `${API_URL}/favorite/all`,
|
|
},
|
|
filter: `${API_URL}/filter`,
|
|
auth: `${API_URL}/auth/signIn`,
|
|
// user: {
|
|
// history: `${API_URL}/history`,
|
|
// watching: `${API_URL}/profile/list/all/1`,
|
|
// planned: `${API_URL}/profile/list/all/2`,
|
|
// watched: `${API_URL}/profile/list/all/3`,
|
|
// delayed: `${API_URL}/profile/list/all/4`,
|
|
// abandoned: `${API_URL}/profile/list/all/5`,
|
|
// favorite: `${API_URL}/favorite`,
|
|
// },
|
|
search: `${API_URL}/search/releases`,
|
|
statistic: {
|
|
addHistory: `${API_URL}/history/add`,
|
|
markWatched: `${API_URL}/episode/watch`,
|
|
},
|
|
};
|