---
title: Current authenticated user
description: Returns the verified Supabase Auth user resolved from the session cookie.
api_method: GET
api_path: "/v1/me"
canonical_url: https://wiblo.app/docs/developers/api/identity/get-me
last_updated: 2026-08-03T21:24:33+02:00
md_url: https://wiblo.app/docs/developers/api/identity/get-me.md
---

# Current authenticated user

`GET /v1/me`

Returns the verified Supabase Auth user resolved from the session cookie. Per-user rate-limited at 120/min. The workspace list lives at `GET /v1/workspaces`; this endpoint never embeds it.

## Request

**curl**

```bash
curl https://api.wiblo.app/v1/me \
  -H "Authorization: Bearer $WIBLO_TOKEN"
```

**TypeScript**

```ts
import { createSdk, getMe } from "@workspace/sdk"

const sdk = createSdk({ baseUrl: "https://api.wiblo.app" })

const { data, error } = await getMe({
  client: sdk,
})
```

## Responses

**`200`** — The current authenticated user. Returns `MeResponse`.

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `id` | `string` | Yes |  |
| `email` | `string \| null` | Yes |  |
| `profile` | `MeProfile` | Yes |  |

**`401`** — No valid Supabase session cookie was present. Returns `ApiErrorEnvelope`.

**`429`** — Rate limit exceeded. The body's `error.code` is `RATE_LIMITED` and `error.details.retry_after` is the same number of seconds as the `Retry-After` header. Returns `ApiErrorEnvelope`.

### The MeProfile object

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `display_name` | `string \| null` | Yes |  |
| `avatar_url` | `string \| null` | Yes |  |
| `accent_hue` | `"red" \| "coral" \| "orange" \| "green" \| "teal" \| "blue" \| ...` | Yes | Stored accent key; `null` means the monogram derives its colour from the user id hash. |
