# List members

`GET https://api.nexus.gg/v1/manage/members`

Returns one page of the creators in a creator group, along with the group's default revenue share and code TTL.

Only active, visible members are returned. Paging starts at page 1 and returns 100 members per page unless you pass `page` or `pageSize`. Use `totalCount` to work out how many pages there are.

This method authenticates with a **public** (`nexus_pk_...`) key.

## Authorizations

- `X-SHARED-SECRET` (string, header, required) - Send your **public** API key (`nexus_pk_...`) in the `X-SHARED-SECRET` header. [Generate one](/authentication/api-keys/) in the Publisher Dashboard.

## Query parameters

- `page` (integer) - page of records to return
- `pageSize` (integer) - maximum number of records to return
- `groupId` (string) - Group to return members from.

## Responses

### 200

One page of the group's members, with the group's own settings alongside them. `totalCount` is the size of the whole result set, not of this page.

#### Body (`application/json`)

- `groupId` (string) - ID of the creator group
- `groupName` (string) - Name of the creator group
- `groupDefaultRevShare` (number) - Default revenue share percent for the creator group
- `codeTTLInDays` (number) - TTL defined for the creator group
- `currentPage` (integer)
- `currentPageSize` (integer)
- `totalCount` (integer) - Total number of referrals
- `members` (array of object)

### 400

`groupId` did not match a creator group on your publisher account.
