## Get your profile `GET https://getkollek.com/api/me` Retrieve the user the token belongs to. **Returns:** A user object. ### Example request ```bash curl https://getkollek.com/api/me \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": { "type": "user", "id": "1", "attributes": { "first_name": "Monica", "last_name": "Geller", "nickname": "Mon", "email": "monica@example.com", "locale": "en", "time_format_24h": true }, "links": { "self": "https://getkollek.com/api/me" } } } ```