Maxx Control (also written MaxxControl) is the control surface built into every Innosonix amplifier: a browser web UI plus an open REST API on the device. Use it for one amplifier when you want local control with no desktop install, or when a media-control / home-automation system should talk to a single amp. That includes micro MAXX — same webpage and API as other MAXX models. For many amplifiers, rooms/groups, and offline projects, use Maxx Remote instead.
If an amplifier is linked and owned by Maxx Remote, treat Maxx Remote as the source of truth. Day-to-day edits in Maxx Control (UI or REST) on the same channels can create an Out of Sync state.
Access (brief)
Set a reachable IP (and hostname) with IDFM, or use the address shown on the device front panel.
Open the UI in a browser: http://<ip>/ (many networks also accept http://<hostname>.local/).
On-device REST documentation (full OpenAPI / Swagger): OVERVIEW page → REST API DOC (lower right), served as http://<ip>/…/doc/maxx_rest_api.html.
HTTP is on port 80. The API base path is /rest-api.
What this docs site covers
This section focuses on REST API usage for integrators and third-party systems, plus third-party plugins that wrap that API.
UI / operator manual
The full Maxx Control UI operator manual is published separately (device / product manuals on the Innosonix downloads page and related product pages). This site does not walk through every screen of the on-device UI.
Start here
REST API overview — auth, hierarchy, OPTIONS, where the full schema lives
REST API use cases — mute, volume, status, save, EQ, and more under Common use cases
Maxx Control REST API on each Innosonix amplifier: auth, hierarchy, OPTIONS, AES67 / SDP subscribe, and where the full OpenAPI lives.
Every amplifier exposes a hierarchical JSON REST API used by Maxx Control itself and by third-party systems. Prefer this API for single-device integration. For project-level multi-amp control, use the Maxx Remote HTTP API instead.
Base URL and transport
Item
Value
Scheme / port
http:// on port 80
Base path
/rest-api
Example
http://${IP}/rest-api/settings/channel/1/dsp/mute
Methods you will use most: GET (read), PUT (write / partial update), OPTIONS (allowed ranges and constraints), plus POST / DELETE on a few resources (for example EQ bands).
Authentication
Write operations that change settings require an API key in the HTTP header:
Header
Default value
token
f4005bf8507999192162d989d5a60823
Defined in OpenAPI as ApiKeyAuth (token in header). GET and most OPTIONS calls do not require the token. Most PUT (and many DELETE) calls do — check the on-device OpenAPI for each path; a few DELETE endpoints are unauthenticated in the schema.
The tree is organized under /settings (configuration), /status (live state), /info, /preset, and helpers such as /speakerpreset. Channel resources nest DSP blocks (volume, mute, EQ, FIR, limiters, …); device resources cover master mute/volume, Dante, network, and more.
You can:
PUT a deep leaf, e.g. …/settings/channel/1/dsp/mute
PUT a parent with a partial JSON object, e.g. …/settings/channel with an array of channel objects
PUT…/settings with a larger tree when you need a wide update in one call
Partial updates are the normal pattern: send only the fields you want to change.
OPTIONS = parameter constraints
OPTIONS on a resource returns the allowed parameter space for that property (min / max / step / unit, enums, string lengths, and similar). Use it when building UIs or validating values before PUT — especially for volume, delay, limiters, and names.
Exact response fields vary by resource; see the on-device OpenAPI schemas (for example NumberOptions).
Full OpenAPI (source of truth)
This site documents common integrator patterns. The complete, firmware-matching schema is on the device:
Open Maxx Control → OVERVIEW
Click REST API DOC (lower right)
That opens the Swagger UI for maxx_rest_api.html (generated from the device OpenAPI). Always trust the on-device docs for path lists and schemas for your firmware version.
Third-party plugins (Q-SYS, Loxone, …) use this same API against one amplifier each — see Third-party plugins.
1.1 - Maxx Control REST: Set channel names
Maxx Control REST: get and set channel names for zones, UI labels, and home-automation integrations.
Use the Maxx Control REST API to get and set channel names so zones and automation UIs stay readable. Names can contain alphanumeric characters, spaces, and special characters.
Tip: Use descriptive channel names to make your system easier to manage, especially when integrating with home automation systems or control interfaces.
1.2 - Maxx Control REST: Control device mute and volume
Maxx Control REST: set device master mute, master volume, and startup mute for one Innosonix amplifier.
Use the Maxx Control REST API to set device-level master mute, master volume, and startup mute on one amplifier. These controls affect all channels globally — useful for emergency mute, master volume, and safe startup behavior.
Device Mute
The device mute acts as a master mute that affects all channels, regardless of individual channel mute settings.
Use Case: Enable startup mute to prevent audio from playing immediately after power restoration, giving you time to verify system status before audio begins.
Complete Device Control Example
Here’s an example that combines multiple device-level controls:
# Set device to start mutedcurl -X 'PUT' http://${IP}/rest-api/settings/device/dsp/startupmute \
-H 'Content-Type: application/json'\
-H 'token: f4005bf8507999192162d989d5a60823'\
-d '{"value": true}'# Set master volume to a safe levelcurl -X 'PUT' http://${IP}/rest-api/settings/device/dsp/volume \
-H 'Content-Type: application/json'\
-H 'token: f4005bf8507999192162d989d5a60823'\
-d '{"value": -10.0}'# Unmute device when readycurl -X 'PUT' http://${IP}/rest-api/settings/device/dsp/mute \
-H 'Content-Type: application/json'\
-H 'token: f4005bf8507999192162d989d5a60823'\
-d '{"value": false}'
1.3 - Device Information
Examples for retrieving device information
Getting Device Information
The device information endpoint provides details about your amplifier model, available channels, installed options, and hardware features.
Get Device Information
Retrieve all device information with a simple GET request:
model_name: The amplifier model (e.g., MA32D, MA32LP, MA24D2)
channel: Number of available channels (16-32)
options: Array of installed options:
IF1, IF2, IF3: Interface options
D1, D2, D3: Dante options
M1: Additional options
psu_fan: Whether PSU fan is installed
housing_fan: Whether housing fan is installed
This information is useful for:
Verifying device capabilities before making API calls
Determining available channel count
Checking installed hardware options
Building device-specific automation logic
Status snapshot
Read calls do not need the token.
GET /status returns the full status tree (channels, device, interfaces, save state, syslog summary).
curl "http://${IP}/rest-api/status"
Health-oriented errors
GET /status/error aggregates channel and device errors with severity and status_flags (error / warning / ok).
curl "http://${IP}/rest-api/status/error"
Narrower reads are available, for example GET /status/device or GET /status/channel/{channel_id} — see on-device OpenAPI.
1.4 - Maxx Control REST: Enable or disable EQ
Maxx Control REST: enable or disable channel EQ (eqenable) with single-channel and multi-channel PUT examples.
Use the Maxx Control REST API to enable or disable channel EQ (eqenable) — bypass the whole equalizer for testing or mode changes while keeping filter settings intact.
Enable EQ for Multiple Channels
Enable the equalizer for multiple channels in a single request:
Note: When EQ is disabled, all equalizer settings (filters, gains, etc.) are bypassed, but the settings themselves are preserved. Re-enabling EQ will restore the previous equalizer configuration.
1.5 - Mute Control
Examples for controlling channel and device mute states
Channel Mute Control
Mute control allows you to silence individual channels or the entire device.
Note: Device volume acts as a master volume control affecting all channels. Individual channel volumes are relative to this device volume setting.
1.7 - AES67 / SDP subscribe
Maxx Control REST: subscribe a channel input to an AES67 / SDP stream (source_id 25) by PUTting sdp_text or rtp_flow.
Subscribe an amplifier channel DSP patch to an external AES67 / SDP audio source. This is the same path Maxx Control’s channel-input UI uses when you paste SDP or pick a discovered AES67 flow.
When to use
Use this when a third-party sender (PipeWire, another AES67 device, etc.) publishes an SDP session and you want a MAXX channel to receive that multicast/unicast RTP stream as its input source AES67 STREAM (source_id25).
Do not confuse this with:
API concept
source_id
Typical fields
AES67 STREAM
25
sdp_text (PUT) or rtp_flow
DANTE STREAM
23
label / channel_name / device_name
Device Dante AES67 mode
n/a
PUT /settings/device/dante/aes67 with {"value": true|false}
Dante AES67 enable is a separate device setting (Brooklyn AES67 mode). AES67 STREAM patches use the channel patch API below.
Prerequisites
Amplifier reachable at http://${IP}/rest-api/… (see REST API overview).
Firmware that exposes AES67 STREAM as an input source. Confirm with:
Look for source_id: 25 / "AES67 STREAM" in the source list.
A complete SDP the device can parse (see SDP requirements below).
Write calls need the API key header token (default documented in the overview).
API path and method
Item
Value
Method
PUT (writes require token)
Path
/settings/channel/{channel_id}/dsp/patch
Body
JSON array of patch objects (SettingsPatches)
Read back
GET same path (or …/patch/{patch_id})
Constraints
OPTIONS on the same path
There is no PUT on /settings/channel/{channel_id}/dsp/patch/{patch_id} — only GET for a single patch. Writes always go to the collection path with one or more objects in the array.
Payload fields (AES67 STREAM)
Field
Role
patch_id
Required. Patch slot on the channel (1…16).
source_id
25 for AES67 STREAM.
channel
Slot within the RTP stream (1…N from SDP a=rtpmap channel count), not the Brooklyn RX channel.
sdp_text
PUT-only, at patch root. Full SDP string; server parses into flow params. Max length 512. Not returned on GET.
rtp_flow
Alternative to sdp_text: structured fields (connection_ip, rtp_port, sample_rate, encoding, channels, session_name, clock_offset, session_id, source_address). Returned on GET after a successful subscribe.
gain
Optional patch gain (dB).
mute
Optional patch mute.
stream_channel
GET-only Brooklyn RX channel assigned after placement (0 until placed). Do not send on PUT.
Rules from firmware / OpenAPI:
Put sdp_text on the patch object root. Nested rtp_flow.sdp_text is rejected.
Do not send sdp_text and structured rtp_flow params together.
Prefer one approach: paste SDP or fill rtp_flow.
SDP requirements
Server-side parse (same as Maxx Control paste) requires a parseable AES67 SDP with:
PCM encoding L16 or L24 (encoding 16 or 24)
o= session id and origin IPv4 (source address)
a=mediaclk:direct=… (or equivalent) so clock offset is present
OpenAPI maxLength for sdp_text is 512 characters. Trim optional SDP lines if you hit the limit.
Step-by-step: PUT with sdp_text
Choose amp channel (channel_id) and patch (patch_id, often 1).
Choose stream slot (channel: 1 = first channel in the SDP, 2 = second, …).
PUT an array with one AES67 patch object including sdp_text.
GET the patch back — expect source_id 25 and populated rtp_flow (not sdp_text).
Optionally check patch status and persist with /settings/save.
This session is 2 channels at 48 kHz / L24. Use "channel": 1 for L and "channel": 2 for R on two amp channels (or two patches) if needed.
JSON shape
[{"patch_id":1,"source_id":25,"channel":1,"gain":0.0,"sdp_text":"v=0\no=root 1 3991817848 IN IP4 172.149.4.123\ns=stream1\n…"}]
Newlines in SDP must be encoded inside the JSON string (\n). Do not put raw multi-line SDP inside a single-quoted -d '…' shell string unless you build JSON with a tool.
Exact field meaning matches OpenAPI schema SettingsPatch / rtp_flow.
Verify
# Settings: parsed flow (sdp_text is write-only — not echoed)curl "http://${IP}/rest-api/settings/channel/1/dsp/patch/1"# Patch healthcurl "http://${IP}/rest-api/status/channel/1/dsp/patch/1"# Optional: SAP-discovered sessions (cache; may include sdp_text)curl "http://${IP}/rest-api/info/aes67"# Optional: Dante interface flows (interface_id from GET /status/interface/interfaces)curl "http://${IP}/rest-api/status/interface/interfaces/4"
Persist runtime settings if needed:
curl -X PUT "http://${IP}/rest-api/settings/save"\
-H "token: ${TOKEN}"
Related discovery endpoints
Path
Method
Purpose
/info/aes67
GET
SAP-discovered AES67 flows (cache)
/info/aes67/refresh
PUT
Clear SAP cache (listening continues)
/settings/device/dante/aes67
GET/PUT
Device Dante AES67 enable ({"value": bool})
Source of truth
Path lists and schemas follow the on-device OpenAPI (Maxx Control → OVERVIEW → REST API DOC). Firmware versions can add fields; always confirm SettingsPatch on the live device. See also the REST API overview and input patch recipes.
1.8 - Maxx Control REST: Switch input patches
Maxx Control REST: switch amplifier channel input patches (Dante and other sources) with bulk or per-channel PUT examples.
AES67 / SDP
To subscribe a channel to an AES67 / SDP stream (source_id 25), see AES67 / SDP subscribe.
Use the Maxx Control REST API to switch channel input patches (for example Dante slots) with a bulk PUT or per-channel calls. When switching between inputs, there are multiple approaches:
Example Configuration for CH1, CH2, CH4, CH7, switch between Dante Input 1-4 and Dante Input 21-24
HTTP Put a full json object containing all affected Channels into the http://${IP}/rest-api/settings/channel/ path
Advantage: Using the bulk endpoint /settings/channel/ allows you to patch multiple channels in a single HTTP call, which is more efficient than making individual calls for each channel. This reduces network overhead and ensures all channels are updated atomically.
To determine the source_id of the desired Interfaces, perform an HTTP OPTION call to http://${IP}/rest-api/settings/channel/1/dsp/patch' to get a list of available interfaces.
Alternatively, you can patch each channel individually by making separate HTTP PUT calls to each channel’s endpoint: http://${IP}/rest-api/settings/channel/{channel_id}/
This approach allows you to update channels one at a time, which can be useful when you need to patch channels conditionally or handle errors per channel.
Assuming we’ve already patched our desired Inputs for each channel on Slot 1 and 2
When inputs are already patched, you can toggle the mute state between different patch slots (e.g., Slot 1 and Slot 2) by only updating the mute flag in the patch object. This is more efficient than repatching the entire input configuration.
HTTP Put a JSON object containing all affected Channels into the http://${IP}/rest-api/settings/channel/ path, specifying only the patch_id and mute flag for each patch slot.
You can also toggle mute on individual channels by making separate HTTP PUT calls to each channel’s endpoint: http://${IP}/rest-api/settings/channel/{channel_id}/
Use "value": false to disable. Multi-channel updates can go through PUT /settings/channel with ampenable on each object.
1.10 - Save / persist
Persist runtime REST changes with /settings/save and check save status.
Runtime changes are held until they are saved. Trigger a manual save with:
PUT /settings/save (token required; no JSON body)
curl -X PUT "http://${IP}/rest-api/settings/save"\
-H "token: f4005bf8507999192162d989d5a60823"
Check save / autosave state with GET /status/save.
Note
The device may also autosave. Integrators that change many parameters in a burst should still call /settings/save when a persistent result is required (power cycle / reboot).
2 - Third Party Plugins
Third-party plugins that use the Maxx Control REST API against a single amplifier.
These plugins use the device REST API to control one amplifier each. For multi-amp project control, use Maxx Remote instead.
2.1 - Loxone Maxx Control plugin
Install the Loxone Maxx Control plugin and MAXX-CONTROL / MAXX-STATUS templates to control one Innosonix amplifier from Loxone Config.
Loxone integrators can control one Innosonix amplifier via Maxx Control using the Loxone Library plugins and example templates. Install the add-ons into Loxone Config, point each instance at the amp IP (or hostname.local), and drive mute, volume, and status over the device REST API.
What is the Loxone Maxx Control plugin?
The Loxone Maxx Control integration is a set of .LxAddon plugins from the Loxone Library that talk to a single amplifier’s Maxx Control REST API. Instantiate a plugin once per physical device.
Which Loxone templates do I need?
Because Loxone can only combine either Virtual Inputs or Virtual Outputs in a template file, two different templates have to be installed:
MAXX-CONTROL which allows to set parameters to the amplifier
MAXX-STATUS fetches Data from the Amplifier, mainly intended for Channel and Device Status
It’s totally valid to use only one, depending on your needs.
Installation
Download the corresponding .LxAddon Files and install it into your Loxone Config by double clicking or via the Import wizard like:
General
Both Plugins can be instantiated multiple times, as often as you want to control physical devices.
Note
Please change the IP address for each device to its static IP or hostname.local. Leading http:// must be prepended, e.g. http://amp1.local or http://10.77.178.20.
Note
For MAXX-STATUS a trailing /rest-api/status is required as well, like http://10.77.150.60/rest-api/status
MAXX-CONTROL
Download the MAXX-CONTROL.Loxone example file from the Loxone Library
The Template basically provides the following predefined controls:
Channel Power
Channel Mute
Channel Volume
Device Identify
Device Master Mute
Device Master Volume
and some examples of how to create custom commands for improved performance.
Power / Mute
Simple digital outputs which can be grouped together in any desired combination.
Note
Since each state change will send out a single HTTP request, this might cause a slight delay when a lot of channels are changed simultaneously. So, this kind of control is only recommended for a few channels. See Combined Commands to improve performance
Volume
Similar to Power / Mute Volume will send out any changes for each output as a single http request.
The interesting part here is how to map the common Loxone Analog Values in a range of 0-10 to a dB value for the amplifiers. That can be easily done with the Correction field of each output. The default configuration will map the values of 0-10 to -72dB - +10dB
This will give you almost the full dynamic range of the volume value:
Note
It’s probably more useful to restrict the volume range accessible by the user to the desired listening levels like 0-10** to -20dB - -10dB or any other suitable range for your application
Combined Commands
A basic understanding of the REST-API interface is recommended to create those combined commands.
As a starting point, have a look at the three included examples:
Multichannel Mute
Multichannel Power
Multichannel Volume
Those commands send the same value to multiple channels within a single HTTP request, significantly improving performance when many channels are involved in a call.
Multichannel Mute
Let’s have a look at the HTTP body which is sent out when the DIGITAL OUTPUT is set to ON by clicking on the edit button of that line:
You basically see a JSON payload file containing an ARRAY of single JSON objects for the corresponding channels, indicated by the channel_id tag:
for each channel, you want to control and change the channel_id to the desired channel number.
Note
Don’t forget the trailing comma "," after each object, except the last one! Please use any JSON validator to verify the final JSON object before putting it back into Loxone Config
Note
Copy and paste the JSON payload to any text editor and replace the "value": true with "value": false and insert that object into the HTTP body for OFF
MAXX-STATUS
Download the MAXX-STATUS.Loxone example file from the Loxone Library
The MAXX-STATUS Template periodically polls the /rest-api/status URL of the amplifier and filters the response for each channel status/device status.
The raw CHxx STATUS value represents the default syslog severity levels like:
STATUS
Level
0
EMERGENCY
1
ALERT
2
CRITICAL
3
ERROR
4
WARNING
5
NOTICE
6
INFORMATIONAL
7
DEBUG
8
OK
In combination with the provided STATUS component with the following settings:
An easy virtualization can be achieved.
Combining the Val output of each STATUS component with an OR Gate, a simple GLOBAL STATUS can be generated when any channels or device assert any state higher than NOTICE ( see STATUS settings, State value).
2.2 - Q-SYS Maxx Control plugin
Install the Q-SYS Maxx Control plugin in Q-SYS Designer 9.8+ to control mute, volume, status, and more on one Innosonix amplifier.
Q-SYS integrators can control one Innosonix amplifier via Maxx Control using the Innosonix Maxx Control plug-in for Q-SYS Designer. Add the plug-in to your design, enter the amp IP, and expose mute, volume, meters, and status to Q-SYS UCIs and logic.
What is the Q-SYS Maxx Control plugin?
Innosonix provides a plug-in that integrates Maxx Series amplifiers (Maxx Control) with the QSC Q-SYS ecosystem. Devices can then be controlled from Q-SYS Designer, Q-SYS compatible user-control interfaces, and GPIO logic on Q-SYS cores and peripherals.
Innosonix devices must have firmware version V3.19.4 or above installed to be compatible with the Maxx Control Plug-in. If you are unsure what firmware you device is currently using, please download IDFM to help confirm and if need be install up to date firmware.
For further control and processing capabilties of your Maxx Device please download Maxx Remote
How do I install it in Q-SYS Designer?
Download the Innosonix Maxx Control Plug-in from the Third Party Downloads section of the Downloads section of our website.
Copy the downloaded plug-in file into the My Documents/QSC/Q-Sys Designer/Plugins folder (exact filename is in the download package from the Innosonix website).
Open Q-SYS Designer; the plug-in appears under Schematic Elements → Plugins:
Drag and drop the Plug-in into your design and select it by clicking once on the Plug-in icon.
Control pins can be enabled by ticking the check-boxes in the “Control Pins” section as required:
Go “Online” with your Q-Sys project. If devices are not connected you can use the “Emulate” function under the “File” tab in the menu above.
Double-click the plug-in icon, open the Global tab, and enter the amplifier IP address. The IP is shown on the device front panel, or use IDFM to discover it:
The “Global Tab” notifies the user of important information on the Innosonix device including:
IP Address
Model
Software Version
Serial Number
Device Name
Device Location
Pole Counter
Device Status
Select the “Channels Tab”:
Within the “Channels Tab” the user has the facility to adjust a number of the devices features including:
Mute
Enable or Disable Channel
Volume
Further Assistance:
For any more information please visit feel free to Contact us!