endpoint
POST
/api/comfy/spaces/{slug}/deploy
Deploy a gallery workflow
auth: API keybase https://app.nz
Request
curl -sX POST https://app.nz/api/comfy/spaces/{slug}/deploy \
-H "Authorization: Bearer pk_live_..." \
-H "Content-Type: application/json" \
-d '{}'ComfyUI workflow API
Discover and download tested API-format graphs, deploy one as a scale-to-zero GPU endpoint, and poll hosted output artifacts. app.nz API Input and API Output nodes make typed names part of the graph itself; deployment workflows and their contracts persist in the platform database and can be exported exactly. Serverless workers use pinned reviewed node packs and never install arbitrary plugin code at runtime. The public catalogue includes a ten-part foundations course plus twelve multimedia Creative Systems Labs.
Gallery deploy and run fields
namestringOptional deployment name; defaults to the workflow slug.hardwarestringGPU machine type or auto.modestringauto | serverless | pod | local | dedicated.inputsobjectNamed values from the selected workflow apiInputs contract.apiOutputsarrayNamed output node contract; matching files include the same name.image/video/audiostringPublic URL or artifact:<id> for mapped media inputs.Run image, audio-reactive, or talking-character graphs
# Proteus V0.4: deploy the tested seven-node SDXL workflow
curl -sX POST https://app.nz/api/comfy/spaces/proteus-v04-text-to-image/deploy \
-H "Authorization: Bearer $APP_API_KEY" \
-H "Content-Type: application/json" \
-d '{"mode":"auto","name":"proteus-course"}'
# Queue named inputs using the deployment id returned above
curl -sX POST https://app.nz/api/comfy/DEPLOYMENT_ID/run \
-H "Authorization: Bearer $APP_API_KEY" \
-H "Content-Type: application/json" \
-d '{"inputs":{"prompt":"ceramic observatory under an aurora","seed":42,"steps":24,"cfg":5}}'
# CuteDSL-accelerated Z-Image Turbo uses the same contract
curl -sX POST https://app.nz/api/comfy/spaces/cute-zimage-turbo/deploy \
-H "Authorization: Bearer $APP_API_KEY" \
-H "Content-Type: application/json" \
-d '{"mode":"auto"}'
# CPU audio-reactive frames: map a worker audio file to spectrum animation
curl -sX POST https://app.nz/api/comfy/spaces/audio-reactive-visualizer/deploy \
-H "Authorization: Bearer $APP_API_KEY" \
-H "Content-Type: application/json" \
-d '{"mode":"auto"}'
# Inspect the talking-character graph and its open-source dependencies first
curl -s https://app.nz/api/comfy/spaces/liveavatar-talking-character | jq '.space.apiInputs, .space.openSource'More in ComfyUI workflow API
GET
/api/comfy/tutorialsList the 10-part course with runnable workflow linksGET/api/comfy/labsList 12 multimedia labs with runnable workflow linksGET/api/comfy/pluginsList pinned serverless and recommended editable-pod node packsGET/api/comfy/spacesList vetted workflows, inputs, provenance, VRAM, and verificationGET/api/comfy/spaces/{slug}Get one API-format graph and its complete contractGET/api/comfy/spaces/{slug}/downloadDownload exact runnable workflow JSONGET/api/comfy/models?q=proteusSearch model sources and global mirror statePOST/api/comfy/{deployment_id}/runQueue named workflow inputsGET/api/comfy/{deployment_id}/downloadExport the exact persisted deployment workflowGET/api/comfy/runs/{run_id}Poll timing, cost, errors, and output artifacts