$ cat test.json
{}
$ curl -X POST -H "Content-Type: application/json" -d @test.json https://jsonbin.io/b/new
{"success":false,"message":"Snippet parameter is missing"}
$ echo '{"snippet": "{}"}' > test.json
$ curl -X POST -H "Content-Type: application/json" -d @test.json https://jsonbin.io/b/new
{"success":true,"data":"{}","id":"..."}