---
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
- `search` string, nullable

## Response `200`

Successful Response

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

## Other responses

- `422` — Validation Error

---

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