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

# Get User Profile

`GET /api/user/profile`

Get the authenticated user's profile.

Requires: JWT token (session cookie or Authorization header)

Returns:
    {
        "id": 123,
        "email": "user@example.com",
        "name": "John Doe",
        "created_at": "2025-01-15T10:30:00Z",
        "last_login": "2025-01-16T14:20:00Z"
    }

## Response `200`

Successful Response

- UserProfileResponse — Response model for user profile.
  - `id` integer, required
  - `email` string, required
  - `name` string, required
  - `created_at` string, required
  - `last_login` string, required

---

[API](https://skmtc.net/quadrillion/apis/quadrillion-cloud-api.md) · [All operations](https://skmtc.net/quadrillion/apis/quadrillion-cloud-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/quadrillion/quadrillion-cloud-api/revisions/dcf9b4550387/schema)
