Skip to main content
GET
/
v1
/
workflows
/
{id}
/
nodes
/
{nodeId}
Get workflow node details
curl --request GET \
  --url https://app.loops.so/api/v1/workflows/{id}/nodes/{nodeId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "node_signup_01",
  "workflowId": "wfl8n3q1w7x2m9k4p6r0t5y8zab2cd",
  "typeName": "SignupTrigger",
  "nextNodeIds": ["node_timer_01"]
}
Workflow API endpoints are currently in alpha and are subject to change.

Request

Path parameters

id
string
required
The ID of the workflow.
nodeId
string
required
The ID of the workflow node.

Response

Success

The response body is a workflow node. The shape depends on typeName.

Error

A 400 Bad Request is returned if id or nodeId is invalid. A 404 Not Found is returned if the workflow or node does not exist. If the API key is invalid (or workflow API is not enabled for your team), a 401 Unauthorized is returned.
message
string
required
An error message describing what went wrong.
{
  "id": "node_signup_01",
  "workflowId": "wfl8n3q1w7x2m9k4p6r0t5y8zab2cd",
  "typeName": "SignupTrigger",
  "nextNodeIds": ["node_timer_01"]
}
Last modified on June 22, 2026