HEOS CLI Guide for Developers
HEOS CLI Guide for Developers
Version 1.9
05/23/2017
In general, Sound United will not provide any support for programming or
using the commands in this document.
1.2 1.310.170 Remove support for play url. Special characters ('&,'=', and '%') are encoded. 08/06/2015 Prakash
Mortha
Known Issues:
1.5 1.349.101 Add preset command to play stations from HEOS Favorites 04/13/2016 Prakash
Mortha
Add players network connection type in get_players and get_player_info command
responses
1.8 1.397.190 Add support for Juke music service 04/12/2017 Prakash
Mortha
Add support for adding station to HEOS Favorites from browse menu
[LS AVR only] Add new commands set_quickselect, play_quickselect, and get_quickselects.
1. Overview
The Denon HEOS is a network connected, wireless, multi-room music system. The HEOS Command Line Interface (CLI) allows external
control systems to manage, browse, play, and get status from the Denon HEOS products. The HEOS CLI is accessed through a telnet
connection between the HEOS product and the control system. The control system sends commands and receives responses over the
network connection. The CLI commands and responses are in human readable (ascii) format. The command is a text string and the
responses are in JSON format. The commands and responses for browsing music servers and services use a RESTFUL like approach while
other commands and responses are more static.
Source ID (sid) Service Name Browse through CLI Search/New station through CLI
4 Spotify No No
8 Sirius XM Yes No
15 Moodmix No No
Following table list out other supported music sources through CLI.
2. Connection
The HEOS products can be discovered using the UPnP SSDP protocol. Through discovery, the IP address of the HEOS products can be
retrieved. Once the IP address is retrieved, a telnet connection to port 1255 can be opened to access the HEOS CLI and control the HEOS
system. The HEOS product IP address can also be set statically and manually programmed into the control system. Search target name
(ST) in M-SEARCH discovery request is 'urn:schemas-denon-com:device:ACT-Denon:1'.
The control system should use various Get commands to determine the players and groups currently in the HEOS system.
Controller software can control all HEOS speakers in the network by establishing socket connection with just one HEOS speaker. It
is recommended not to establish socket connection to each HEOS speaker. This is to decrease network traffic caused by establishing
socket connection to each HEOS speaker. Controller software can open multiple socket connections to the single HEOS speaker. Typically
controllers will use one connection to listen for change events and one to handle user actions.
Inability of CLI module to process player commands. This is because, by nature of UPnP, CLI module need some time to discover
all players before they can be identified by their unique Id (pid)
Spew of events when controller initially connects to the speaker. In order to avoid excessive event handling in a event driven
controller system, the following initialization sequence is suggested:
1. Un-register for change events. By default speaker doesn't send unsolicited events but still it is a good idea to send
un-register command.This is done through 'register_for_change_events' command.
2. If user credentials are available, sign-in to HEOS user account. This is done through 'sign_in' command.
3. Retrieve current HEOS ecosystem status. This is done through commands like 'get_players', 'get_sources', 'get_groups',
'get_queue', 'get_now_playing_media', 'get_volume', 'get_play_state' etc.
4. Register for change events. This is done through 'register_for_change_events' command.
If controller design involves disconnect and reconnect to HEOS speakers through CLI, it is recommended to keep a idle
connection to HEOS Speaker thus avoiding CLI module to set back to dormant mode.
2.1.2 Caveats
2.1.2.1 Compatibility
Please take a look at the following suggestions to avoid breaking controller code due to future enhancements
The 'message' field part of HEOS response is a string. The attribute value pair in this message string is delimited by '&'. Further the
attribute name and value is separated by '=' sign. Please note that new arguments can be added in the future.
New JSON objects may be added to the 'payload' as part of future enhancements.
Changes made to HEOS user account, through HEOS app will not reflect through CLI until the controller is restarted. Ex: Adding or
removing music services to HEOS user account, through HEOS app will not reflect in get_music_sources command response until the
controller is restarted.
Solution: Controller needs to re sign-in to HEOS account to reflect changes made through HEOS app, with out restarting
the controller. So, in addition to performing HEOS account sign-in as part of driver initialization process, it is highly
recommended to provide sign-out and sign-in option through end users UI screen. End user need to re-signIn when he
adds/removes music service through HEOS app.
2.1.3 Miscellaneous
Controllers can add custom argument SEQUENCE=<number> in browse commands to associate command and response. This is
possible because the 'message' field in the response packet includes all the arguments sent in the command. Please let us know if
you need additional custom argument other than 'SEQUENCE'. This is to avoid accidentally using HEOS command arguments for
special purpose.
Maximum number of simultaneous socket connections supported by HEOS speaker is 32.
Service specific transport control options are as follows:
Amazon Music station Play, Pause, Stop, PlayNext, Play, Pause, PlayNext,
PlayPrevious PlayPrevious
song NA NA
SoundCloud station NA NA
song NA NA
Tidal station NA NA
song NA NA
Playlists station NA NA
song NA NA
3.1 Commands
Note: Special characters, i.e '&', '=', and '%' in attribute/value needs to be encoded to '%26(&)', '%3D(=)', and '%25(%)'. Most of the time,
controllers use the same string that is received in previous command response. For example, while preparing 'play_stream'/'add_to_queue'
command, controllers will use the strings obtained in 'browse' command response. Those strings are already encoded. So, controllers are
not required to perform any special action. However, controllers might need to decode the encoded strings before they can be properly
displayed on the controller GUI.
3.2 Responses
The responses to commands are in JSON format and use the following general structure:
{
"heos": {
"command": "'command_group'/'command'",
"result": "'success' or 'fail'",
"message": "other result information'"
},
"payload":{
'Rest of response data'
}
}
Some command responses will not include a payload.
If the "result" of the command is "fail" then the "message" information contains the error codes for the failure. The error codes can be
found in section 'Error Code description'.
Some commands will also cause unsolicited events. For example, sending the 'player/clear_queue' command will cause the Player Queue
Changed event and could also cause the Player State Changed event.
When the actual response can't be populated immediately, a special response will be sent back as shown below. This usually occurs
during browse/search as CLI needs to retrieve data from remote media server or online service.
{
"heos": {
"command": "'command_group'/'command'",
"result": "'success'",
"message": "command under process'"
}
Note: Special characters '&', '=', and '%' in the JSON response fields are encoded to '%26(&)', '%3D(=)', and '%25(%)'.
4. Command and Response Details
4.1 System Commands
Command: heos://system/register_for_change_events?enable='on_or_off'
Response:
{
"heos": {
"command": "system/register_for_change_events",
"result": "success",
"message": "enable='on_or_off'"
}
}
Example: heos://system/register_for_change_events?enable=on
This command returns current user name in its message field if the user is currently singed in.
Response:
{
"heos": {
"command": "system/check_account",
"result": "success",
"message": "signed_out" or "signed_in&un=<current user name>"
}
}
Example: heos://system/check_account
Response:
{
"heos": {
"command": "system/sign_in ",
"result": "success",
"message": "signed_in&un=<current user name>"
}
}
Example: heos://system/[email protected]&pw=12345
Example: heos://system/sign_out
Example: heos://system/heart_beat
Command: heos://system/reboot
Response:
{
"heos": {
"command": "system/reboot",
"result": "success"
"message": ""
}
}
Example: heos://system/reboot
Command: heos://system/prettify_json_response?enable='on_or_off'
Response:
{
"heos": {
"command": "system/prettify_json_response",
"result": "success",
"message": "enable='on_or_off'"
}
}
Example: heos://system/prettify_json_response?enable=on
Command: heos://player/get_players
control Only valid when lintout level type is Fixed (2). 1 - None
2 - IR
3 - Trigger
4 - Network
Note: The group id field (gid) is optional. The 'gid' field will only be appeared if the player(s) is part of a group.
Note: control field is only populated when lineout level type is Fixed (lineout = 2)
Response:
{
"heos": {
"command": "player/get_players",
"result": "success",
"message": ""
},
"payload": [
{
"name": "'player name 1'",
"pid": "player id 1'",
"gid": "group id'",
"model": "'player model 1'",
"version": "'player verison 1'"
"network": "wired"
"lineout": "level type"
"control": "control option"
},
{
"name": "'player name 2'",
"pid": "player id 2'",
"gid": "group id'",
"model": "'player model 2'",
"version": "'player verison 2'"
"network": "wifi"
"lineout": "level type"
"control": "control option"
},
.
.
.
{
"name": "'player name N'",
"pid": "player id N'",
"gid": "group id'",
"model": "'player model N'",
"version": "'player verison N'"
"network": "wifi"
"lineout": "level type"
"control": "control option"
}
]
}
Example: heos://player/get_players
4.2.2 Get Player Info
Command: heos://player/get_player_info?pid=player_id
control Only valid when lintout level type is Fixed (2). 1 - None
2 - IR
3 - Trigger
4 - Network
Note: The group id field (gid) is optional. The 'gid' field will only be appeared if the player(s) is part of a group.
Note: control field is only populated when lineout level type is Fixed (lineout = 2)
Response:
{
"heos": {
"command": "player/get_player_info",
"result": "success",
"message": "pid='player_id'"
},
"payload": {
"name": "'player name'",
"pid": "player id'",
"gid": "group id'",
"model": "'player model'",
"version": "'player verison'"
"network": "wired"
"lineout": "level type"
"control": "control option"
}
}
Example: heos://player/get_player_info?pid=1
Command: heos://player/get_play_state?pid=player_id
Response:
{
"heos": {
"command": " player/get_play_state ",
"result": "success",
"message": "pid='player_id'&state='play_state'"
}
}
Example: heos://player/get_play_state?pid=1
Response:
{
"heos": {
"command": " player/set_play_state ",
"result": "success",
"message": "pid='player_id'&state='play_state'"
}
}
Example: heos://player/set_play_state?pid=1&state=play
Note: Play state of a group can be controlled by sending set_play_state command to any of the player in the group.
Command: heos://player/get_now_playing_media?pid=player_id
id Options available for now playing media Following options are currently supported for now playing
(options) media
11 - Thumbs Up
12 - Thumbs Down
Response:
The following response provides example when the speaker is playing a song.
Note: For local music and DLNA servers sid will point to Local Music Source id.
{
"heos": {
"command": "player/get_now_playing_media",
"result": "success",
"message": "pid='player_id'"
},
"payload": {
"type" : "'song'",
"song": "'song name'",
"album": "'album name'",
"artist": "'artist name'",
"image_url": "'image url'",
"mid": "'media id'",
"qid": "'queue id'",
"sid": source_id
The following response provides example when the speaker is playing a station.
{
"heos": {
"command": "player/get_now_playing_media",
"result": "success",
"message": "pid='player_id'"
},
"payload": {
"type" : "'station'",
"song": "'song name'",
"station": "'station name'",
"album": "'album name'",
"artist": "'artist name'",
"image_url": "'image url'",
"mid": "'media id'",
"qid": "'queue id'",
"sid": source_id
}
"options": [
{
"play": [
{
"id": 19,
"name": "Add to HEOS Favorites"
}
]
}
]
}
Example: heos://player/get_now_playing_media?pid=1
Command: heos://player/get_volume?pid='player_id'
Response:
{
"heos": {
"command": " player/ get_volume ",
"result": "success",
"message": "pid='player_id'&level='vol_level'"
}
}
Example: heos://player/get_volume?pid=1
Command: heos://player/set_volume?pid=player_id&level=vol_level
Response:
{
"heos": {
"command": " player/ set_volume ",
"result": "success",
"message": "pid='player_id'&level='vol_level'"
}
}
Example: heos://player/set_volume?pid=2&level=30
4.2.8 Volume Up
Command: heos://player/volume_up?pid=player_id&step=step_level
Response:
{
"heos": {
"command": " player/ volume_up ",
"result": "success",
"message": "pid='player_id'&step='step_level'"
}
}
Example: heos://player/volume_up?pid=2&step=5
Command: heos://player/volume_down?pid=player_id&step=step_level
Response:
{
"heos": {
"command": " player/ volume_down ",
"result": "success",
"message": "pid='player_id'&step='step_level'"
}
}
Example: heos://player/volume_down?pid=2&step=5
Command: heos://player/get_mute?pid=player_id
Response:
{
"heos": {
"command": " player/ get_mute ",
"result": "success",
"message": "pid='player_id'&state='on_or_off'"
}
}
Example: heos://player/get_mute?pid=1
Command: heos://player/set_mute?pid=player_id&state=on_or_off
Response:
{
"heos": {
"command": " player/ set_mute ",
"result": "success",
"message": "pid='player_id'&state='on_or_off'"
}
}
Example: heos://player/set_mute?pid=3&state=off
Command: heos://player/toggle_mute?pid=player_id
Response:
{
"heos": {
"command": " player/ toggle_mute ",
"result": "success",
"message": "pid=player_id"
}
}
Example: heos://player/toggle_mute?pid=3
Command: heos://player/get_play_mode?pid=player_id
Response:
{
"heos": {
"command": " player/get_play_mode",
"result": "success",
"message": "pid='player_id'&&repeat= on_all_or_on_one_or_off&shuffle=on_or_off"
}
}
}
Example: hoes://player/get_play_mode?pid=1
Command: heos://player/set_play_mode?pid='player_id'&repeat=on_all_or_on_one_or_off&shuffle=on_or_off
Response:
{
"heos": {
"command": " player/set_play_mode",
"result": "success",
"message": "pid='player_id'&repeat= on_all_or_on_one_or_off&shuffle=on_or_off"
}
}
Example: heos://player/set_play_mode?pid=1&repeat=on_all&shuffle=off
Range is start and end record index to return. Range parameter is optional. Omitting range parameter returns all records but a maximum
of 100 records are returned per response.
range Range is start and end record index to return. Range parameter is optional. range starts from 0
Omitting range parameter returns all records up to a maximum of 100 records per response.
Response:
{
"heos": {
"command": "player/get_queue",
"result": "success",
"message": "'pid=player_id&range=start#, end#"
},
"payload": [
{
"song": "'song name 1'",
"album": "'album name 1'",
"artist": "'artist name 1'",
"image_url": "'image_url 1'",
"qid": "'queue id 1'",
"mid": "'media id 1'"
},
.
.
.
{
"song": "'song name N'",
"album": "'album name N'",
"artist": "'artist name N'",
" image_url": "''image_url N'",
"qid": "'queue id N'",
"mid": "'media id N'"
Example: heos://player/get_queue?pid=1&range=0,10
Command: heos://player/play_queue?pid=player_id&qid=queue_song_id
Response:
{
"heos": {
"command": " player/play_queue",
"result": "success",
"message": "pid='player_id'&qid='queue_id'"
}
}
Example: heos://player/play_queue?pid=2&qid=9
Command: heos://player/remove_from_queue?pid=player_id&qid=queue_id_1,queue_id_2,…,queue_id_n
qid List of comma separated queue_id's where each queue id for song is returned by 'get_queue' command N/A
Response:
{
"heos": {
"command": "player/remove_from_queue ",
"result": "success",
"message": "pid='player_id'&qid=queue_id_1, queue_id_2,…,queue_id_n'"
}
}
Command: heos://player/save_queue?pid=player_id&name=playlist_name
name String for new playlist name limited to 128 unicode characters N/A
Response:
{
"heos": {
"command": "player/save_queue ",
"result": "success",
"message": "pid='player_id'&name='playlist_name'"
}
}
Command: heos://player/clear_queue?pid=player_id
Response:
{
"heos": {
"command": "player/clear_queue ",
"result": "success",
"message": "pid='player_id'"
}
}
Example: heos://player/clear_queue
sqid List of comma separated queue_id's where each queue id for song is returned by 'get_queue' list item range:1 to size of
command queue
dqid User select this value as the destination of contents which is indicated in sqid. 1 to size of queue.
Response:
{
"heos": {
"command": "player/move_queue_item ",
"result": "success",
"message": "pid='player_id'&sqid=' source_queue_id_1','source_queue_id_2',...,'source_queue_id_n',dqid='destination_queue
_id'
}
}
Example: heos://player/move_queue_item?pid=2,4&sqid=2&dqid=6
Response:
{
"heos": {
"command": " player/play_next",
"result": "success",
"message": "pid=player_id"
}
}
Example: heos://player/play_next?pid=1
Response:
{
"heos": {
"command": " player/play_previous",
"result": "success",
"message": "pid=player_id"
}
}
Example: heos://player/play_previous?pid=1
Response:
{
"heos": {
"command": " player/set_quickselect",
"result": "success",
"message": "pid=player_id&id=<quick select id>"
}
}
Example: heos://player/set_quickselect?pid=1&id=2
Response:
{
"heos": {
"command": "player/play_quickselect",
"result": "success",
"message": "pid=player_id&id=<quick select id>"
}
}
Example: heos://player/play_quickselect?pid=1&id=2
Response:
{
"heos": {
"command": "player/get_quickselects",
"result": "success",
"message": "pid=player_id"
},
"payload": [
{
"id": 1,
"name": "Quick Select 1'"
},
{
"id": 2,
"name": "Quick Select 2'"
},
.
.
.
{
"id": 6,
"name": "Quick Select 6'"
}
]
}
Example: heos://player/get_quickselects?pid=1
Command: heos://group/get_groups
Response:
{
"heos": {
"command": "player/get_groups",
"result": "success",
"message": ""
},
"payload": [
{
"name": "'group name 1'",
"gid": "group id 1'",
"players": [
{
"name": "player name 1",
"pid": "'player id 1'",
"role": "player role 1 (leader or member)'"
},
{
"name": "player name 2",
"pid": "'player id 2'",
"role": "player role 2 (leader or member)'"
},
.
.
.
{
"name": "player name N",
"pid": "'player id N'",
"role": "player role N (leader or member)'"
}
]
},
{
"name": "'group name 2'",
"gid": "group id 2'",
"players": [
{
"name": "player name 1",
"pid": "'player id 1'",
"role": "player role 1 (leader or member)'"
},
{
"name": "player name 2",
"pid": "'player id 2'",
"role": "player role 2 (leader or member)'"
},
.
.
.
{
"name": "player name N",
"pid": "'player id N'",
"role": "player role N (leader or member)'"
}
]
},
.
.
.
{
"name": "'group name N'",
"gid": "group id N'",
"players": [
{
"name": "player name 1",
"pid": "'player id 1'",
"role": "player role 1 (leader or member)'"
},
{
"name": "player name 2",
"pid": "'player id 2'",
"role": "player role 2 (leader or member)'"
},
.
.
.
{
"name": "player name N",
"pid": "'player id N'",
"role": "player role N (leader or member)'"
}
]
}
]
}
Example: heos://group/get_groups
Command: heos://group/get_group_info?gid=group_id
Response:
{
"heos": {
"command": "player/get_groups",
"result": "success",
"message": "gid=group_id"
},
"payload": {
"name": "'group name 1'",
"gid": "group id 1'",
"players": [
{
"name": "player name 1",
"pid": "'player id 1'",
"role": "player role 1 (leader or member)'"
},
{
"name": "player name 2",
"pid": "'player id 2'",
"role": "player role 2 (leader or member)'"
},
.
.
.
{
"name": "player name N",
"pid": "'player id N'",
"role": "player role N (leader or member)'"
}
]
}
}
Example: heos://group/get_group_info&?gid=1
Ex: heos://group/set_group?pid=3,1,4
Modify existing group members:
Adds or delete players from the group. First player id should be the group leader id.
Ex: heos://group/set_group?pid=3,1,5
Ex: heos://group/set_group?pid=3
pid List of comma separated player_id's where each player id is returned by 'get_players' or 'get_groups' N/A
command; first player_id in list is group leader
Response:
The following response provides example when all the speakers in the group are un-grouped.
{
"heos": {
"command": "player/set_group ",
"result": "success",
"message": "pid='player_id'
}
}
Example: heos://group/set_group?pid=3,1,4
Command: heos://group/get_volume?gid=group_id
Response:
{
"heos": {
"command": "group/get_volume ",
"result": "success",
"message": "gid='group_id'&level='vol_level'"
}
}
Example: heos://group/get_volume?gid=1
Command: heos://group/set_volume?gid=group_id&level=vol_level
Response:
{
"heos": {
"command": "group/set_volume ",
"result": "success",
"message": "gid='group_id'&level='vol_level'"
}
}
Example: heos://group/set_volume?gid=1&level=30
Command: heos://group/volume_up?gid=group_id&step=step_level
Response:
{
"heos": {
"command": " group/ volume_up ",
"result": "success",
"message": "gid='group_id'&step='step_level'"
}
}
Example: heos://group/volume_up?gid=1&step=5
Command: heos://group/volume_down?gid=group_id&step=step_level
Response:
{
"heos": {
"command": " group/ volume_down ",
"result": "success",
"message": "gid='group_id'&step='step_level'"
}
}
Example: heos://group/volume_down?gid=1&step=5
Command: heos://group/get_mute?gid=group_id
Attribute Description Enumeration
Response:
{
"heos": {
"command": "group/ get_mute ",
"result": "success",
"message": "gid='group_id'&state='on_or_off'"
}
}
Example: heos://group/get_mute?gid=1
Command: heos://group/set_mute?gid=group_id&state=on_or_off
Response:
{
"heos": {
"command": "group/ set_mute ",
"result": "success",
"message": "gid=group_id'&state='on_or_off'"
}
}
Example: heos://group/set_mute?gid=1&state=off
Command: heos://group/toggle_mute?gid=group_id
Response:
{
"heos": {
"command": "group/ toggle_mute ",
"result": "success",
"message": "gid=group_id"
}
}
Example: heos://group/toggle_mute?gid=1
Command: heos://browse/get_music_sources
Response:
{
"heos": {
"command": "browse/get_music_sources",
"result": "success",
"message": ""
},
"payload": [
{
},
{
}
]
}
Example: heos://browse/get_music_sources
music_service
heos_service
heos_server
dlna_server
Response:
{
"heos": {
"command": "browse/get_source_info",
"result": "success",
"message": ""
},
"payload": [
{
},
]
}
Example: heos://browse/get_source_info
music_service
heos_service
heos_server
dlna_server
id Options available for current browse level Following options are currently supported for 'Browse
(options) Source' command
range Range is start and end record index to return. Range parameter is range starts from 0
optional.
Omitting range parameter returns all records up to a maximum of NOTE: Range in Browse source command is only
either 50 or 100 records per response. supported while browsing Favorites
The default maximum number of records depend on the service
type.
The command 'Get Music Sources' lists all music servers (type 'heos_server') in the network under one virtual source called 'Local
Music'. Other virtual source that represents all auxiliary inputs (type 'heos_service') is 'AUX Input'.
Note: Optionally this command returns service 'options' that are available for current browse items. Please refer to 'Get Service Options for
now playing screen' for service options available on now playing screen.
Note: The following response provides examples of the various service options. The actual response will depend on the service options
available for a given source type.
Response while browsing actual media sources of type 'heos_server' and 'heos_service'. These includes 'Local Music', 'History', 'AUX
Inputs', 'Playlists', and 'Favorites'.
{
"heos": {
"command": "browse/browse",
"result": "success",
"message": "sid=source_id&returned=items_in_current_response&count=total_items_available"
},
"payload": [
{
"name": "'source name 1'",
"'image_url": "'source logo url 1'",
"sid": "source id 1'",
"type": "'source type 1'"
},
{
"name": "'source name 2'",
"'image_url": "'source logo url 2'",
"sid": "source id 2'",
"type": "'source type 2'"
},
{
"name": "'source name N'",
"'image_url": "'source logo url N'",
"sid": "source id N'",
"type": "'source type N'"
}
],
"options": [
{
"browse": [
{
"id": 13,
"scid": "criteria Id",
"name": "criteria string"
}
]
}
]
}
Example: heos://browse/browse?sid=1
Response when browsing top music view in an actual music server/music services.
Note: the following response provides examples of the various media types. The actual response will depend on the source browsed and
the hierarchy supported by that source.
{
"heos": {
"command": "browse/browse",
"result": "success",
"message": "sid=source_id&returned=items_in_current_response&count=total_items_available"
},
"payload": [
{
"container": "yes",
"playable": "no",
"type": "artist",
"name": "'artist name'",
"image_url": "'artist image url'",
"cid": "container id'",
"mid": "media id"
},
{
"container": "yes",
"playable": "yes",
"type": "album",
"name": "'album name'",
"image_url": "'album image url'",
"artist": "'artist name'",
"cid": "'container id'",
"mid": "'media id'"
},
{
"container": "no",
"playable": "yes",
"type": "song",
"name": "'song name'",
"image_url": "'album image url'",
"artist": "'artist name'",
"album": "'album name'",
"mid": "'media id'"
},
{
"container": "yes",
"playable": "no",
"type": "container",
"name": "'container name'",
"image_url": "'container image url'",
"cid": "'container id'",
"mid": "'media id'"
},
{
"container": "no",
"playable": "yes",
"type": "station",
"name": "'station name'",
"image_url": "'station url'",
"mid": "'media id'"
}
],
"options": [
{
"browse": [
{
"id": 20,
"name": "Remove from HEOS Favorites"
}
]
}
]
}
Example: heos://browse/browse?sid=1346442495
Supported Sources: Local Media Servers, Playlists, History, Aux-In, Favorites, TuneIn, Pandora, Rhapsody, Deezer, SiriusXM, iHeartRadio,
Napster, Tidal, SoundCloud, Amazon Music, Juke
range Range is start and end record index to return. Range parameter is range starts from 0
optional.
Omitting range parameter returns all records up to a maximum of
either 50 or 100 records per response.
The default maximum number of records depend on the service
type.
song
station
genre
artist
album
container
Note: A "yes" for the "container" field as well as the "playable" field implies that the container supports adding all media items to the play
queue. Adding all media items of the container to the play queue is performed through "Add containers to queue"command.
Note: Following response provides examples of the various media types. The actual response will depend on the source browsed and the
hierarchy supported by that source.
Response:
"heos": {
"command": "browse/browse",
"result": "success",
"message":
"sid='source_id&cid='container_id'&range='start,end'&returned=items_in_current_response&count=total_items_available"
},
"payload": [
{
"container": "yes",
"playable": "no",
"type": "artist",
"name": "'artist name'",
"image_url": "'artist image url'",
"cid": "container id'",
"mid": "media id"
},
{
"container": "yes",
"playable": "yes",
"type": "album",
"name": "'album name'",
"image_url": "'album image url'",
"artist": "'artist name'",
"cid": "'container id'",
"mid": "'media id'"
},
{
"container": "no",
"playable": "yes",
"type": "song",
"name": "'song name'",
"image_url": "'album image url'",
"artist": "'artist name'",
"album": "'album name'",
"mid": "'media id'"
},
{
"container": "yes",
"playable": "no",
"type": "container",
"name": "'container name'",
"image_url": "'container image url'",
"cid": "'container id'",
"mid": "'media id'"
},
{
"container": "no",
"playable": "yes",
"type": "station",
"name": "'station name'",
"image_url": "'station url'",
"mid": "'media id'"
}
],
"options": [
{
"browse": [
{
"id": 4,
"name": "Add Playlist to Library"
}
]
}
]
}
Example: heos://browse/browse?sid=2&cid=TopAlbums&range=0,100
Supported Sources: Local Media Servers, Playlists, History, Aux-In, TuneIn, Pandora, Rhapsody, Deezer, SiriusXM, iHeartRadio,
Napster, Tidal, SoundCloud, Amazon Music, Juke
Command: heos://browse/get_search_criteria?sid=source_id
cid Prefix to search string used while adding entire search results to play queue Currently supported prefix:
Example command to play all tracked, searched with string 'earth': Note: Can be extended, avoid hard
code
heos://browse/add_to_queue?pid=<playerid>&sid=2&cid=SEARCHED_TRACKS-eart
h&aid=1
Note: the following response provides examples of the various search criteria types. The actual response will depend on the source and
the search types supported by that source.
Response:
{
"heos": {
"command": "browse/ get_search_criteria ",
"result": "success",
"message": "sid='source_id "
},
"payload": [
{
"name": "Artist",
"scid": "'search_criteria_id'",
"wildcard": "yes_or_no",
},
{
"name": "Album",
"scid": "'search_criteria_id'",
"wildcard": "yes_or_no",
},
{
"name": "Track",
"scid": "'search_criteria_id'",
"wildcard": "yes_or_no",
"playable": "yes_or_no",
"cid": "Prefix to search string",
},
{
"name": "Station",
"scid": "'search_criteria_id'",
"wildcard": "yes_or_no",
}
]
}
Example: heos://browse/get_search_criteria?sid=3
Supported Sources: Local Media Servers, TuneIn, Rhapsody, Deezer, SiriusXM, Napster, Tidal, SoundCloud, Juke
4.4.6 Search
search String for search limited to 128 unicode characters and may contain '*' for wildcard if supported by N/A
search criteria id
range Range is start and end record index to return. Range parameter is optional. range starts from 0
Omitting range parameter returns all records up to a maximum of 50/100 records per response.
The default maximum number of records depend on the service type.
Response:
Note: the following response provides examples of the various media types. The actual response will depend on the source searched and
the results returned for the search string.
{
"heos": {
"command": "browse/search",
"result": "success",
"message": "sid='source_id&scid='search_criteria_id'&range='start#,
end#'&returned=items_in_current_response&count='total_items_available"
},
"payload": [
{
"container": "yes",
"playable": "no",
"type": "artist",
"name": "'artist name'",
"image_url": "'artist image url'",
"cid": "container id'",
"mid": "media id"
},
{
"container": "yes",
"playable": "yes",
"type": "album",
"name": "'album name'",
"image_url": "'album image url'",
"artist": "'artist name'",
"cid": "'container id'",
"mid": "'media id'"
},
{
"container": "no",
"playable": "yes",
"type": "song",
"name": "'song name'",
"image_url": "'album image url'",
"artist": "'artist name'",
"album": "'album name'",
"mid": "'media id'"
},
{
"container": "yes",
"playable": "no",
"type": "container",
"name": "'container name'",
"image_url": "'container image url'",
"cid": "'container id'",
"mid": "'media id'"
},
{
"container": "no",
"playable": "yes",
"type": "station",
"name": "'station name'",
"image_url": "'station url'",
"mid": "'media id'"
}
],
"options": [
{
"browse": [
{
"id": 2,
"name": "Add Album to Library"
}
]
}
]
}
Example: heos://browse/search?sid=2&search="U2"&scid=1
Supported Sources: Local Media Servers, TuneIn, Rhapsody, Deezer, Napster, Tidal, SoundCloud, Juke
Command: heos://browse/play_stream?pid=player_id&sid=source_id&cid=container_id&mid=media_id&name=station_name
cid Container id that is used to browse current container. Ignore if container id doesn't exists as in case of playing N/A
station obtained through 'Search' command.
Note: The mid for this command must be a 'station' media type.
Response:
Note: this command will cause a Now Playing Change Event to occur if a new stream is played.
{
"heos": {
"command": " browse/play_stream ",
"result": "success",
"message": "pid='player_id'&sid='source_id&cid='container_id'&mid='media_id'&name='station_name'"
}
}
Example: heos://browse/play_stream?pid=1&sid=2&cid='CID-55'&mid=15376&name=Q95
Supported Sources: History, Favorites, TuneIn, Pandora, Rhapsody, Deezer, SiriusXM, iHeartRadio, Napster, SoundCloud, Amazon Music,
Juke
Command: heos://browse/play_preset?pid=player_id&preset=preset_position
Response:
Note: this command will cause a Now Playing Change Event to occur if a new stream is played.
{
"heos": {
"command": " browse/play_preset",
"result": "success",
"message": "pid='player_id'&preset='preset_number'"
}
}
Example: heos://browse/play_preset?pid=1&preset=2
heos://browse/play_input?pid=player_id&input=input_name
heos://browse/play_input?pid=destination_player_id&spid=source_player_id&input=input_name
heos://browse/play_stream?pid=player_id&sid=source_id&mid=media id
Note: Validity of Inputs depends on the type of source HEOS device "inputs/aux_in_2"
"inputs/aux_in_3"
"inputs/aux_in_4"
"inputs/aux1"
"inputs/aux2"
"inputs/aux3"
"inputs/aux4"
"inputs/aux5"
"inputs/aux6"
"inputs/aux7"
"inputs/line_in_1"
"inputs/line_in_2"
"inputs/line_in_3"
"inputs/line_in_4"
"inputs/coax_in_1"
"inputs/coax_in_2"
"inputs/optical_in_1"
"inputs/optical_in_2"
"inputs/hdmi_in_1"
"inputs/hdmi_arc_1"
"inputs/cable_sat"
"inputs/dvd"
"inputs/bluray"
"inputs/game"
"inputs/mediaplayer"
"inputs/cd"
"inputs/tuner"
"inputs/hdradio"
"inputs/tvaudio"
"inputs/phono"
Distribution External Input to other players is limited to one player or one group .
You can not play External Input that has been selected already.
Also, When it playing external input on itself, can not be distributed to other players.
Examples:
heos://browse/play_input?pid=1234&input=inputs/aux_in_1
heos://browse/play_input?pid=1234&spid=9876&input=inputs/aux_in_1
heos://browse/play_stream?pid=1&sid=1441320818&mid=inputs/aux_in_1
Response:
Note: The attribute value pair ?"url=url_path" should be the last attribute value pair in the play_stream command.
This is required to handle url_path with special characters and command delimiters.
This command will cause a Now Playing Change Event to occur if url is played.
{
"heos": {
"command": " browse/play_stream ",
"result": "success",
"message": "pid='palyer_id'&url='path to stream"
}
}
Example: heos://browse/play_stream?pid=1&url=http://10.110.25.159:49152/web/138.mp3
Command: heos://browse/add_to_queue?pid=player_id&sid=source_id&cid=container_id&aid=add_criteria
Note: The cid for this command must be a 'playable' container type.
Response:
Note: this command will cause a Now Playing Change Event to occur if a new song is played.
{
"heos": {
"command": " browse/add_to_queue",
"result": "success",
"message": "pid='player_id'&sid='source_id'&cid='container_id'&aid='add_criteria'"
}
}
Example: heos://browse/add_to_queue?pid=1&sid=5&cid=Artist/All&aid=2
Supported Sources: Playable containers from Local Media Servers, Playlists, History, Rhapsody, Deezer, iHeartRadio,
Napster, Tidal, SoundCloud, Juke. Also searched tracks as described in get_search_criteria command.
Command: heos://browse/add_to_queue?pid=player_id&sid=source_id&cid=container_id&mid=media_id&aid=add-criteria
Note: The mid for this command must be a 'track' media type.
Response:
Note: this command will cause a Now Playing Change Event to occur if a new song is played.
{
"heos": {
"command": " browse/add_to_queue",
"result": "success",
"message": "pid='player_id'&sid='source_id'&cid='container_id'&mid='media_id'&aid='add_criteria'"
}
}
Example: heos://browse/add_to_queue?pid=1&sid=8&cid=Artists/All&mid=9&aid=1
Supported Sources: Local Media Servers, Playlists, History, Rhapsody Tracks, Deezer Tracks, iHeartRadio Tracks,
Napster, Tidal, SoundCloud, Amazon Music, Juke
sid Source id returned by 'get_music_sources' command; select HEOS source to get HEOS playlists. N/A
name String for new playlist name limited to 128 unicode characters N/A
Response:
{
"heos": {
"command": "browse/rename_playlist ",
"result": "success",
"message": "sid='source_id'&cid='contaiiner_id'&name='playlist_name'"
}
}
sid Source id returned by 'get_music_sources' command; select HEOS source to get HEOS playlists. N/A
Response:
Note: The HEOS History has two containers: one for songs and another for stations. The following response example is for the songs
container. The station container returns the list of stations.
{
"heos": {
"command": "browse/delete_playlist ",
"result": "success",
"message": "sid='source_id'&cid='contaiiner_id'
}
}
Example: heos://browse/delete_playlist?sid=11&cid=234
Retrieve image url associated with a given album id. This command facilitates controllers to retrieve and update their UI with cover art, if
image_url in browse/search/get_queue/get_now_playing_media command response is blank.
Command: heos://browse/retrieve_metadata?sid=source_id&cid=album_id
sid Source id returned by 'get_music_sources' command; select HEOS source Currently supported media sources are
to get HEOS playlists. Rhapsody/Napster
Response:
{
"heos": {
"command": "browse/retrieve_metadata",
"result": "success",
"message": "sid=2&cid=album_id&returned=items_in_current_response&count=total_items_available"
},
"payload": [
{
"album_id": "album_id",
"images": [
{
"image_url": "URL to image file",
"width": current image width
},
.
{
"image_url": " URL to image file",
"width": current image width
}
]
}
]
}
Example: heos://browse/retrieve_metadata?sid=2&cid=Alb.184664171
Command: heos://browse/get_service_options?sid=source_id
Attribute Description Enumeration
id Options available on now playing screen Following options are currently supported for 'Get Service options for now
(options) playing screen':
11 - Thumbs Up
12 - Thumbs Down
Note: This command returns service options that are only available on 'now playing' screen. Please refer to 'Browse Source' and 'Browse
Source Containers' for service options available on various browse levels.
Note: the following response provides examples of the various service options. The actual response will depend on the service options
available for a given source type.
Response:
"heos": {
"command": "browse/get_service_options",
"result": "success",
"message": ""
},
"payload": [
{
"play": [
{
"id": 11,
"name": "Thumbs Up"
},
{
"id": 12,
"name": "Thumbs Down"
}
]
}
]
}
Example: heos://browse/get_service_options?sid=5
Note: Range
parameter is
optional to
limit results
name -
station name
obtained
through
'browse'
command
Response:
{
"heos": {
"command": " browse/set_service_option",
"result": "success",
"message": "sid=source_id&option=option_id&mid=media_id"
}
}
Example: heos://browse/set_service_option?sid=2&option=1&mid=Tra.174684187
{
"heos": {
"command": " event/player_now_playing_progress",
"message": "pid=player_id&cur_pos=position_ms&duration=duration_ms"
}
}
{
"heos": {
"command": " event/player_playback_error",
"message": "pid=player_id&error=Could Not Download"
}
}
Note: error string represents error type. Controller can directly display the error string to the user.
{
"heos": {
"command": "event/repeat_mode_changed",
"message": "pid=’player_id’&repeat='on_all_or_on_one_or_off'”
}
}
{
"heos": {
"command": "event/shuffle_mode_changed",
"message": "pid=’player_id’&shuffle='on_or_off'”
}
}
Too many commands in message queue to process 16 Too many commands in queue