Materialize Filter
Materialize filter results into a downloadable dataset. The output is a structured table of all matching extracted values with optional per-cell provenance.
POST
/filter/materializeRequest body
| Field | Type | Description |
|---|---|---|
| filter_id | string | ID of a saved filter to materialize |
| conditions | array | Inline filter conditions (alternative to filter_id) |
| format | string | Output format: json (default) or csv |
| include_provenance | boolean | Include provenance in output (default false) |
Example
curl -X POST https://api.talonic.com/filter/materialize \
-H "Authorization: Bearer tlnc_sk_live_7f3a...x9k2" \
-H "Content-Type: application/json" \
-d '{"filter_id":"flt_abc123","format":"csv"}'