# List courses List the courses items. Endpoint: GET /items/courses 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.title` (string,null) Example: "Backend Developer" - `data.description` (string,null) Example: "Backend developers are responsible for building the robust, scalable, and efficient systems that power our digital experiences." - `data.type` (any) - `data.institution_type` (any) - `data.target_group` (string,null) Example: "Empfänger ALG-1, ALG-2/Bürgergeld, Technik - und IT-Interessierte" - `data.requirements` (string,null) Example: "Grundlegendes Interesse an den Bereichen IT und Softwareentwicklung" - `data.link` (string,null) Example: "https://www.edtelligent.de" - `data.degree` (any) - `data.education_type` (any) - `data.institution` (string, required) Example: "fd6dafa2-9cf9-469a-9bc9-38446ec552bc" - `data.certifier` (any) - `data.subsidy` (string,null) Example: "Bis zu 100 % Förderung über einen Bildungsgutschein der Agentur für Arbeit oder dem Jobcenter." - `data.funding_comment` (string,null) Example: "Diese Weiterbildung ist gemäß AZAV durch die DEKRA als fachkundige Stelle zugelassen." - `data.digital_accessibility` (boolean,null) Example: true - `data.digital_accessibility_comment` (string,null) Example: "Digitale Barrierefreiheit" - `data.costs` (any) - `data.costs_part_time` (any) - `data.costs_comment` (string,null) Example: "Es fallen keine direkten Kosten an." - `data.systematics` (array,null) - `data.events` (array,null) - `data.keywords` (array,null) - `data.handicaps` (array,null) - `data.contacts` (array,null) - `data.federal_fundings` (array,null) - `data.region_fundings` (array,null) - `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"