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

Get Channel Short EPG

Developing
POST
/channels/get_short_epg
Channels
Get channel short epg, requires stream_id

Request

Body Params application/json
username
string 
required
password
string 
required
stream_id
integer 
required
Stream ID
Example
{
    "username": "string",
    "password": "string",
    "stream_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 '/channels/get_short_epg' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "string",
    "password": "string",
    "stream_id": 0
}'

Responses

🟢200OK
application/json
Body
data
object 
required
epg_listings
array [object {11}] 
required
error
null 
required
Example
{
    "data": {
        "epg_listings": [
            {
                "id": "string",
                "epg_id": "string",
                "title": "string",
                "lang": "string",
                "start": "string",
                "end": "string",
                "description": "string",
                "channel_id": "string",
                "start_timestamp": "string",
                "stop_timestamp": "string",
                "stream_id": "string"
            }
        ]
    },
    "error": null
}
Modified at 2024-12-24 13:56:57
Previous
Get Channel Category
Next
Get All Movies
Built with