I have not used the remote API, but I am sure that you really want to get the identifier of all containers, and then get the State information for each container using /containers/(id)/json :
... "State": { "Error": "", "ExitCode": 9, "FinishedAt": "2015-01-06T15:47:32.080254511Z", "OOMKilled": false, "Paused": false, "Pid": 0, "Restarting": false, "Running": true, "StartedAt": "2015-01-06T15:47:32.072697474Z", "Status": "running" }, ...
Thus, you will receive the same data in a much more standard form.
source share