- Account
- Channels
- Movies
- Series
- Search
Get All Series
POST
/series/get_all
Channels
Request
Body Params application/json
username
string
required
password
string
required
Example
{
"username": "string",
"password": "string"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/series/get_all' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "string",
"password": "string"
}'
Responses
🟢200OK
application/json
Body
data
array [object {18}]
required
num
integer
required
name
string
required
series_id
integer
required
cover
string
required
plot
string
required
cast
string
required
director
string
required
genre
string
required
releaseDate
string
required
last_modified
string
required
rating
string
required
rating_5based
string
required
backdrop_path
array[string]
required
youtube_trailer
string
required
tmdb
string
required
episode_run_time
string
required
category_id
string | null
required
category_ids
array[integer]
required
error
null
required
Example
{
"data": [
{
"num": 0,
"name": "string",
"series_id": 0,
"cover": "string",
"plot": "string",
"cast": "string",
"director": "string",
"genre": "string",
"releaseDate": "string",
"last_modified": "string",
"rating": "string",
"rating_5based": "string",
"backdrop_path": [
"string"
],
"youtube_trailer": "string",
"tmdb": "string",
"episode_run_time": "string",
"category_id": "string",
"category_ids": [
0
]
}
],
"error": null
}
Modified at 2024-12-24 13:55:25