# Account

## Get current user[​](#get-me "Direct link to Get current user")

GET/api/v1/me

Returns

The authenticated user. To learn which organizations the caller belongs to (and their role in each), call GET /api/v1/organizations.

`id`string · uuidrequired

The user's own id

`name`string

`email`string · emailrequired

Request

```
curl https://api.mobilenexthq.com/api/v1/me \

  -X GET \

  -H 'Authorization: Bearer mob_...'
```

Response

200401

Current user info

```
{

  "id": "string",

  "name": "string",

  "email": "string"

}
```
