v5
latestOpenAPI 3.1.02026-08-025631,1012.8 MBPublic Templates API
Public Scaffolds
Get Scaffold
Get scaffold template details (public, no auth required).
Returns the complete configuration including:
- Namespace: feature extractors, payload indexes
- Bucket: name, description, schema
- Collection: feature extractor config
- Retriever: stages, input schema
To instantiate (requires auth):
POST /v1/templates/scaffolds/{template_id}/instantiate
{"namespace_name": "my_app"}
get/v1/public/templates/scaffolds/{template_id}
Path parameters
template_idstring required
Scaffold template ID
Scaffold template ID
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"
}