elasticsearch/es-search-body

Search with Body

Perform advanced search with JSON body

elasticsearch
search
json

Command

curl -X GET 'http://localhost:9200/my_index/_search?pretty' -H 'Content-Type: application/json' -d '{"query":{"match":{"name":"John"}}}'

Examples

Match query for users

curl -X GET 'http://localhost:9200/users/_search?pretty' -H 'Content-Type: application/json' -d '{"query":{"match":{"username":"alice"}}}'