The FSAPI is a simple HTTP-API.
You send a HTTP GET request an in return you will get XML.
Nodes are the hierarchical path to Object you want to receive or modify.
Example:
If you want to toggle mute or check if the device is muted you can access the node:
netRemote.sys.audio.mute
Operations determine how you interact with the node.
Sets the value of an node.
Gets the value of an node.
Get the next "page" of a list stored in the node.
Login with pin an get a Session-ID in return.
Logout and destroy the Session-ID.
This is a special Command: The device does not close the HTTP-Request.
With this command you can use the connection like a normal socket, where the device sends you updates about changed nodes.
This Command is only available if a Session-ID is used to authenticate.
It gives you a FS_TIMEOUT error if nothing has changed.
Examples:
GET:
/fsapi/GET/netRemote.sys.audio.mute?pin=1337&sid=1932538906
SET
/fsapi/SET/netRemote.sys.audio.mute?pin=1337&sid=1932538906&value=1
LIST_GET_NEXT
/fsapi/LIST_GET_NEXT/netRemote.nav.presets/-1?pin=1337&maxItems=10
The first indicator for the success of your request is the HTTP-Statuscode, it should be 200 if everything is ok.
You request is valid:
The path to the FSAPI is right and you provided the right PIN.
You get an 404 Status Code if your Session-ID is invalid or you requested a non-existing path.
You get an 403 Statuscode if you send an invalid PIN.
If your request is valid (HTTP Status 200 OK) the device returns allways an XML-set like this:
<fsapiResponse>
<status>STATUS</status>
VALUE
</fsapiResponse>
Where VALUE is the requested value and STATUS should be FS_OK if everything is fine with the request.
Everything went well: The command has been executed.
The new value is valid and within the range of the validation rules.
The command hasn't been executed, because your value does not match the validation rules.
You tried to set the value of an read only node.
You tried to SET a node of an operation Mode which is not active.
You tried to access an not existing node.
Your Request took to long.
There is no list-entry left.
The device does only support one session at a time. If you create a new session the old session will be purged.
If you send only the Session-ID your new requests will fail, if a new session is created by another user.
The Session-ID is not only valid for the current command and can be reused for new commands.
If you send the pin in every request you can have multiple users, which can cause conflicts between their commands.
To keep it simple I will only mention the VALUE field of the response.
- Nav - menu-navigation
- Play - settings for current playback
- System - system settings
- Platform - platform updates
- Misc - debug and log settings
- Test - iperf console
- Spotify* - only for devices with spotify-support
- Airplay* - only for devices with airplay-support
- Multiroom* - only for devices with multiroom-support
All topics except the menu are sorted in alphabetical order.
❗ The following comands work only on devices with airplay-support ❗
Method: ??
Todo
Method: ??
Todo
❗ The following comands work only on devices with mutiroom-support ❗
Method: ??
Todo
Method: ??
Todo
Method: ??
Todo
Method: LIST_GET_NEXT
Shows other Mutiroom devices in the Network
/fsapi/LIST_GET_NEXT/netRemote.multiroom.device.listAll/-1?pin=1337&maxItems=10
<item key="0">
<field name="udn"><c8_array>46C19E4A-472B-11E1-9F67-002261ED0770</c8_array></field>
<field name="friendlyname"><c8_array>DeviceName</c8_array></field>
<field name="ipaddress"><c8_array>192.168.xxx.xxx</c8_array></field>
<field name="audiosyncversion"><c8_array>3</c8_array></field>
<field name="groupid"><c8_array>0AD57A8A-49A8-11E6-XXXX-002261EDXXXX</c8_array></field>
<field name="groupname"><c8_array>MultirooGroupName</c8_array></field>
<field name="grouprole"><u8>2</u8></field>
<field name="clientnumber"><u8>254</u8></field>
</item>
<listend/>
TODO
Method: ??
???
TODO
Method: GET
???
/fsapi/GET/netRemote.multiroom.device.serverStatus?pin=1337
<value><u8>1</u8></value>
TODO
Method: GET
???
/fsapi/GET/netRemote.multiroom.device.clientIndex?pin=1337
<value><u8>0</u8></value>
TODO
Method: GET
???
/fsapi/GET/netRemote.multiroom.device.transportOptimisation?pin=1337
<status>FS_NODE_DOES_NOT_EXIST</status>
TODO
Method: ??
???
TODO
Method: SET
Send the udn of the client as value that you get with netRemote.multiroom.device.listAll
TODO
Method: GET
???
/fsapi/GET/netRemote.multiroom.group.streamable?pin=1337
<value><u8>1</u8></value>
Method: SET
Create new group
/fsapi/SET/netRemote.multiroom.group.create?pin=1337&value=GroupName
<status>FS_NODE_DOES_NOT_EXIST</status>
Method: SET
Add device to group
/fsapi/SET/netRemote.multiroom.group.addClient?pin=1337&value=[Device-udn]
<status>FS_NODE_DOES_NOT_EXIST</status>
TODO
Method: ??
???
Method: SET
Delete Multiroom group
/fsapi/SET/netRemote.multiroom.group.destroy?pin=1337&value=1
<status>FS_NODE_DOES_NOT_EXIST</status>
Method: GET
Get Mutiroom Group Name
/fsapi/GET/netRemote.multiroom.group.name?pin=1337
<value><c8_array>1234</c8_array></value>
TODO
Method: GET
???
/fsapi/GET/netRemote.multiroom.group.id?pin=1337
<value><c8_array>501867A4-42A7-11E6-XXXX-002261E7XXXX</c8_array></value>
Method: GET, SET
0 = No Group, (1 = Client), 2 = Server
/fsapi/GET/netRemote.multiroom.group.state?pin=1337
<value><u8>2</u8></value>
Method: GET, SET
Set/Get Volume for device No X (0,1,2,...)
/fsapi/GET/netRemote.multiroom.client.volume0?pin=1337&value=12
<value><u8>20</u8></value>
Method: GET, SET
Set/Get MuteState for device No X (0,1,2,...)
/fsapi/GET/netRemote.multiroom.client.mute?pin=1337&value=1
<value><u8>0</u8></value>
Method: GET, SET
Set/Get Volume for all devices
/fsapi/GET/netRemote.multiroom.group.masterVolume?pin=1337&value=12
<value><u8>12</u8></value>
TODO
Method: ??
???
TODO
Method: ??
???
Every change of the system mode, will disable the nav state to reset the current menu-position. It has to be activated with nav.state
TODO
Method: ??
???
TODO
Starts Scan for DAB Channels
Method: GET
Returns ???
/fsapi/GET/netRemote.nav.action.dabScan?pin=1337&sid=1983995656
<value><u8>0</u8></value>
Selects the current menu entry (see netRemote.nav.list)
For returning to the upper menu level just set it to -1.
This function works only with folders (type=0), see netRemote.nav.list.
Method: SET
/fsapi/SET/netRemote.nav.action.navigate?pin=1337&value=0
Selects an Menu Item (see netRemove.nav.list)
This function works only on files (type > 0), see netRemote.nav.list.
Method: SET
fsapi/SET/netRemote.nav.action.selectItem?pin=1337&value=7
Selects a favorite Radio Stations (see netRemote.nav.presets)
Method: GET/SET
/fsapi/SET/netRemote.nav.action.selectPreset?pin=1337&value=0
TODO
Method: GET
Sets / Returns ???
/fsapi/GET/netRemote.nav.caps?pin=1337&sid=779967663
<value><u32>3</u32></value>
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
Get the menu for the current mode
To prevent overhead you could get the number of items by netRemote.nav.numItems
The -1 Parameter is the Start-Value, you could provide 4 to get all items with an index greater 4.
The following field types are known:
- folder
- mp3
- mp4
Method: LIST_GET_NEXT
fsapi/LIST_GET_NEXT/netRemote.nav.list/-1?pin=1337&maxItems=10
<itemkey="0">
<fieldname="name">
<c8_array>Meine Favoriten</c8_array>
</field>
<fieldname="type">
<u8>0</u8>
</field>
<field name="subtype">
<u8>0</u8>
</field>
</item>
<item key="1">
<field name="name">
<c8_array>Lokal Deutschland</c8_array>
</field>
<field name="type">
<u8>0</u8>
</field>
<fieldname="subtype">
<u8>0</u8>
</field>
</item>
Method: GET
Get the amount of entries for the current navigation-set.
/fsapi/GET/netRemote.nav.numItems?pin=1337&sid=973104948
<value><s32>21</s32></value>
Method: LIST_GET_NEXT
Lists all favorite Radio Stations for the current mode
/fsapi/LIST_GET_NEXT/netRemote.nav.presets/-1?pin=1337&maxItems=10
<item key="0">
<field name="name">
<c8_array>1LIVE</c8_array>
</field>
<item key="1">
<field name="name">
<c8_array>Deutschlandfunk 91.3</c8_array>
</field>
Search in the current navigation (see netRemote.nav.list)
/fsapi/SET/netRemote.nav.searchTerm?pin=1337&value=testsuche
Enables the navigation in the menu (see nav.list)
Every change of the system mode, will disable the nav state to reset the current menu-position.
Method: GET, SET
Sets / Returns the status of the navigation.
/fsapi/GET/netRemote.nav.state?pin=1337&sid=1974440588
<value><u8>1</u8></value>
While the device prepares the menu this node is set to 0, if the menu is ready it is set to 1.
Busy menus are caused by mode-change or nav.action.navigate
Method: GET
Returns the navigation status
/fsapi/GET/netRemote.nav.status?pin=1337
<value><u8>0</u8></value>
Method: GET
Returns the current navigation menu depth
/fsapi/GET/netRemote.nav.depth?pin=1337
<value><u8>0</u8></value>
TODO
Method: ??
???
TODO
Method: ??
???
Method: SET
Add the current radio stations to the favorites menu
/fsapi/SET/netRemote.play.addPreset?pin=1337&value=5
TODO
Method: ??
???
TODO
Method: GET
Returns ???
/fsapi/GET/netRemote.play.caps?pin=1337&sid=1672745554
empty: <value><u32>0</u32></value>
1LIVE diGGi: <value><u32>2060</u32></value>
Method: GET, SET
Scope: Mediaplayer / Radio
Sets / Return the current play-controll mode
1=Play; 2=Pause; 3=Next (song/station); 4=Previous (song/station)
/fsapi/GET/netRemote.play.control?pin=1337&sid=1737628193
<value><u8>0</u8></value>
Method: GET
/fsapi/GET/netRemote.play.errorStr?pin=1337
<value><c8_array></c8_array></value>
TODO
Method: ??
???
Method: GET, SET
Sets / Returns the current frequency for fm (in herz)
/fsapi/GET/netRemote.play.frequency?pin=1337&sid=615989613
<value><u32>96700</u32></value>
96700 = 96,70 MHz
Method: GET
Returns the name of the album of the current song
/fsapi/GET/netRemote.play.info.album?pin=1337&sid=23681281
<value><c8_array></c8_array></value>
Method: GET
Returns the name of the artist of the current song
/fsapi/GET/netRemote.play.info.artist?pin=1337&sid=1303639071
<value><c8_array></c8_array></value>
Method: GET
Returns the duration for the track in milliseconds
/fsapi/GET/netRemote.play.info.duration?pin=1337&sid=1431798833
<value><u32>0</u32></value>
Method: GET
Returns the uri of an image representing the current song / station
/fsapi/GET/netRemote.play.info.graphicUri?pin=1337&sid=1566925260
empty: <value><c8_array></c8_array></value>
1LIVE Online: <value><c8_array>http://aldi.wifiradiofrontier.com/setupapp/setup1/logo/logo-531.png</c8_array></value>
Method: GET
Returns the first line of the display
/fsapi/GET/netRemote.play.info.name?pin=1337&sid=548290233
empty: <value><c8_array></c8_array></value>
1LIVE diGGi: <value><c8_array>1LIVE diGGi </c8_array></value>
Method: GET
Returns the second line of the display
/fsapi/GET/netRemote.play.info.text?pin=1337&sid=429343323
empty: <value><c8_array></c8_array></value>
1LIVE diGGi: <value><c8_array>Infos und Playlist auch im Netz: 1livediggi.de</c8_array></value>
Method: GET, SET
Sets / Returns the current position in the track in milliseconds
Keep in mind to get the max position by netRemote.play.info.duration.
/fsapi/GET/netRemote.play.position?pin=1337&sid=984827477
<value><u32>0</u32></value>
Method: GET, SET
Sets / Returns the current play-rate multiplier
The value determines the speed of the playback. It can be in the range of -127 to 127 where the negative part plays the current track backwards.
/fsapi/GET/netRemote.play.rate?pin=1337&sid=635775977
<value><s8>0</s8></value>
Method: GET, SET
Scope: Music Player
Sets / Returns whether or not repeat is enabled or not
/fsapi/GET/netRemote.play.repeat?pin=1337&sid=506326863
<value><u8>0</u8></value>
Method: GET
Returns whether or not scrobble is enabled or not
/fsapi/GET/netRemote.play.scrobble?pin=1337&sid=1961792010
<value><u8>0</u8></value>
Method: GET
Returns DAB Ensemble Identifier (decimal notation) Note: commonly used in Hex notation. In this example that would be "C1CE" i.e. the UK's "SDL National" multiplex
/fsapi/GET/netRemote.play.serviceIds.dabEnsembleId?pin=1337
<value><u16>49614</u16></value>
Method: GET
Returns the DAB Service Component Identifier (decimal notation) Note: Nearly always 0 for audio services - Secondary Component services will have a different value - e.g. when tuned to "<<BBC R5LiveSportX"
/fsapi/GET/netRemote.play.serviceIds.dabScids?pin=1337
<value><u8>0</u8></value>
Method: GET
Returns DAB Service Identifier (decimal notation) Note: commonly used in Hex notation. In this example that would be "CED7" i.e. the UK's "Magic Chilled" service
/fsapi/GET/netRemote.play.serviceIds.dabServiceId?pin=1337
<value><u32>52951</u32></value>
Method: GET
Returns Extended Country Code (decimal notation) as defined in ETSI TS 101 756 Note: commonly used in Hex notation. Defined in ETSI TS 101 756, used in conjunction with the first character (in Hex notation) of the dabServiceId to identify the country. e.g. dabServiceId 52951 (CED7); ecc 225 (E1); Global Country Code of CE1 = United Kingdom dabServiceId 57233 (DF91); ecc 224 (E0); gives a Global Country Code of DE0 = Germany
/fsapi/GET/netRemote.play.serviceIds.ecc?pin=1337
<value><u8>225</u8></value>
TODO : Confirm if this works on other radios
Method: GET
Returns RDS Programme Identification code (or rather should, the Roberts Stream 93i Returns 0 for all services)
/fsapi/GET/netRemote.play.serviceIds.fmRdsPi?pin=1337
<value><u16>0</u16></value>
Method: GET, SET
Scope: Music-Player
Sets / Returns whether or not shuffle is enabled or not (1/0)
/fsapi/GET/netRemote.play.shuffle?pin=1337&sid=1843354907
<value><u8>0</u8></value>
TODO
Method: GET, SET
Is part of the new api version
/fsapi/GET/netRemote.play.shuffleStatus?pin=1337&sid=1843354907
FS_NODE_DOES_NOT_EXIST
Method: GET
Returns the signal strenght of the current medium
/fsapi/GET/netRemote.play.signalStrength?pin=1337&sid=1226842809
<value><u8>0</u8></value>
Method: GET
Returns status of the player
1=buffering/loading, 2=playing, 3=paused
/fsapi/GET/netRemote.play.status?pin=1337&sid=973104948
<value><u8>0</u8></value>
❗ The following comands work only on devices with spotify-support ❗
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
Method: GET, SET
Sets / Returns the first value for costum eq-settings (Bass)
Range: -7 to 7
/fsapi/GET/netRemote.sys.audio.eqCustom.param0?pin=1337&sid=1789657498
<value><s16>1</s16></value>
Method: GET, SET
Sets / Returns the second value for costum eq-settings (Treble)
Range: -7 to 7
/fsapi/GET/netRemote.sys.audio.eqCustom.param1?pin=1337&sid=1636927329
<value><s16>1</s16></value>
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
Method: GET, SET
Sets / Returns whether or not loudness is activated
This function is only available if costum eq is active
/fsapi/GET/netRemote.sys.audio.eqLoudness?pin=1337&sid=1033306501
<value><u8>0</u8></value>
Method: GET, SET
Sets / Returns the number of the selected eq-presets
see: netRemote.sys.caps.eqPresets for valid presets.
/fsapi/GET/netRemote.sys.audio.eqPreset?pin=1337&sid=643480027
<value><u8>5</u8></value>
TODO
Method: ??
???
Method: GET, SET
Sets / Returns whether or not device is muted
/fsapi/GET/netRemote.sys.audio.mute?pin=1337&sid=1932538906
<value><u8>0</u8></value>
Method: GET, SET
Sets / Returns the volume of the device (Range: 1-20)
/fsapi/GET/netRemote.sys.audio.volume?pin=1337&sid=218069529
<value><u8>4</u8></value>
Method: GET
Fetch the list of available time sources
/fsapi/LIST_GET_NEXT/netRemote.sys.caps.clockSourceList/-1?pin=1234&maxItems=65536
<fsapiResponse>
<status>FS_OK</status>
<item key="0">
<field name="source"><c8_array>DAB</c8_array></field>
</item>
<item key="1">
<field name="source"><c8_array>FM</c8_array></field>
</item>
<item key="2">
<field name="source"><c8_array>NETWORK</c8_array></field>
</item>
<item key="3">
<field name="source"><c8_array>NO_UPDATE</c8_array></field>
</item>
<listend/>
</fsapiResponse>
TODO
Method: LIST_GET_NEXT
Lists available dab-frequencies
/fsapi/LIST_GET_NEXT/netRemote.sys.caps.dabFreqList/-1?pin=1337&maxItems=65536
<item key="0">
<fieldname="freq">
<u32>174928</u32>
</field>
<fieldname="label">
<c8_array>5A</c8_array>
</field>
</item>
<item key="1">
<fieldname="freq">
<u32>176640</u32>
</field>
<fieldname="label">
<c8_array>5B</c8_array>
</field>
</item>
Method: LIST_GET_NEXT
Lists setted modes for the eq
/fsapi/LIST_GET_NEXT/netRemote.sys.caps.eqBands/-1?pin=1337&sid=1082454528&maxItems=100
<item key="0">
<field name="label"><c8_array>Bass</c8_array></field>
<field name="min"><s16>-4</s16></field>
<field name="max"><s16>4</s16></field>
</item>
<item key="1">
<field name="label"><c8_array>Höhen</c8_array></field>
<field name="min"><s16>-4</s16></field>
<field name="max"><s16>4</s16></field>
</item>
<listend/>
Method: LIST_GET_NEXT
Lists available eq-presets
/fsapi/LIST_GET_NEXT/netRemote.sys.caps.eqPresets/-1?pin=1337&sid=2058329265&maxItems=100
<item key="0">
<field name="label"><c8_array>Benutzer</c8_array></field>
</item>
<item key="1">
<field name="label"><c8_array>Normal</c8_array></field>
[...]
<listend/>
TODO
Method: ??
???
Method: GET
Returns the lowest available fm-frequency
/fsapi/GET/netRemote.sys.caps.fmFreqRange.lower?pin=1337&sid=1005285685
<value><u32>87500</u32></value>
Method: GET
Returns the size of the steps for increasing / decreasing the frequency
/fsapi/GET/netRemote.sys.caps.fmFreqRange.stepSize?pin=1337&sid=1369641108
<value><u32>50</u32></value>
Method: GET
Returns the highest available fm-frequency
/fsapi/GET/netRemote.sys.caps.fmFreqRange.upper?pin=1337&sid=1771149341
<value><u32>108000</u32></value>
TODO
Method: GET
???
/fsapi/LIST_GET_NEXT/netRemote.sys.caps.utcSettingsList/-1?pin=1234&maxItems=30
<fsapiResponse>
<status>FS_OK</status>
<item key="0">
<field name="time"><s32>-43200</s32></field>
<field name="region"><c8_array>Intern. Datumsgrenze West</c8_array></field>
</item>
<item key="1">
<field name="time"><s32>-41400</s32></field>
<field name="region"><c8_array/></field>
</item>
<item key="2">
<field name="time"><s32>-39600</s32></field>
<field name="region"><c8_array>Midway Insel, Samoa</c8_array></field>
</item>
<item key="3">
<field name="time"><s32>-37800</s32></field>
<field name="region"><c8_array/></field>
</item>
<item key="4">
<field name="time"><s32>-36000</s32></field>
<field name="region"><c8_array>Hawaii</c8_array></field>
</item>
...
TODO
Method: ??
???
Method: LIST_GET_NEXT
Lists valid operation modes
/fsapi/LIST_GET_NEXT/netRemote.sys.caps.validModes/-1?pin=1337&sid=300029608&maxItems=100
<fsapiResponse>
<status>FS_OK</status>
<item key="0">
<field name="id"><c8_array>IR</c8_array></field>
<field name="selectable"><u8>1</u8></field>
<field name="label"><c8_array>Internet Radio</c8_array></field>
<field name="streamable"><u8>1</u8></field>
<field name="modetype"><u8>0</u8></field>
</item>
<item key="1">
<field name="id"><c8_array>Spotify</c8_array></field>
<field name="selectable"><u8>1</u8></field>
<field name="label"><c8_array>Spotify Connect</c8_array></field>
<field name="streamable"><u8>1</u8></field>
<field name="modetype"><u8>0</u8></field>
</item>
<item key="2">
<field name="id"><c8_array>DMR</c8_array></field>
<field name="selectable"><u8>0</u8></field>
<field name="label"><c8_array>DMR</c8_array></field>
<field name="streamable"><u8>1</u8></field>
<field name="modetype"><u8>0</u8></field>
</item>
<item key="3">
<field name="id"><c8_array>MP</c8_array></field>
<field name="selectable"><u8>1</u8></field>
<field name="label"><c8_array>Musik abspielen</c8_array></field>
<field name="streamable"><u8>1</u8></field>
<field name="modetype"><u8>1</u8></field>
</item>
<item key="4">
<field name="id"><c8_array>DAB</c8_array></field>
<field name="selectable"><u8>1</u8></field>
<field name="label"><c8_array>DAB</c8_array></field>
<field name="streamable"><u8>1</u8></field>
<field name="modetype"><u8>0</u8></field>
</item>
<item key="5">
<field name="id"><c8_array>FM</c8_array></field>
<field name="selectable"><u8>1</u8></field>
<field name="label"><c8_array>FM</c8_array></field>
<field name="streamable"><u8>1</u8></field>
<field name="modetype"><u8>0</u8></field>
</item>
<item key="6">
<field name="id"><c8_array>AUXIN</c8_array></field>
<field name="selectable"><u8>1</u8></field>
<field name="label"><c8_array>AUX Eingang</c8_array></field>
<field name="streamable"><u8>1</u8></field>
<field name="modetype"><u8>1</u8></field>
</item>
<item key="7">
<field name="id"><c8_array>CD</c8_array></field>
<field name="selectable"><u8>1</u8></field>
<field name="label"><c8_array>CD</c8_array></field>
<field name="streamable"><u8>1</u8></field>
<field name="modetype"><u8>1</u8></field>
</item>
<item key="8">
<field name="id"><c8_array>BLUETOOTH</c8_array></field>
<field name="selectable"><u8>1</u8></field>
<field name="label"><c8_array>Bluetooth</c8_array></field>
<field name="streamable"><u8>1</u8></field>
<field name="modetype"><u8>1</u8></field>
</item>
<item key="9">
<field name="id"><c8_array>NETWORK</c8_array></field>
<field name="selectable"><u8>0</u8></field>
<field name="label"><c8_array/></field>
<field name="streamable"><u8>0</u8></field>
<field name="modetype"><u8>0</u8></field>
</item>
<listend/>
</fsapiResponse>
Method: GET
Returns the max volume level
/fsapi/GET/netRemote.sys.caps.volumeSteps?pin=1337&sid=896363579
<value><u8>21</u8></value>
TODO
Method: ??
???
Method: GET, SET
Fetch/set daylight saving setting
/fsapi/GET/netRemote.sys.clock.dst?pin=1234
<fsapiResponse>
<status>FS_OK</status>
<value><u8>0</u8></value>
</fsapiResponse>
Method: GET
Returns the local Date in XML-RPC date format ( 20150914 = 2015-09-14)
/fsapi/GET/netRemote.sys.clock.localDate?pin=1337&sid=1947840669
<value><c8_array>20150914</c8_array></value>
Method: GET
Returns the local time in XML-RPC date format ( 093327 = 09:33:27)
/fsapi/GET/netRemote.sys.clock.localTime?pin=1337&sid=1947840669
<value><c8_array>093327</c8_array></value>
Method: GET, SET
Set the clock to 12h or 24 hour mode
Values:
- 0: 12h
- 1: 24h
GET /fsapi/GET/netRemote.sys.clock.mode?pin=1234
<fsapiResponse>
<status>FS_OK</status>
<value><u8>1</u8></value>
</fsapiResponse>
Method: GET, SET
Fetch/set the time source (DAB, FM, Internet, manual).
Valid values can be fetched with netRemote.sys.caps.clockSourceList
.
/fsapi/GET/netRemote.sys.clock.source?pin=1234
<fsapiResponse>
<status>FS_OK</status>
<value><u8>1</u8></value>
</fsapiResponse>
Method: GET, SET
Get/set the offset of the local time compared to UTC.
Valid values can be fetched with netRemote.sys.caps.utcSettingsList
.
/fsapi/GET/netRemote.sys.clock.utcOffset?pin=1234
<fsapiResponse>
<status>FS_OK</status>
<value><s32>0</s32></value>
</fsapiResponse>
TODO
Method GET,SET
Is part of the new API Version.
/fsapi/SET/netRemote.sys.cfg.irAutoPlayFlag?pin=1337&value=0
<value><u8>0</u8></value>
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
Method: GET, SET
Sets/ Returns the Network-Name of the Device
/fsapi/GET/netRemote.sys.info.friendlyName?pin=1337&sid=1947840669
<value><c8_array>Radio</c8_array></value>
Method: GET
Returns unique? ID Radio-ID
/fsapi/GET/netRemote.sys.info.radioId?pin=1337&sid=1720678490
<value><c8_array>001122AABBCC</c8_array></value>
Method: SET
Change the PIN used to access the radio API.
fsapi/SET/netRemote.sys.info.radioPin?pin=1337&value=1337
Method: GET
Returns Image-Version String
/fsapi/GET/netRemote.sys.info.version?pin=1337&sid=1784185740
<value><c8_array>ir-mmi-FS2026-0500-0036_V2.5.15.EX51267-4RC2</c8_array></value>
Method: GET, SET
Get or Set the Name of the Device which is remote-controling the radio
/fsapi/GET/netRemote.sys.info.controllerName?pin=1337
<value><c8_array>Nexus 7</c8_array></value>
2 = search for updates
Method GET,SET
/fsapi/SET/netRemote.sys.isu.control?pin=1337&value=2
TODO
Method: ??
???
TODO
Method: ??
???
Shows the update process, default 0
while searching 1
after searching: 0
Method GET
/fsapi/GET/netRemote.sys.isu.state?pin=1337
<value><u8>1</u8></value>
TODO
Method: ??
???
TODO
Method: ??
???
Method: GET, SET
Retrieve/set the radio user interface language
/fsapi/GET/netRemote.sys.lang?pin=1337&sid=539517630
<value><u32>0</u32></value>
Method: GET, SET
Sets / Returns the current operation mode
see netRemote.sys.caps.validModes for valid operation modes
/fsapi/GET/netRemote.sys.mode?pin=1337&sid=300029608
<value><u32>4294967295</u32></value>
TODO
Method: ??
???
Method: GET
Returns the IP address for the connected network
/fsapi/GET/netRemote.sys.net.ipConfig.address?pin=1337&sid=1178490789
<value><u32>3232235576</u32></value>
Method: GET
Returns if DHCP is enabled for the connected network
/fsapi/GET/netRemote.sys.net.ipConfig.dhcp?pin=1337&sid=208317414
<value><u8>1</u8></value>
Method: GET
Returns the primary dns for the connected network
/fsapi/GET/netRemote.sys.net.ipConfig.dnsPrimary?pin=1337&sid=1796481137
<value><u32>3232235521</u32></value>
Method: GET
Returns the secondary dns for the connected network
/fsapi/GET/netRemote.sys.net.ipConfig.dnsSecondary?pin=1337&sid=1171925458
<value><u32>0</u32></value>
Method: GET
Returns the default gateway for the connected network
/fsapi/GET/netRemote.sys.net.ipConfig.gateway?pin=1337&sid=1545150372
<value><u32>3232235521</u32></value>
Method: GET
Returns the subnet mask for the connected network
/fsapi/GET/netRemote.sys.net.ipConfig.subnetMask?pin=1337&sid=1852331719
<value><u32>4294967040</u32></value>
Method GET, SET
If set to 1 network connection is not disconnected in standby
/fsapi/SET/netRemote.sys.net.keepConnected?pin=1337&value=1
Method: GET
Returns the NIC Status of the Ethernet Device
/fsapi/GET/netRemote.sys.net.wired.interfaceEnable?pin=1337&sid=441427276
<value><u8>1</u8></value>
Method: GET
Returns the MAC Address of the Ethernet Device
/fsapi/GET/netRemote.sys.net.wired.macAddress?pin=1337&sid=636641042
<value><c8_array>00:11:22:33:44:FF</c8_array></value>
Method: GET
Returns the SSID of the connected WIFI network
/fsapi/GET/netRemote.sys.net.wlan.connectedSSID?pin=1337&sid=829201793
Example
Method: GET
Returns the NIC Status of the WIFI Device
/fsapi/GET/netRemote.sys.net.wlan.interfaceEnable?pin=1337&sid=1390762771
<value><u8>0</u8></value>
Method: GET
Returns the MAC Address of the WIFI Device
/fsapi/GET/netRemote.sys.net.wlan.macAddress?pin=1337&sid=32327402
<value><c8_array>00:11:22:33:44:FF</c8_array></value>
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
Method: GET
Returns the Signal Strenght of the connected WIFI network
/fsapi/GET/netRemote.sys.net.wlan.rssi?pin=1337&sid=1681224474
<value><u8>100</u8></value>
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: GET
Returns the ??? of the connected WIFI network
/fsapi/GET/netRemote.sys.net.wlan.setAuthType?pin=1337&sid=924278502
Example...
Method: GET
Returns the Encryption Type of the connected WIFI network
/fsapi/GET/netRemote.sys.net.wlan.setEncType?pin=1337&sid=1860534785
Example...
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
Method: GET, SET
Sets / Returns the current power state
If device returns from standby it will only auto-continue to play in radio-modes.
/fsapi/GET/netRemote.sys.power?pin=1337&sid=150145723
<value><u8>0</u8></value>
Method: GET, SET
Sets / Returns the Time till Sleep in seconds (0 = No Sleep) [works with Firmware V2.9.10 but not with V2.6.17]
/fsapi/GET/netRemote.sys.sleep?pin=1337
<value><u32>97</u32></value>
Method: GET
Fetch the public RSA key that is used to encrypt the Wifi password before sending it to the radio.
<fsapiResponse>
<status>FS_OK</status>
<value><c8_array>010001:CACDC44CC87DA7999B52C15F947E51DF393DD74F08FD91E054B65CADB354673209E4D340E9613AECE1870B8CC69423B75F7F66EAAB351F1992C599007928817F676052EAD3DF2C3A8E9916F7595581E317C103E5B4460EA1F955D6309ED9C4A404E67C1BF7FF38475E3EE8CBBBD90FBB2FAAFD068ABE25D156B7AE3529A748C7</c8_array></value>
</fsapiResponse>
Method: GET
Check the status of the RSA key generation.
- 0: Generating
- 1: Ready
<fsapiResponse>
<status>FS_OK</status>
<value><u8>1</u8></value>
</fsapiResponse>
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???
TODO
Method: ??
???