| Parameter | Type | Description |
source_type | string | Filter by source type: properties or people |
search | string | Search filters by name or description |
page | integer | Page number (default: 1, min: 1) |
per_page | integer | Results per page (default: 25, min: 1, max: 250) |
data contains:| Field | Type | Description |
filter_id | string | Unique identifier for the filter (e.g., estimated_value) |
name | string | Display name |
description | string | null | Human-readable description |
type | string | Data type: NUMBER, STRING, DATE, MULTI_SELECT, BOOLEAN |
source_type | string | properties or people |
group_id | string | null | Filter group identifier (e.g., financial, property_details) |
options | array | null | Available values for MULTI_SELECT filters |
options[].option_id | string | number | Unique identifier for the option |
options[].label | string | Display label for the option |
allowed_operators | array | Valid operators for this filter type |
| Type | Operators |
NUMBER | range, greater_than, greater_than_or_equal, less_than, less_than_or_equal, equals, not_equals |
STRING | contains, any_of, starts_with, ends_with, equals, not_equals, not_contains |
DATE | date_range, is_after, is_before, equals, relative_time |
DATE (last_exported) | date_range, is_after, is_before, equals, relative_time, is_known |
MULTI_SELECT | contains_any, contains_none, contains_all |
BOOLEAN | (automatic; no operator needed) |
allowed_operators value to construct queries against the search
endpoints. Filter-specific operators, such as is_known for Export
Activity, are included in that array.12curl "https://api.v2.dealmachine.com/v1/filters?source_type=properties&per_page=50" \ -H "Authorization: Bearer dm_sk_live_xxx"
1234567891011121314151617181920212223242526272829303132333435363738394041424344{ "data": [ { "filter_id": "estimated_value", "name": "Estimated Value", "description": "Current estimated market value of the property", "type": "NUMBER", "source_type": "properties", "group_id": "financial", "options": null, "allowed_operators": [ "range", "greater_than", "greater_than_or_equal", "less_than", "less_than_or_equal", "equals", "not_equals" ] }, { "filter_id": "property_type", "name": "Property Type", "description": "Classification of the property", "type": "MULTI_SELECT", "source_type": "properties", "group_id": "property_details", "options": [ { "option_id": 1, "label": "Single Family" }, { "option_id": 2, "label": "Multi-Family" }, { "option_id": 3, "label": "Condo" } ], "allowed_operators": ["contains_any", "contains_none", "contains_all"] } ], "pagination": { "page": 1, "per_page": 50, "total_results": 215, "total_pages": 5, "has_next_page": true, "has_previous_page": false } }