1. Units
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. Units

Get unit

Developing
GET
/units/{unitId}

Request

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

Responses

🟢200video
application/json
Body

🟢200exercise
🟢200assessment
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost:6567/api/v1/units/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - video - Example 1
{
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "courseId": "string",
    "title": "string",
    "summary": "string",
    "type": "string",
    "position": 0,
    "estimatedMinutes": 0,
    "prerequisites": [
        "string"
    ],
    "moduleContent": {
        "contentKind": "string",
        "videoUrl": "string",
        "articleMarkdown": "string",
        "subtitleS3Key": "string",
        "playbackSpeeds": [
            0
        ],
        "supportsPip": true
    }
}
Modified at 2026-04-06 16:56:33
Previous
Get course units
Next
Pet
Built with