v5
latestOpenAPI 3.1.02026-08-025631,1012.8 MBPublic Templates API
Public Scaffolds
List Scaffolds
List available scaffold templates (public, no auth required).
Scaffolds are pre-configured templates that create complete infrastructure:
- Namespace with feature extractors
- Bucket with data schema
- Collection with processing config
- Retriever with search pipeline
Categories:
- media - Video, image, podcast search
- documents - Document Q&A, RAG
- ecommerce - Product catalog search
To instantiate (requires auth):
POST /v1/templates/scaffolds/{template_id}/instantiate
{"namespace_name": "my_app"}
get/v1/public/templates/scaffolds
Query parameters
categorystring nullable
Filter by category (media, documents, ecommerce)
Filter by category (media, documents, ecommerce)
is_activeboolean
Only show active templates
Only show active templates
Response
Successful Response
Example response
[
{
"category": "semantic_search",
"configuration": {
"input_schema": {},
"stages": []
},
"created_at": "2025-01-15T12:00:00Z",
"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"
}
]