# request to adeptsearch, for term-suggestion:
`POST /query`:
```JSON
{
"query": "jacket",
...,
"applied_term_suggestions": [
{
"term": "denim",
"position": -10,
"selected": true
}
]
}
```
Response body:
```JSON
{
"query": "jacket",
...,
"applied_term_suggestions": [
{
"term": "denim",
"position": -10,
"selected": true
},
{
"term": "jacket",
"position": 0,
"selected": true
}
],
"term_suggestions": [
{
"term": "mens",
"position": -15
},
{
"term": "fabric",
"position": -5
},
{
"term": "levis",
"position": -15
}
]
}
```