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" : "10770", "_id" : "products/10770", "_rev" : "_VReqx-e---", "text" : "this text also has a word" }, { "_key" : "10766", "_id" : "products/10766", "_rev" : "_VReqx-a---", "text" : "this text contains word" } ], "hasMore" : false, "count" : 2, "error" : false, "code" : 201 }