---
title: "Get course"
method: GET
path: "/v2/courses/{id}"
tags: ["Courses"]
---

# Get course

`GET /v2/courses/{id}`

Retrieve a single course by ID.

**Required OAuth scope:** `courses:read`

## Path parameters

- `id` string, required

## Response `200`

OK

- CourseDetailResponse — JSON:API single-resource response for a course.
  - `data` CourseResource, required — JSON:API resource object for a course.
    - `type` string — Always "courses".
    - `id` string, required — Opaque course ID. Use in URL paths.
    - `attributes` CourseAttributes, required — Attributes of a course resource object.
      - `external_id` string, required — Stable UUID5 for cross-system correlation.
      - `title` string, required — Course title.
      - `short_description` string, required — Short description shown on course tiles.
      - `long_description_html` string, required — Long description as HTML content.
      - `enforce_sequential_navigation` boolean, required — If true, students must complete the current lesson before accessing the next.
      - `lesson_count` integer, required — Total number of lessons in the course.
      - `is_published` boolean, required — True if the course is published on at least one live domain.
      - `promo_image_url` string, required — Promo image URL, or "" if no image is set.
      - `average_rating` number, nullable — Average of all student ratings on the org's active rating scale, or null when no ratings exist.
      - `created_at` string, date-time, required — Course creation timestamp.
      - `modified_at` string, date-time, required — Latest update timestamp — max of the course's updated_at and any lesson's updated_at.
    - `links` object, nullable — Self and related links.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Unprocessable Entity

---

[API](https://skmtc.net/skilljar/apis/skilljar-api-v2.md) · [All operations](https://skmtc.net/skilljar/apis/skilljar-api-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/skilljar/skilljar-api-v2/revisions/f8025de20169/schema)
