---
title: "Get a user"
method: GET
path: "/public/v1/users/{id}"
tags: ["User"]
---

# Get a user

`GET /public/v1/users/{id}`

Get a single team member (user) by their Distru user ID, scoped to your company.

This is a read-only endpoint and does not change anything in the system. Returns 404 if no user with that ID exists within your company — including a user that belongs to a different company, whose ID is treated as not found rather than leaked across companies. Soft-deleted users are still returned here (unlike the list endpoint, which hides them by default); a soft-deleted user comes back with a non-null `deleted_at`.

Like the list endpoint, this data is eventually consistent and may lag a recent create, update, or delete by up to ~1 second.

Required permission: `settings_permissions_manage_team`.

## Path parameters

- `id` string, required

## Response `200`

A single user

## Other responses

- `400` — Invalid parameters
- `401` — Missing or invalid API token
- `403` — The API token lacks the required permission
- `404` — Not Found

---

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