Skip to main content
GET
Get all nodes in a workflow
Legacy endpoint - deprecated. Unversioned endpoints are scheduled for removal on July 31, 2026. A public v1 replacement is not currently listed in the v1 reference. This endpoint remains available for existing integrations until then.
Returns every node in the given workflow. Each entry includes the node’s id, the node_type (such as VOICE_CALL, TIME, CONDITIONAL, WEBHOOK, SMS), the human-readable label, and the node’s configuration. Combine this with List Edges to reconstruct the full workflow graph for visual editors, exports, and external tools.

When to use this

  • Workflow visual editors: fetch the node set on load so the canvas can render every step.
  • Workflow exports: produce a portable JSON snapshot of the workflow’s structure for backups or migrations.
  • Audit and lint tooling: walk the node set to verify required configuration (for example a voice call node has an assigned agent, or a webhook node has a non-empty URL).
  • Migration tooling: discover nodes that reference a deprecated agent or LLM before applying bulk updates.

Node types

Node types may evolve as the platform adds new step kinds. Inspect the node_type field and treat unknown values as a hint to update your editor or tooling.

Path parameters

Errors

  • 404 Not Found is returned when the workflow does not exist.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200

Nodes fetched successfully