# Team

1 endpoint for team, with parameters and a real response example.

## GET /team

**List the workspace's team**

Who is in the workspace, with role and email, plus pending invites, how many people the plan allows, and how many seats remain. Read-only: inviting and canceling invites are not available through the API. See this document's `x-posttar-excluded` for why.

| Parameter | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `limit` | query | integer | no | Default 50, max 100. |

Response:

```json
{
  "yourRole": "owner",
  "members": [
    {
      "id": "f8090f41-2e10-4a7d-b0b1-27051e8f2c24",
      "userId": "fe7840c7-4f22-42cb-8786-4e486b5db8f2",
      "role": "owner",
      "name": "Alex Rivera",
      "email": "member@example.com",
      "joinedAt": "2026-04-05T02:45:37.858819+00:00",
      "isYou": true
    }
  ],
  "pendingInvites": [],
  "planLimit": 1,
  "seatsUsed": 1,
  "seatsFree": 0
}
```
