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
Get movie/ vod stream info requres "movie_id"

Request

Body Params application/json

Example
{
    "username": "string",
    "password": "string",
    "movie_id": 0
}

Request Code 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

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