v5
latestOpenAPI 3.1.02026-08-025631,1012.8 MBResource Search
Search Resources
Search across all resource names and IDs within your namespace.
This endpoint performs a case-insensitive search across:
- Buckets (bucket_name, bucket_id)
- Collections (collection_name, collection_id)
- Retrievers (retriever_name, retriever_id)
- Taxonomies (taxonomy_name, taxonomy_id)
- Clusters (cluster_name, cluster_id)
- Namespaces (namespace_name, namespace_id)
Results are sorted by relevance (exact matches first) and creation time (newest first).
Use the resource_types parameter to filter searches to specific resource types.
Pagination is supported via limit and offset parameters.
post/v1/resources/search
Request body
Example request
{
"description": "Search all resources for 'product'",
"limit": 20,
"offset": 0,
"query": "product"
}Response
Successful Response
Example response
{
"description": "Successful search with multiple results",
"limit": 20,
"offset": 0,
"results": [
{
"created_at": "2024-01-15T10:30:00Z",
"description": "Production video content",
"resource_id": "bkt_prod123",
"resource_name": "production-videos",
"resource_type": "bucket",
"updated_at": "2024-01-20T14:22:00Z"
},
{
"created_at": "2024-02-01T08:15:00Z",
"description": "Product catalog embeddings",
"resource_id": "col_prod456",
"resource_name": "Product Embeddings",
"resource_type": "collection"
}
],
"total": 15
}