HOCUS MOCKUS
============

HTTP POST some JSON here
    curl -X POST https://mock.selfhost.ovh/mock \
        -H 'content-type: application/json' \
        -d '{"app":{"container":[{"id":"090-5"}]}}'

it returns an UUID
    3f77afad-15ce-4319-b210-513a95e41b21

which you can use to retrieve the same JSON you posted
    curl -s https://mock.selfhost.ovh/mock/3f77afad-15ce-4319-b210-513a95e41b21 | jq

    {
      "app": {
        "container": [
          {
            "id": "090-5"
          }
        ]
      }
    }

The instance is rate limited.