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

# Get the current user

> Get the Boxpressd user connected through OAuth.

This route requires both application and user authentication.

<ParamField header="x-boxpressd-key" type="string" required>
  Your developer application key.
</ParamField>

<ParamField header="Authorization" type="string" required>
  `Bearer <access-token>` with `profile:read`. The `email` field also requires `email:read`.
</ParamField>

```bash theme={null}
curl "https://api.boxpressd.com/v1/me" \
  --header "x-boxpressd-key: $BOXPRESSD_DEVELOPER_API_KEY" \
  --header "Authorization: Bearer $BOXPRESSD_ACCESS_TOKEN"
```

The response can include `id`, `displayName`, `firstName`, `lastName`, `email`, `imageUrl`, `coverUrl`, `website`, and `bio`, subject to granted scopes.
