Client Search

An ElasticSearch query endpoint. ElasticSearch provides a full Query DSL based on JSON to define queries.Query DSL
e.g 1: Match queries accept text/numerics/dates, analyses them, and constructs a query
{"query": {"match" : { "name" : "John Doe" } }}
e.g 2: A query that matches documents matching boolean combinations of other queries
{"query": {"bool": {"must": [{"match": {"questions.id": 12345}},{"match": {"questions.answer": "No"}}]}}}

Language
Authorization
URL
Click Try It! to start a request and see the response here!