GET
/
v1
/
courses
/
{id}
Course details
curl --request GET \
  --url https://api.kajabi.com/v1/courses/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "<string>",
    "attributes": {
      "created_at": "2023-11-07T05:31:56Z",
      "title": "<string>",
      "description": "<string>",
      "thumbnail_url": "<string>"
    },
    "relationships": {
      "site": {
        "data": {
          "id": "<string>",
          "type": "<string>"
        }
      },
      "offers": {
        "data": [
          {
            "id": "<string>",
            "type": "<string>"
          }
        ]
      },
      "modules": {
        "data": [
          {
            "id": "<string>",
            "type": "<string>"
          }
        ]
      },
      "lessons": {
        "data": [
          {
            "id": "<string>",
            "type": "<string>"
          }
        ]
      }
    }
  },
  "links": {
    "self": "<string>",
    "current": "<string>"
  },
  "included": [
    {
      "id": "<string>",
      "type": "<string>",
      "attributes": {
        "title": "<string>",
        "description": "<string>",
        "internal_title": "<string>",
        "currency": "<string>",
        "price_in_cents": 123,
        "payment_type": "<string>",
        "token": "<string>",
        "payment_method": "<string>",
        "price_description": "<string>",
        "checkout_url": "<string>",
        "recurring_offer": true,
        "subscription": true,
        "one_time": true,
        "single": true,
        "free": true,
        "image_url": "<string>"
      },
      "relationships": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Query Parameters

include
string

Load the related resources, for example ?include=modules,lessons,lessons.media

Response

Success, shows details of a course

data
object
included
object[]