Guides
Browse the node palette
List and search available nodes — the same task on every surface.
Before running anything, find the node you want and read its spec. All surfaces
hit the same nodes.list / nodes.get contract ops (scope: read), and both
are public — no token needed to read the catalog.
To browse it in a page instead, blitflow.com/models
renders the same catalog, with a form per node generated from its spec. Signed
in, the studio's Nodes section (G then N) is the same catalog scoped to
your organization — see Run a single node.
{ "name": "nodes_list", "arguments": { "q": "image", "limit": 20 } }Then inspect one:
{ "name": "nodes_get", "arguments": { "id": "rd-fast" } }Read the spec's inputs ports — defaults, optionValues (enums), and bounds
— before calling the node. Guessed enum values fail validation. See Nodes &
specs.