WiiM http API for PEQ

Joined
Jan 22, 2024
Messages
6
For the graphic EQ the API works well, I can list saved modes:
Code:
https://<myip>/httpapi.asp?command=EQGetList

[
   ...
   "Vocal Booster",
   "TV"
]

And then load one:
Code:
https://<myip>/httpapi.asp?command=EQLoad:TV

{
   "status":"OK",
   "EQStat":"On",
   "Name":"TV",
  ...
}

But, can you do the same for parametric EQ? eg:
Code:
// This doesn't work :(

https://<myip>/httpapi.asp?command=PEQGetList

unknown command

Any ideas? Would be great if there was an up to date list of commands somewhere..
 
this is the answer:
We regret to inform you that some of our APIs are not open. :cry:
Nonsense, this is the command to enable PEQ: (take note it wont update the app ui unless you exit and enter the settings menu again)


PEQ ON:
https://192.168.0.191/httpapi.asp?command=EQChangeSourceFX:{%22source_name%22:%22wifi%22,%22pluginURI%22:%22http://moddevices.com/plugins/caps/EqNp%22}

PEQ OFF:
https://192.168.0.191/httpapi.asp?command=EQSourceOff:{%22source_name%22:%22wifi%22,%22pluginURI%22:%22http://moddevices.com/plugins/caps/EqNp%22}
 
The thing is, if the API is not public it might change at any point in time (and without any note to the users, of course).
 
The thing is, if the API is not public it might change at any point in time (and without any note to the users, of course).
That is of course true, but for home usage and automation in non critical work its sufficient and easy to update/re-sniff if required.
 
Back
Top