---
title: "Get User"
description: "Get a user by ID"
api: "GET /users/{user_id}"
---
## Request
The ID of the user, or the special value `"me"` for the currently authenticated user.
## Response
Successful response containing the user data.
```bash cURL
curl -X GET "https://api.stack-auth.com/users/USER_ID" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
```