Filter
Filters
Create filter
Create a new filter by specifying the field, operator and type
POST
Filter
This endpoint creates a new filter for use in stream transformations. Filters support comparison operators (Documentation Index
Fetch the complete documentation index at: https://docs.allium.so/llms.txt
Use this file to discover all available pages before exploring further.
=, !=, >, >=, <, <=), the in operator for matching against arrays or data sources, the exists operator for field presence checks, and compound AND/OR logic for complex conditions.
See the Filter Syntax documentation for complete details on all operators, nested conditions, and examples.
Example Filter with Data Source
Example Filter with Array Values
Example Compound Filter
Supported Operators
| Operator | Description | Example Value |
|---|---|---|
= | Equals | "ethereum" |
!= | Not equals | "pending" |
> | Greater than | 1000000 |
>= | Greater than or equal | 18000000 |
< | Less than | 50000 |
<= | Less than or equal | 100 |
in | Value in array or data source | ["ethereum", "polygon"] |
exists | Field exists or doesn’t exist | true or false |
Old Filter Syntax (Deprecated)
Next Steps
Filter Syntax
Learn how to filter streams with complex conditions