> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pathors.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Nodes

> List all nodes in the pathway

## Request

```bash theme={null}
GET https://api.pathors.com/v1/projects/{projectId}/pathway/nodes
```

### Path Parameters

<ParamField path="projectId" type="string" required>
  The project ID
</ParamField>

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token using your developer key
</ParamField>

## Response

<ResponseField name="data" type="array">
  Array of node objects. Each node has an `id`, `position`, and `data` containing the node configuration.
</ResponseField>

### Node Types

| Type     | Description                                        |
| -------- | -------------------------------------------------- |
| `start`  | Entry point of the conversation                    |
| `prompt` | A conversation step with prompt and optional tools |
| `end`    | Terminal node that ends the conversation           |
| `goto`   | Redirects to another node                          |

### Example

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