shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/fulltext <<EOF { "collection" : "products", "attribute" : "text", "query" : "word" } EOF HTTP/1.1 201 Created content-type: application/json; charset=utf-8 x-content-type-options: nosniff { "result" : [ { "_key" : "11318", "_id" : "products/11318", "_rev" : "_WjL9-l2--_", "text" : "this text contains word" }, { "_key" : "11322", "_id" : "products/11322", "_rev" : "_WjL9-l2--B", "text" : "this text also has a word" } ], "hasMore" : false, "count" : 2, "error" : false, "code" : 201 }