Search documents in an index
List all indices with details
Get overall Elasticsearch cluster health
Perform advanced search with JSON body
curl -X GET 'http://localhost:9200/my_index/_search?pretty' -H 'Content-Type: application/json' -d '{"query":{"match":{"name":"John"}}}'
Match query for users
curl -X GET 'http://localhost:9200/users/_search?pretty' -H 'Content-Type: application/json' -d '{"query":{"match":{"username":"alice"}}}'
View cluster-wide statistics
Get stats for all nodes
Create a new index