Advanced Search
Authentication
AuthorizationBearer
Bearer authentication of the form Bearer <token>, where token is your auth token.
Request
This endpoint expects an object.
filters
Base filter model for deal search.
Supports individual field filters or logical operators (`$and`, `$or`).
Example with benchmark metrics:
```json
{
"filters": {
"$and": [
{"company_name": "Acme"},
{
"benchmark_metrics": {
"field_name": "revenue",
"conditions": [
{"operator": "$gte", "value": 1000000},
{"operator": "$lte", "value": 5000000}
]
}
}
]
}
}
```
sort
Optional list of sort criteria. Earlier items take precedence. Each item must specify ‘sort_by’ (SortField, BenchmarkMetricField, or DateField enum) and ‘sort_order’. ‘sort_by’ values must be unique.
page
Page number
page_size
Number of items per page
Response
Successful Response
total_count
page
page_size
data

