---
title: "List team members REST API | HitKeep"
description: "Reference for the HitKeep REST API operation List team members, including request parameters, responses, and authentication notes."
canonical: "https://hitkeep.com/api/operations/apiuserteamsidmembers/get/"
---

# List team members REST API

GET

/api/user/teams/{id}/members

FetchcURL

```
const url = 'http://127.0.0.1:25737/api/user/teams/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/members';
const options = {method: 'GET', headers: {cookie: 'hk_token=<hk_token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```
curl --request GET \
  --url http://127.0.0.1:25737/api/user/teams/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/members \
  --cookie hk_token=<hk_token>
```

-

Lists members for the specified team.

## Authorizations

- **[cookieAuth](https://hitkeep.com/api/#cookieauth)**

## Parameters

### Path Parameters

**id**

required

string format: uuid

## Responses

### 200

Team members

application/json

Array<object>

object

**added_at**

string format: date-time

**email**

string format: email

**id**

string format: uuid

**role**

string

**user_id**

string format: uuid

##### Examplegenerated

```
[
  {
    "added_at": "2026-04-15T12:00:00Z",
    "email": "hello@example.com",
    "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
    "role": "example",
    "user_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"
  }
]
```

[Previous Leave team](https://hitkeep.com/api/operations/apiuserteamsidleave/)[Next Invite team member](https://hitkeep.com/api/operations/apiuserteamsidmembers/post/)
