---
title: "Retrieve current user by token"
method: GET
path: "/v1/me"
tags: ["user"]
---

# Retrieve current user by token

`GET /v1/me`

Get authenticated user details for the user's token submitted in the Authorization header.

## Headers

- `X-External-Correlation-Id` string, uuid

## Response `200`

OK - Successfully retrieved user.

- User — Represents a Wise user account.
  - `id` integer — User ID.
  - `name` string, nullable — User's full name.
  - `email` string — User's email.
  - `active` boolean — If user is active or not.
  - `details` object, nullable — User details.
    - `firstName` string — User's first name.
    - `lastName` string — User's last name.
    - `phoneNumber` string — Phone number.
    - `dateOfBirth` string, date — Date of birth (YYYY-MM-DD).
    - `occupation` string — Person's occupation.
    - `avatar` string — Link to person avatar image.
    - `primaryAddress` integer — Address object ID to use in addresses endpoints.
    - `address` object — User's address.
      - `countryCode` string — Address country code in 2 digits. "US" for example.
      - `firstLine` string — Address first line.
      - `postCode` string — Address post code.
      - `city` string — Address city name.
      - `state` string — Address state code. Required if country is US, CA, AU, or BR.
      - `occupation` string — User occupation. Required for US, CA, JP.

## Other responses

- `429` — Rate limit exceeded. Retry after the number of seconds specified in the `Retry-After` header.

---

[API](https://skmtc.net/wise/apis/platform-api.md) · [All operations](https://skmtc.net/wise/apis/platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/wise/platform-api/versions/4907a1d269ab/schema)
