In V2, use
get_index() plus index.records() instead of legacy get_scene_index(). Keep using get_scene_index() only with legacy scene indexes.List indexes
Uselist_indexes() to see the indexes available on a video.
Get one index
Useget_index() to inspect one index manifest.
get_index() returns metadata and schema. It does not return every indexed record by default.
Inspect field schema
Because V2 indexes can supportquery() and aggregate(), users need to know which fields are available for each capability.
Preview indexed records
Use record preview when you want to inspect what was indexed.index.records() is for inspection and debugging. For retrieval, filtering, ranking, and analytics, use search(), semantic_search(), query(), and aggregate().Search APIs remain separate from index inspection
get_index() tells you what is possible. It does not duplicate retrieval APIs.
For direct semantic search:
Delete an index
Delete by id from the video, or calldelete() on an Index object you already hold:
Next steps
Search APIs
Retrieve from the indexes you inspected.
Index Fields
Configure which fields become semantic text, filters, facets, and sort keys.