For the complete documentation index, see llms.txt. This page is also available as Markdown.

Members

The people who have signed up on your site.

List members

get

Returns the API key's site members, ordered by id and paginated with an opaque cursor. Supports filtering by first name, last name, email, status, and signup date.

Authorizations
AuthorizationstringRequired

Opaque Admin API key, prefixed with ms_admin_. Pass it as Authorization: Bearer ms_admin_....

Query parameters
firstNamestringOptional

Exact match against the member's first name.

lastNamestringOptional

Exact match against the member's last name.

emailstringOptional

Exact match against the member's email.

statusstring · enumOptional

Only return members with this status.

Possible values:
createdAfterstring · date-timeOptional

Only return members created on or after this ISO 8601 date-time (inclusive).

createdBeforestring · date-timeOptional

Only return members created before this ISO 8601 date-time (exclusive).

Header parameters
X-CursorstringOptional

First item to return, usually equals the previous page response's X-Next-Cursor response header. Omit to fetch the first page. Cursors are opaque tokens — do not parse or construct them.

X-Items-Afterinteger · min: 1 · max: 100Optional

Maximum number of results to return beginning with the cursor, or if not sent the first item in the list (1-100, default 25).

Default: 25
Responses
200

Successful operation

application/json
get/members
GET /admin/v1/members HTTP/1.1
Host: api.memberspace.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
  {
    "id": 1,
    "email": "name@gmail.com",
    "firstName": "text",
    "lastName": "text",
    "status": "approved",
    "createdAt": "2026-01-01T00:00:00.000Z"
  }
]

Last updated

Was this helpful?