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 information

Developing
POST
/series/get_info
Channels
Get series info requres "series_id"

Request

Body Params application/json
username
string 
required
password
string 
required
series_id
integer 
required
Movie ID /VOD ID
Example
{
    "username": "string",
    "password": "string",
    "series_id": 0
}

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_info' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "string",
    "password": "string",
    "series_id": 0
}'

Responses

🟢200OK
application/json
Body
data
object 
required
seasons
array [object {10}] 
required
info
object 
required
episodes
object 
required
error
null 
required
Example
{
    "data": {
        "seasons": [
            {
                "name": "string",
                "episode_count": "string",
                "overview": "string",
                "air_date": "string",
                "cover": "string",
                "cover_tmdb": "string",
                "season_number": 0,
                "cover_big": "string",
                "releaseDate": "string",
                "duration": "string"
            }
        ],
        "info": {
            "name": "string",
            "cover": "string",
            "plot": "string",
            "cast": "string",
            "director": "string",
            "genre": "string",
            "releaseDate": "string",
            "last_modified": "string",
            "rating": "string",
            "rating_5based": "string",
            "backdrop_path": [
                "string"
            ],
            "tmdb": "string",
            "youtube_trailer": "string",
            "episode_run_time": "string",
            "category_id": "string",
            "category_ids": [
                0
            ]
        },
        "episodes": {
            "5": [
                {
                    "id": "string",
                    "episode_num": 0,
                    "title": "string",
                    "container_extension": "string",
                    "info": {
                        "air_date": "string",
                        "rating": 0,
                        "id": 0,
                        "movie_image": "string",
                        "duration_secs": 0,
                        "duration": "string",
                        "video": {
                            "index": 0,
                            "codec_name": "string",
                            "codec_long_name": "string",
                            "profile": "string",
                            "codec_type": "string",
                            "codec_tag_string": "string",
                            "codec_tag": "string",
                            "width": 0,
                            "height": 0,
                            "coded_width": 0,
                            "coded_height": 0,
                            "closed_captions": 0,
                            "film_grain": 0,
                            "has_b_frames": 0,
                            "pix_fmt": "string",
                            "level": 0,
                            "chroma_location": "string",
                            "field_order": "string",
                            "refs": 0,
                            "is_avc": "string",
                            "nal_length_size": "string",
                            "id": "string",
                            "r_frame_rate": "string",
                            "avg_frame_rate": "string",
                            "time_base": "string",
                            "start_pts": 0,
                            "start_time": "string",
                            "duration_ts": 0,
                            "duration": "string",
                            "bit_rate": "string",
                            "bits_per_raw_sample": "string",
                            "nb_frames": "string",
                            "extradata_size": 0,
                            "disposition": {
                                "default": 0,
                                "dub": 0,
                                "original": 0,
                                "comment": 0,
                                "lyrics": 0,
                                "karaoke": 0,
                                "forced": 0,
                                "hearing_impaired": 0,
                                "visual_impaired": 0,
                                "clean_effects": 0,
                                "attached_pic": 0,
                                "timed_thumbnails": 0,
                                "captions": 0,
                                "descriptions": 0,
                                "metadata": 0,
                                "dependent": 0,
                                "still_image": 0
                            },
                            "tags": {
                                "language": "string",
                                "handler_name": "string",
                                "vendor_id": "string",
                                "encoder": "string"
                            }
                        },
                        "audio": {
                            "index": 0,
                            "codec_name": "string",
                            "codec_long_name": "string",
                            "profile": "string",
                            "codec_type": "string",
                            "codec_tag_string": "string",
                            "codec_tag": "string",
                            "sample_fmt": "string",
                            "sample_rate": "string",
                            "channels": 0,
                            "channel_layout": "string",
                            "bits_per_sample": 0,
                            "id": "string",
                            "r_frame_rate": "string",
                            "avg_frame_rate": "string",
                            "time_base": "string",
                            "start_pts": 0,
                            "start_time": "string",
                            "duration_ts": 0,
                            "duration": "string",
                            "bit_rate": "string",
                            "nb_frames": "string",
                            "extradata_size": 0,
                            "disposition": {
                                "default": 0,
                                "dub": 0,
                                "original": 0,
                                "comment": 0,
                                "lyrics": 0,
                                "karaoke": 0,
                                "forced": 0,
                                "hearing_impaired": 0,
                                "visual_impaired": 0,
                                "clean_effects": 0,
                                "attached_pic": 0,
                                "timed_thumbnails": 0,
                                "captions": 0,
                                "descriptions": 0,
                                "metadata": 0,
                                "dependent": 0,
                                "still_image": 0
                            },
                            "tags": {
                                "language": "string",
                                "handler_name": "string",
                                "vendor_id": "string"
                            }
                        },
                        "bitrate": 0
                    },
                    "custom_sid": null,
                    "added": "string",
                    "season": 0,
                    "direct_source": "string"
                }
            ]
        }
    },
    "error": null
}
Modified at 2024-12-24 13:53:14
Previous
Get Series Category
Next
Search
Built with