shell> curl -X POST --data-binary @- --dump - http://localhost:8529/_api/cursor <<EOF { "query" : "FOR p IN products LIMIT 5 RETURN p", "count" : true, "batchSize" : 2 } EOF HTTP/1.1 201 Created content-type: application/json; charset=utf-8 { "result" : [ { "_key" : "226788", "_id" : "products/226788", "_rev" : "226788", "hello4" : "world1" }, { "_key" : "226778", "_id" : "products/226778", "_rev" : "226778", "hello1" : "world1" } ], "hasMore" : true, "id" : "226794", "count" : 5, "extra" : { "stats" : { "writesExecuted" : 0, "writesIgnored" : 0, "scannedFull" : 5, "scannedIndex" : 0, "filtered" : 0, "executionTime" : 0.00010704994201660156 }, "warnings" : [ ] }, "cached" : false, "error" : false, "code" : 201 } shell> curl -X DELETE --dump - http://localhost:8529/_api/cursor/226794