Keyword Filters
Howinclude/excludekeyword search works across BlitzAPI Search endpoints, plus the exact-match bracket syntax.
.include and .exclude filters are used as keyword search filters.
They work as OR filters, and look if each word appears in the search results.
Simple Example
Simple Example
For example, if you want to look for “Director” in the search results, you can use the following filter:
Advanced Example
Advanced Example
Exact Match Syntax
On top of the regular keyword search, you can also use the exact match syntax. Wrap a value in square brackets to switch to exact match:"[CEO]" matches only values whose lowercased, unaccented form equals "ceo".
The bracket syntax works in both
include and exclude, and you can mix it in the same array — e.g. ["[CEO]", "Founder"] means exact "ceo" OR keyword "Founder".
