> ## Documentation Index
> Fetch the complete documentation index at: https://docs.comfycontrol.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Get User Profile

> Retrieve your user profile information

## Overview

Retrieve your authenticated user profile information, including account details and subscription tier.

## Response

<ResponseField name="id" type="string" required>
  Unique identifier (UUID) for the user.
</ResponseField>

<ResponseField name="name" type="string" required>
  User's display name.
</ResponseField>

<ResponseField name="email" type="string" required>
  User's email address.
</ResponseField>

<ResponseField name="deleted" type="boolean" required>
  Whether the account has been marked for deletion.
</ResponseField>

<ResponseField name="tier" type="string" required>
  Current subscription tier.

  Possible values: `free`, `pro`, `plus`, `enterprise`
</ResponseField>

<ResponseField name="provider" type="string" required>
  Authethentication provider.

  Possible values: `github`, `google`
</ResponseField>

<ResponseField name="created_at" type="string" required>
  ISO 8601 timestamp when the account was created.
</ResponseField>

<ResponseField name="updated_at" type="string" required>
  ISO 8601 timestamp when the account was last updated.
</ResponseField>

## Example Response

```json theme={null}
{
  "id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
  "name": "John Doe",
  "email": "john@example.com",
  "deleted": false,
  "tier": "pro",
  "created_at": "2024-01-01T00:00:00Z",
  "updated_at": "2024-01-15T10:30:00Z"
}
```

## Error Responses

<ResponseField name="401" type="error">
  Unauthorized - invalid or missing authentication token.
</ResponseField>

## Notes

* Returns information about the authenticated user
* Use this endpoint to verify authentication and check current tier
* Tier information determines access to managed runners and resource limits
