# Get current user

`GET /api/v1/me`

**Example request**

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

  -X GET \

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

**Responses**

**200** — Current user info

```
{

  "userId": "string",

  "name": "string",

  "email": "string"

}
```

**401** — Missing or invalid Bearer token

```
{

  "error": {

    "code": "string",

    "message": "string"

  }

}
```
