> For the complete documentation index, see [llms.txt](https://docs.oxid-projects.com/oxid-rest-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.oxid-projects.com/oxid-rest-api/routes-1/filters.md).

# Filters

It´s possible to filter `article` requests.

{% hint style="info" %}
**Example:** Get all articles whith `oxactive = 1` and oxtitle like '%kite%'

`https://YOUR_SHOP_URL/rest/v1/articles?filter[]=oxshopid|=|1&filter[]=oxtitle|like|kite`
{% endhint %}

## Filter format

```
oxactive|=|1
```

1. key (eg. oxarticles.oxactive)
2. action
3. value

## Filter actions

```
'='
'!='
'<'
'<='
'>'
'>='
'like'
```
