REST API for /interface/lte> monitor lte1 once

Is there a rest URL that can provide information similar to “/interface/lte> monitor lte1 once” on the terminal? Mainly looking to get SINR/RSSI cell band info.

/rest/interface/lte/monitor says “no such command”

/rest/interface/lte/lte1 only has very basic info, similar to lte iface “General” tab in Winbox.

Hmm. I also found it in the SNMP mtxrLTEModemEntry OID .1.3.6.1.4.1.14988.1.1.16.1.1, I might do it that way.

You should be using HTTP POST to run specific commands.

Oh that makes sense, that worked. For posterity, this is what i did:

foo@bar:~$ curl -k -u user:pass -X POST https://<ip-address>/rest/interface/lte/monitor -d '{"numbers":0, "duration":1}' -H "content-type: application/json"