shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/near <<EOF { "collection" : "products", "latitude" : 0, "longitude" : 0, "skip" : 1, "limit" : 2, "radius" : 500 } EOF HTTP/1.1 201 Created content-type: application/json; charset=utf-8 { "result" : [ { "_key" : "11723", "_id" : "products/11723", "_rev" : "11723", "loc" : [ 0.002, 0 ], "name" : "Name/0.002/" }, { "_key" : "11717", "_id" : "products/11717", "_rev" : "11717", "loc" : [ -0.002, 0 ], "name" : "Name/-0.002/" } ], "hasMore" : false, "count" : 2, "error" : false, "code" : 201 }