Skip to main content
GET
/
v1
/
projects
/
{projectId}
/
pathway
/
nodes
/
{nodeId}
Get Node
curl --request GET \
  --url https://api.pathors.com/v1/projects/{projectId}/pathway/nodes/{nodeId} \
  --header 'Authorization: <authorization>'

Request

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

Path Parameters

projectId
string
required
The project ID
nodeId
string
required
The node ID

Headers

Authorization
string
required
Bearer token using your developer key

Response

Returns the node object, or 404 if not found.

Example

curl https://api.pathors.com/v1/projects/{projectId}/pathway/nodes/{nodeId} \
  -H "Authorization: Bearer dk_your_key"
{
  "data": {
    "id": "node-booking",
    "position": { "x": 200, "y": 300 },
    "data": {
      "type": "prompt",
      "title": "Booking",
      "prompt": "Help the user complete their booking.",
      "tools": ["tool-uuid-1"]
    }
  }
}