> ## 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.

# 列出專案

> 列出已認證使用者有權存取的所有專案

## 請求

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

### 標頭

<ParamField header="Authorization" type="string" required>
  使用您的 Developer Key 進行 Bearer 令牌認證
</ParamField>

## 回應

<ResponseField name="data" type="array">
  專案物件陣列
</ResponseField>

### 範例

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

```json theme={null}
{
  "data": [
    {
      "id": "project-uuid",
      "name": "My Agent",
      "createdAt": "2026-01-01T00:00:00.000Z",
      "updatedAt": "2026-01-01T00:00:00.000Z"
    }
  ]
}
```
