Skip to main content
GET
/
v1
/
projects
/
{projectId}
/
pathway
/
nodes
List Nodes
curl --request GET \
  --url https://api.pathors.com/v1/projects/{projectId}/pathway/nodes \
  --header 'Authorization: <authorization>'
{
  "data": [
    {}
  ]
}

Request

GET https://api.pathors.com/v1/projects/{projectId}/pathway/nodes

Path Parameters

projectId
string
required
The project ID

Headers

Authorization
string
required
Bearer token using your developer key

Response

data
array
Array of node objects. Each node has an id, position, and data containing the node configuration.

Node Types

TypeDescription
startEntry point of the conversation
promptA conversation step with prompt and optional tools
endTerminal node that ends the conversation
gotoRedirects to another node

Example

curl https://api.pathors.com/v1/projects/{projectId}/pathway/nodes \
  -H "Authorization: Bearer dk_your_key"