---
title: "List all users"
method: GET
path: "/api/admin/users"
tags: ["Admin"]
---

# List all users

`GET /api/admin/users`

Get a list of all users in the system

## Response `200`

List of users

- object
  - `success` boolean — Operation success status
  - `users` object[]
    - `id` string — User ID
    - `walletAddress` string — User wallet address
    - `embeddedWalletAddress` string, nullable — User embedded wallet address
    - `privyId` string, nullable — User Privy ID
    - `isSubscribed` boolean — User subscription status
    - `name` string, nullable — User name
    - `email` string, nullable — User email
    - `status` string — User status
    - `imageUrl` string, nullable — URL to the user's image
    - `metadata` object, nullable — User metadata
    - `createdAt` string, date-time — Account creation timestamp
    - `updatedAt` string, date-time — Account update timestamp
    - `lastLoginAt` string, date-time, nullable — User last login timestamp

## Other responses

- `401` — Unauthorized - Admin authentication required
- `500` — Server error

## Changes

- **2025-09-10** `b08b5074799b` — 4 info
  - added the optional property `users/items/embeddedWalletAddress` to the response with the `200` status
  - added the optional property `users/items/isSubscribed` to the response with the `200` status
  - added the optional property `users/items/lastLoginAt` to the response with the `200` status
  - added the optional property `users/items/privyId` to the response with the `200` status
- **2025-06-30** `e0d0a475d4b6` — 4 warning
  - removed the optional property `users/items/embeddedWalletAddress` from the response with the `200` status
  - removed the optional property `users/items/isSubscribed` from the response with the `200` status
  - removed the optional property `users/items/lastLoginAt` from the response with the `200` status
  - removed the optional property `users/items/privyId` from the response with the `200` status

[Change history](https://skmtc.dev/recallnet/apis/trading-simulator-api/changes/api/admin/users/get.md)

---

[API](https://skmtc.dev/recallnet/apis/trading-simulator-api.md) · [All operations](https://skmtc.dev/recallnet/apis/trading-simulator-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/recallnet/trading-simulator-api/revisions/7a9f0e664711/schema)
