Curl Command with Repeat

Hello,
I’m trying to call a curl command with repeat function. I try
curl volumio.local/api/v1/commands/?cmd=repeat&value=true
I receive :
{“time”:1621498634517,“response”:“repeat Success”}‘value’ is not recognized as an internal or external command,
operable program or batch file.
The result is that repeat toggle into volumio.
Could you help me please?

You need to quote the URL

 curl "volumio.local/api/v1/commands/?cmd=repeat&value=true"

Thanks. I tought that I’ve already tested this but not. It works great.