v5

latestOpenAPI 3.1.02026-08-025631,1012.8 MB
Public Templates API
Public Scaffolds

Get Scaffold Manifest

Render a scaffold template as a Mixpeek manifest (public, no auth).

Powers the Studio namespace-templates UI, which shows each template as a declarative manifest tree + copyable YAML (the same IaC format used by POST /v1/manifest/apply). Returns both the YAML string (manifest_yaml) and the parsed manifest dict (manifest).

get/v1/public/templates/scaffolds/{template_id}/manifest

Path parameters

template_idstring required

Scaffold template ID

Scaffold template ID

Response

Successful Response

template_idstring required

Scaffold template ID

namestring required

Scaffold template display name

manifest_yamlstring required

Manifest rendered as YAML (same style as manifest export)

manifestobject required

Manifest as a JSON-safe dict (parseable by the manifest parser)

Example response

{
  "manifest": {
    "metadata": {
      "name": "Video Understanding"
    },
    "namespaces": [],
    "version": "1.0"
  },
  "manifest_yaml": "version: '1.0'\nmetadata:\n  name: Video Understanding\n...",
  "name": "Video Understanding",
  "template_id": "tmpl_scaffold_video_understanding"
}