---
title: "Read All Users"
method: GET
path: "/api/v1/users/"
tags: ["Users"]
---

# Read All Users

`GET /api/v1/users/`

Retrieve a list of users from the database with pagination.

## Query parameters

- `skip` integer
- `limit` integer

## Response `200`

Successful Response

- UsersResponse
  - `total_count` integer, required
  - `users` UserRead[], required
    - `id` string, uuid
    - `username` string, required
    - `profile_image` string, nullable, required
    - `store_api_key` string, nullable, required
    - `is_active` boolean, required
    - `is_superuser` boolean, required
    - `create_at` string, date-time, required
    - `updated_at` string, date-time, required
    - `last_login_at` string, date-time, nullable, required
    - `optins` object, nullable

## Other responses

- `422` — Validation Error

## Changes

- **2025-10-16** `9bd3e81318d7` — 3 warning, 2 info
  - deleted the `query` request parameter `search`
  - removed the optional property `detail/items/ctx` from the response with the `422` status
  - removed the optional property `detail/items/input` from the response with the `422` status
  - the endpoint scheme security `OAuth2PasswordBearer` was added to the API
  - …1 more

[Change history](https://skmtc.dev/langflow-ai/apis/langflow/changes/api/v1/users/get.md)

---

[API](https://skmtc.dev/langflow-ai/apis/langflow.md) · [All operations](https://skmtc.dev/langflow-ai/apis/langflow/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/langflow-ai/langflow/revisions/b0ee9ddb8d9f/schema)
