## List projects accessible to the authenticated caller

**get** `/projects`

Returns the projects the caller can access. PAT callers see only the
project their PAT is scoped to; OAuth user callers see all projects
they belong to.

### Returns

- `id: string`

  The unique identifier for the project.

- `name: string`

  The name of the project.

### Example

```http
curl https://console.cloud.tigerdata.com/public/api/v1/projects \
    -H "Authorization: Bearer $TIGER_CLOUD_API_KEY"
```

#### Response

```json
[
  {
    "id": "rp1pz7uyae",
    "name": "My Production Project"
  }
]
```
