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