Documentation Index
Fetch the complete documentation index at: https://docs.blitz-api.ai/llms.txt
Use this file to discover all available pages before exploring further.
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".
| Value | Behavior | Matches ✅ | Does not match ❌ | Case sensitive | Accent sensitive |
|---|---|---|---|---|---|
"CEO" | Keyword search (default) | CEO, Co ceo, ceo Office | — | No | No |
"[CEO]" | Exact (case- and accent-insensitive) | CEO, ceo, Céo | Co ceo, CEO Office | No | No |
include and exclude, and you can mix it in the same array — e.g. ["[CEO]", "Founder"] means exact "ceo" OR keyword "Founder".
