v5
latestOpenAPI 3.1.02026-08-025631,1012.8 MBTemplates
Retriever Templates
List Retriever Templates
List retriever templates (system + organization + user).
Supports filtering, sorting, and search like other list operations.
Request Body (optional):
- filters: Attribute-based filters {"AND": [{"field": "category", "operator": "eq", "value": "semantic_search"}]}
- sort: Sort options {"field": "name", "direction": "asc"}
- search: Wildcard search across template_id, name, description, tags
- scope: Filter by scope (system, organization, user)
- category: Filter by category
- is_active: Show only active templates (default: true)
- tags: Filter by tags (templates must have ALL specified tags)
post/v1/templates/retrievers
Request body
Example request
{
"category": "semantic_search",
"is_active": true,
"scope": "system",
"search": "semantic"
}Response
Successful Response
Example response
{
"results": [
{
"category": "semantic_search",
"description": "Simple text-based semantic search",
"internal_id": "system",
"is_active": true,
"is_public": true,
"name": "Basic Semantic Search",
"scope": "system",
"template_id": "tmpl_semantic_search",
"template_type": "retriever"
}
],
"total_count": 1
}