---
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

---

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