Webhood’s search page uses the PocketBase filter syntax to query the scans collection. The search bar includes an autocomplete that suggests common field names and operators as you type, making it easy to build precise queries without memorising the full syntax. Once you run a query, the filter expression is embedded in the page URL so you can bookmark or share it with colleagues.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/webhood-io/webhood/llms.txt
Use this file to discover all available pages before exploring further.
Filter syntax basics
Filters are boolean expressions. Each clause compares a field to a value using an operator.Text match (contains)
~ operator performs a case-insensitive substring match. This is the most common operator for searching URLs.
Exact match
Negation
Date comparison
>=, <=, >, and <.
Combining expressions
Use&& (AND) to require multiple conditions:
|| (OR) to match any of several conditions:
Searchable fields
| Field | Type | Description |
|---|---|---|
url | string | The URL that was submitted for scanning. |
final_url | string | The URL the browser ended up on after redirects. |
status | string | Scan lifecycle state: pending, queued, running, done, or error. |
slug | string | The unique short identifier used in the scan result URL. |
created | datetime | When the scan record was created. |
updated | datetime | When the scan record was last updated. |