1. me
SkillForge
  • SkillForge
  • Auth
    • Register
      POST
    • Login
      POST
  • me
    • Courses
      • Enroll course
      • Get course progress
    • Units
      • Start unit
      • Complete unit
    • Get me
      GET
    • Update me
      PATCH
    • Get xp
      GET
    • Get badges
      GET
    • Get recommendations
      GET
  • Onboarding Quiz
    • Get questions
      GET
    • Save answers
      POST
  • Courses
    • Get courses
      GET
    • Get enrolled courses
      GET
    • Get course
      GET
    • Get course units
      GET
  • Units
    • Get unit
      GET
  • Schemas
    • Schemas
      • Pet
      • ApiResponse
      • Category
      • Tag
      • Order
      • User
    • UserArray
      • UserArray
  1. me

Get me

GET
/me

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost:6567/api/v1/me' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "id": "c31bd57f-17c0-407e-8dbe-136f92c4e1a9",
    "email": "test@takiyo.us",
    "displayName": "Takiyo Takahashi",
    "avatarS3Key": null,
    "bio": null,
    "roles": [
        "learner"
    ],
    "preference": {
        "userId": "c31bd57f-17c0-407e-8dbe-136f92c4e1a9",
        "darkModeEnabled": false,
        "preferredLocale": "id-ID",
        "onboardingCompleted": false,
        "updatedAt": "2026-04-06T15:03:28.303Z"
    },
    "createdAt": "2026-04-06T15:03:28.281Z",
    "lastLoginAt": "2026-04-06T15:07:43.593Z"
}
Modified at 2026-04-06 16:39:20
Previous
Complete unit
Next
Update me
Built with