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

Get Account Information

POST
/account/information
Account
Get user accoutn infromation. Response will contain information whether account is active, it's expiration data allowed stream formats etc

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

Responses

🟢200OK
application/json
Body
data
object 
required
user_info
object 
required
server_info
object 
required
error
null 
required
Example
{
    "data": {
        "user_info": {
            "username": "string",
            "password": "string",
            "message": "string",
            "auth": 0,
            "status": "string",
            "exp_date": "string",
            "is_trial": "string",
            "active_cons": "string",
            "created_at": "string",
            "max_connections": "string",
            "allowed_output_formats": [
                "string"
            ]
        },
        "server_info": {
            "url": "string",
            "port": "string",
            "https_port": "string",
            "server_protocol": "string",
            "rtmp_port": "string",
            "timezone": "string",
            "timestamp_now": 0,
            "time_now": "string",
            "process": true
        }
    },
    "error": null
}
Modified at 2024-12-24 13:57:33
Next
Get All Channels
Built with