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