Skip to content

Specifying the result format

Returning results as YAML

GET /recipe/_search?format=yaml
{
    "query": {
      "match": { "title": "pasta" }
    }
}

Returning pretty JSON

GET /recipe/_search?pretty
{
    "query": {
      "match": { "title": "pasta" }
    }
}