---
title: "List users in a group"
method: GET
path: "/groups/{groupId}/users"
tags: ["Groups"]
---

# List users in a group

`GET /groups/{groupId}/users`

Returns active users from one group visible in the Workspace Groups UI.

Example request:

`GET /v1/groups/groupEngineering/users?limit=2`

A missing, hidden, deleted, or cross-Account group returns `404 not_found`:

```json
{
  "error": {
    "code": "not_found",
    "message": "Group not found.",
    "details": null
  }
}
```

## Path parameters

- `groupId` string, required

## Query parameters

- `limit` integer
- `cursor` string

## Response `200`

Group user list.

- GroupUserListResponse
  - `data` GroupUser[], required
    - `userId` string, required — Replit user identifier returned by the Members API.
  - `pagination` union, required
    - object
      - `cursor` string, required — Opaque cursor for the next page.
      - `hasMore` true, required
    - object
      - `cursor` unknown, required
      - `hasMore` false, required

## Other responses

- `400` — The request parameters are invalid.
- `401` — The API key is missing, malformed, unknown, revoked, or expired.
- `403` — The API key lacks the required scope or Account entitlement.
- `404` — The requested resource does not exist or is not visible to this key.
- `429` — The API key or operation exceeded its rate limit.
- `500` — The server encountered an unexpected error.
- `503` — A required API dependency is temporarily unavailable.

## Changes

> 8 revisions in range; 5 could not be searched.

- **2026-07-31** `fd00f60ae053` — 7 warning, 7 info
  - added the new `budget_update_in_progress` enum value to the `error/code` response property for the response status `400`
  - added the new `budget_update_in_progress` enum value to the `error/code` response property for the response status `401`
  - added the new `budget_update_in_progress` enum value to the `error/code` response property for the response status `403`
  - added the new `budget_update_in_progress` enum value to the `error/code` response property for the response status `404`
  - …10 more
- **2026-07-26** `213da69c2839` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/replit/apis/replit-api/changes/groups/:groupId/users/get.md)

---

[API](https://skmtc.dev/replit/apis/replit-api.md) · [All operations](https://skmtc.dev/replit/apis/replit-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/replit/replit-api/revisions/7293f5108d59/schema)
