# List Course Keywords List the course_keywords items. Endpoint: GET /items/course_keywords Version: 1.0.0 Security: Auth ## Query parameters: - `fields` (array) Control what fields are being returned in the object. - `limit` (integer) A limit on the number of objects that are returned. - `page` (integer) Cursor for use in pagination. Often used in combination with limit. - `meta` (string) What metadata to return in the response. Enum: "total_count", "filter_count", "*" - `offset` (integer) How many items to skip when fetching data. - `sort` (array) How to sort the returned items. is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign () can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a to sort randomly. - `filter` (object) Select items in collection by given conditions. - `search` (string) Filter by items that contain the given search query in one of their fields. ## Response 200 fields (application/json): - `data` (array) - `data.id` (integer) Example: 1 - `data.name` (string,null) Example: "Softwareentwicklung" - `data.institution` (string, required) Example: "fd6dafa2-9cf9-469a-9bc9-38446ec552bc" - `meta` (object) - `meta.total_count` (integer) Returns the total item count of the collection you're querying. Example: 100 - `meta.filter_count` (integer) Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Example: 10 ## Response 401 fields (application/json): - `error` (object) - `error.code` (integer) Example: 403 - `error.message` (string) Example: "Invalid token"