List All Programs

GET /v1/programs

Responses

  • 200 application/json

    Program Response

    Hide response attribute Show response attribute object
    • data array[object]

      The programs details

      A program

      Hide data attributes Show data attributes object
      • admission_criteria array[object]
        Hide admission_criteria attributes Show admission_criteria attributes object
        • criterion string

          Admission criterion

        • type string

          Admission criterion type

      • audience string

        Audience

        Values are single or group.

      • degree string

        Degree

        Values are trade, federal, internal, other, or none.

      • id integer

        Program ID

      • industry_branch string

        Industry branch

        Values are gtb, kmb, ubd, or psd.

      • insertedAt string(date-time)

        Creation timestamp

      • lessons integer

        Number of lessons (UE)

      • practical_lessons integer

        Number of practical lessons (UE) -> Betriebliche Lernphase

      • program_type string

        Program type

        Values are program or module_program.

      • slug string

        Program slug

      • subject_area float

        Subject area

      • teaching_style string

        Teaching style

        Values are full_time, part_time, or next_to_work.

      • title string Required

        Program name

      • updatedAt string(date-time)

        Update timestamp

GET /v1/programs
curl \
 --request GET 'https://api.azav-pilot.de/v1/programs' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "id": "<uuid v4>",
      "slug": "zertifizierter-scrum-master",
      "title": "Zertifizierter SCRUM Master",
      "degree": "trade",
      "lessons": 0,
      "audience": "single",
      "program_type": "program",
      "subject_area": 1.1,
      "teaching_style": "full_time",
      "certified_since": "2025-05-27",
      "certified_until": "2026-05-27",
      "cost_per_lesson": 0,
      "industry_branch": "gtb",
      "cost_per_attendee": 0,
      "practical_lessons": 0,
      "admission_criteria": [
        {
          "type": "boolean",
          "criterion": "Deutschkenntnisse min. B3"
        }
      ],
      "expected_class_size": 0,
      "minimum_attendance_rate": 0
    },
    {
      "id": "<uuid v4>",
      "slug": "zertifizierter-scrum-master",
      "title": "Zertifizierter SCRUM Master",
      "degree": "trade",
      "lessons": 0,
      "audience": "single",
      "program_type": "program",
      "subject_area": 1.1,
      "teaching_style": "full_time",
      "certified_since": "2025-05-27",
      "certified_until": "2026-05-27",
      "cost_per_lesson": 0,
      "industry_branch": "gtb",
      "cost_per_attendee": 0,
      "practical_lessons": 0,
      "admission_criteria": [
        {
          "type": "boolean",
          "criterion": "Deutschkenntnisse min. B3"
        }
      ],
      "expected_class_size": 0,
      "minimum_attendance_rate": 0
    }
  ]
}