I put 2 documents in Elasticsearch :
curl -XPUT \"http://localhost:9200/vehicles/vehicle/1\" -d\' { \"model\": \"Classe A\" }\' curl -XPUT \"http://loca
Additionally, you can use query_string and escape the quotes will also return an exact phrase:
POST _search { "query": { "query_string": { "query": "\"Classe A\"" } }