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

# Get members

> Get all members of a team

### Path

<ParamField path="slug" type="string" required="true">
  Team slug
</ParamField>

<RequestExample>
  ```bash Request
  curl --location 'http://localhost:3005/api/teams/acme/members' \
  --header 'Accept: application/json' \
  --header 'Authorization: Token <token>'
  ```
</RequestExample>

<ResponseExample>
  ```json Response
  {
    "data": [
      {
        "id": 2,
        "role": "OWNER",
        "email": "kiran@example.com",
        "firstName": "Kiran",
        "lastName": "K",
        "createdAt": "2023-07-03T19:16:16.408Z",
        "updatedAt": "2023-07-03T19:16:16.408Z"
      },
      {
        "id": 3,
        "role": "MEMBER",
        "email": "david@example.com",
        "firstName": "David",
        "lastName": "Douglas",
        "createdAt": "2023-07-03T19:16:16.408Z",
        "updatedAt": "2023-07-03T19:16:16.408Z"
      }
    ]
  }
  ```
</ResponseExample>
