---
title: "Get User"
method: GET
path: "/user"
tags: ["user"]
---

# Get User

`GET /user`

Retrieves information about the authenticated user, including their ID, name, email, and account metadata.

## Response `200`

Success

- UserSummarySchema — Details of the authenticated user, including profile and contact information.
  - `id` string, required — A unique identifier for the user.
  - `object` 'user', required — Fixed value identifying this object as a user.
  - `name` string — Optional full name of the user.
  - `email` string, required — The user's email address.
  - `avatar` string, required — URL to the user's avatar image.
  - `createdAt` string, date-time, required — The ISO timestamp representing when the user was created.
  - `updatedAt` string, date-time — The ISO timestamp of the last update to the user.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `409` — Conflict
- `413` — Payload Too Large
- `422` — Unprocessable Entity
- `429` — Too Many Requests
- `500` — Internal Server Error

## Changes

- **2025-10-23** `bcf554284606` — 2 info
  - added the optional property `updatedAt` to the response with the `200` status
  - added the required property `createdAt` to the response with the `200` status
- **2025-08-24** `3521652a43a7` — 1 breaking, 1 warning
  - removed the required property `createdAt` from the response with the `200` status
  - removed the optional property `updatedAt` from the response with the `200` status

[Change history](https://skmtc.dev/vercel/apis/v0-platform-api-beta/changes/user/get.md)

---

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