---
title: "Get Lms Courses"
method: GET
path: "/api/lms/v1/courses"
tags: ["Courses"]
---

# Get Lms Courses

`GET /api/lms/v1/courses`

Returns a list of LMS Course objects.

## Query parameters

- `status` 'ACTIVE' | 'PENDING' | 'INACTIVE'
- `remote_id` string — The third-party API ID of the matching object.
- `ids` string, nullable — If provided, will only return courses with these IDs
- `categories` string, nullable — If provided, will return courses with these categories
- `skills` string, nullable — If provided, will return courses with these skills
- `instructors` string, nullable — If provided, will return courses with these instructors
- `contents` string, nullable — If provided, will return courses with these contents
- `languages` string — If provided, will return courses with these languages
- `include_raw_data` boolean — Whether to include the original data Bindbee fetched from the third-party to produce these models.
- `include_custom_fields` boolean — Whether to include custom fields in the response.
- `page_size` integer — Number of results to return per page. Maximum size is 200.
- `cursor` string — The pagination cursor value.
- `expand` string — Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. You can also specify required fields in [] for each relation name.

## Headers

- `x-connector-token` string, required

## Response `200`

Successful Response

- LmsCoursePaginatedResponse
  - `cursor` string, nullable, required — Cursor value to fetch next set of items
  - `page_size` integer, required — Indicates the count of items in the response
  - `items` LmsCourse[], required
    - `id` string, uuid, required
    - `remote_id` string, nullable, required — The third-party API ID of the matching object.
    - `modified_at` string, required — This is the datetime that this object was last updated by Bindbee
    - `raw_data` object, nullable — This is the Raw data
    - `custom_fields` object, nullable, required — The custom fields related to the model
    - `name` string, nullable — The name of the course
    - `description` string, nullable — The description of the course
    - `cover_image` string, nullable — The URL of the cover image of the course
    - `url` string, nullable — The URL of the course
    - `duration` string, nullable — The duration of the course in ISO 8601 format
    - `languages` string[], nullable — The languages of the course as locale codes (e.g. en_US, fr_FR, de_DE).
    - `categories` unknown[], nullable — The categories of the course
      - unknown
    - `contents` unknown[], nullable — The contents of the course
      - unknown
    - `skills` unknown[], nullable — The skills of the course
      - unknown
    - `instructors` unknown[], nullable — The instructors of the course
      - unknown
    - `status` 'ACTIVE' | 'PENDING' | 'INACTIVE', nullable — The status of the course. If the value is not one of the defined enum values, the original value passed through will be returned.

## Other responses

- `401` — Missing or invalid bearer authentication credentials.
- `403` — The credentials are valid but do not permit access to this resource, e.g. a connector token used on a different API category or a model whose writes are disabled.
- `422` — Validation Error
- `429` — Rate limit exceeded.

---

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