# Users

Retrieve profile and application settings for the currently authenticated user. Use this endpoint to adapt your integration to user preferences and entitlements.

### Requirements

* **Authentication**: Bearer API token
* **Headers**:
  * `Authorization: Bearer-API YOUR_API_KEY`

### Endpoint

#### Get Current User

```http
GET /api/v1/users/me
```

## Get Current User

> Retrieves information about the currently authenticated user.

```json
{"openapi":"3.1.1","info":{"title":"Publer API","version":"1.0.0"},"tags":[{"name":"Users","description":"Endpoints for managing user accounts and authentication"}],"servers":[{"url":"https://app.publer.com/api/v1"}],"security":[{"BearerApiAuth":[]}],"components":{"securitySchemes":{"BearerApiAuth":{"type":"apiKey","name":"Authorization","in":"header","description":"API key authentication. Format: \"Bearer-API YOUR_API_KEY\""}},"schemas":{"User":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier for the user"},"email":{"type":"string","format":"email","description":"Email address of the user"},"name":{"type":"string","description":"Full name of the user"},"first_name":{"type":"string","description":"First name of the user"},"picture":{"type":"string","description":"URL to the profile picture of the user"}}},"401ErrorResponse":{"type":"object","properties":{"errors":{"type":"array","description":"List of error messages","items":{"type":"string"}}}},"403ErrorResponse":{"type":"object","properties":{"errors":{"type":"array","description":"List of error messages","items":{"type":"string"}}}}}},"paths":{"/users/me":{"get":{"summary":"Get Current User","description":"Retrieves information about the currently authenticated user.","tags":["Users"],"responses":{"200":{"description":"Successful operation","content":{"application/json":{"schema":{"$ref":"#/components/schemas/User"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/401ErrorResponse"}}}},"403":{"description":"Permission denied or missing required scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/403ErrorResponse"}}}}}}}}}
```

### Related Resources

* [Authentication](/docs/getting-started/authentication-1.md) - Managing API keys and scopes
* [Workspaces API](/docs/api-reference/workspaces.md) - Access workspace information
* [Rate Limits](/docs/getting-started/rate-limits.md) - Understanding API usage limits


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://publer.com/docs/api-reference/users.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
