view_id. Views are how you make analysis repeatable and how you hand a result set to another step or person.
Creating a view
POST /v1/views takes a name and exactly one source — either an existing search handle or a full search request:
Materialized vs. live
A view is one of two kinds, and the distinction matters for reproducibility:- Materialized — the matching records and their rank are frozen at creation. Every read returns the same set. Use materialized views when you need stable, deterministic membership, especially before running SQL or downstream analysis on the results.
- Live — the view stores the query definition and re-runs it on read, so it reflects current data. Useful for dashboards and recurring checks where freshness matters more than a fixed set.
Semantic search is a candidate universe, not a complete matching set. For deterministic work over semantic results, materialize the view so membership and rank are fixed, then operate on that frozen handle.
Reading records
GET /v1/views/{view_id}/records returns the records in a view. List your views with GET /v1/views, rename with PATCH, and delete with DELETE.
Cluster views
POST /v1/views/cluster builds a view from semantic clustering. You provide seed queries and a similarity threshold, and Splendor groups records by closeness to those seeds. This is useful for organizing a large, fuzzy result space into coherent groups rather than a flat ranked list.