Halo
  1. Series
Halo
  • Account
    • Get Account Information
      POST
  • Channels
    • Get All Channels
      POST
    • Get All Channel Categories
      POST
    • Get Channel Category
      POST
    • Get Channel Short EPG
      POST
  • Movies
    • Get All Movies
      POST
    • Get All Movie Categories
      POST
    • Get Movie Category
      POST
    • Get movie information
      POST
  • Series
    • Get All Series
      POST
    • Get All Series Categories
      POST
    • Get Series Category
      POST
    • Get Series information
      POST
  • Search
    • Search
      POST
  1. Series

Get Series Category

POST
/series/get_sub_categories
Channels
Get sub categories for series requires cat_id "category id"

Request

Body Params application/json
username
string 
required
password
string 
required
cat_id
string 
required
Category Id
Example
{
    "username": "string",
    "password": "string",
    "cat_id": "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_sub_categories' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "string",
    "password": "string",
    "cat_id": "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 
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:54:42
Previous
Get All Series Categories
Next
Get Series information
Built with