Halo
  1. Movies
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. Movies

Get movie information

Developing
POST
/movies/get_info
Channels
Get movie/ vod stream info requres "movie_id"

Request

Body Params application/json
username
string 
required
password
string 
required
movie_id
integer 
required
Movie ID /VOD ID
Example
{
    "username": "string",
    "password": "string",
    "movie_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 '/movies/get_info' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "string",
    "password": "string",
    "movie_id": 0
}'

Responses

🟢200OK
application/json
Body
data
object 
required
adult
boolean 
required
backdrop_path
string 
required
belongs_to_collection
object 
required
budget
integer 
required
genres
array [object {2}] 
required
homepage
string 
required
id
integer 
required
imdb_id
string 
required
origin_country
array[string]
required
original_language
string 
required
original_title
string 
required
overview
string 
required
popularity
number 
required
poster_path
string 
required
production_companies
array [object {4}] 
required
production_countries
array [object {2}] 
required
release_date
string 
required
revenue
integer 
required
runtime
integer 
required
spoken_languages
array [object {3}] 
required
status
string 
required
tagline
string 
required
title
string 
required
video
boolean 
required
vote_average
number 
required
vote_count
integer 
required
error
null 
required
Example
{
    "data": {
        "adult": true,
        "backdrop_path": "string",
        "belongs_to_collection": {
            "id": 0,
            "name": "string",
            "poster_path": "string",
            "backdrop_path": "string"
        },
        "budget": 0,
        "genres": [
            {
                "id": 0,
                "name": "string"
            }
        ],
        "homepage": "string",
        "id": 0,
        "imdb_id": "string",
        "origin_country": [
            "string"
        ],
        "original_language": "string",
        "original_title": "string",
        "overview": "string",
        "popularity": 0,
        "poster_path": "string",
        "production_companies": [
            {
                "id": 0,
                "logo_path": "string",
                "name": "string",
                "origin_country": "string"
            }
        ],
        "production_countries": [
            {
                "iso_3166_1": "string",
                "name": "string"
            }
        ],
        "release_date": "string",
        "revenue": 0,
        "runtime": 0,
        "spoken_languages": [
            {
                "english_name": "string",
                "iso_639_1": "string",
                "name": "string"
            }
        ],
        "status": "string",
        "tagline": "string",
        "title": "string",
        "video": true,
        "vote_average": 0,
        "vote_count": 0
    },
    "error": null
}
Modified at 2024-12-24 13:56:11
Previous
Get Movie Category
Next
Get All Series
Built with