Own profile
GET
/users/meRetrieve the authenticated user's own profile, including private fields such as email.
| Auth | Login required |
|---|
Response
| Field | Type | Description |
|---|---|---|
id | string | User ID |
slug | string | Unique URL slug |
firstName / lastName / nativeName | string | null | Name |
email | string | Email (self only) |
avatarUrl / coverImageUrl | string | null | Image URLs |
communities | object[] | Communities (derived) |
userLinks | object[] | External links |
Request
curl https://api.4s.link/users/me \-H "Authorization: Bearer 4s_at_..."
Example response
{"id": "a1b2c3d4-...","slug": "taro","firstName": "太郎","lastName": "山田","email": "taro@example.com","avatarUrl": "https://.../avatar.png","bio": "...","languages": ["ja", "en"],"communities": [],"userLinks": [],"displayLocale": "ja","createdAt": "2026-01-01T00:00:00.000Z","updatedAt": "2026-07-01T00:00:00.000Z"}