Al-Farabi Kazakh National University course_live API

The course_live API from Al-Farabi Kazakh National University — 3 operation(s) for course_live.

Operations 4

GET /course_live/course/{course_id}/ Handle HTTP/GET requests #
POST /course_live/course/{course_id}/ Handle HTTP/POST requests #
GET /course_live/iframe/{course_id}/ #
GET /course_live/providers/{course_id}/ #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/al-farabi-kazakh-national-university-course-live-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

al-farabi-kazakh-national-university-course-live-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Open edX Course Live API
  description: APIs for access to Open edX information
  contact:
    email: dl@kaznu.kz
  version: v1
servers:
- url: https://open.kaznu.kz/api
security:
- Basic: []
tags:
- name: course_live
paths:
  /course_live/course/{course_id}/:
    get:
      operationId: course_live_course_read
      summary: Handle HTTP/GET requests
      description: Handle HTTP/GET requests
      tags:
      - course_live
      parameters:
      - name: course_id
        in: path
        required: true
        schema:
          type: string
      - name: course_id
        in: path
        required: true
        description: The course for which to get provider list
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CourseLiveConfiguration'
        '401':
          description: The requester is not authenticated.
        '403':
          description: The requester cannot access the specified course.
        '404':
          description: The requested course does not exist.
    post:
      operationId: course_live_course_create
      summary: Handle HTTP/POST requests
      description: Handle HTTP/POST requests
      tags:
      - course_live
      parameters:
      - name: course_id
        in: path
        required: true
        schema:
          type: string
      - name: course_id
        in: path
        required: true
        description: The course for which to get provider list
        schema:
          type: string
      - name: lti_1p1_client_key
        in: path
        required: true
        description: The LTI provider's client key
        schema:
          type: string
      - name: lti_1p1_client_secret
        in: path
        required: true
        description: The LTI provider's client secretL
        schema:
          type: string
      - name: lti_1p1_launch_url
        in: path
        required: true
        description: The LTI provider's launch URL
        schema:
          type: string
      - name: provider_type
        in: path
        required: true
        description: The LTI provider's launch URL
        schema:
          type: string
      - name: lti_config
        in: query
        required: false
        description: 'The lti_config object with required additional parameters '
        schema:
          type: object
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CourseLiveConfiguration'
        '400':
          description: Required parameters are missing.
        '401':
          description: The requester is not authenticated.
        '403':
          description: The requester cannot access the specified course.
        '404':
          description: The requested course does not exist.
  /course_live/iframe/{course_id}/:
    get:
      operationId: course_live_iframe_read
      description: Handle HTTP/GET requests
      tags:
      - course_live
      parameters:
      - name: course_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
  /course_live/providers/{course_id}/:
    get:
      operationId: course_live_providers_read
      description: A view for retrieving Program live IFrame .
      tags:
      - course_live
      parameters:
      - name: course_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
components:
  schemas:
    Lti:
      required:
      - lti_config
      type: object
      properties:
        lti_1p1_client_key:
          title: Lti 1p1 client key
          description: Client key provided by the LTI tool provider.
          type: string
          maxLength: 255
        lti_1p1_client_secret:
          title: Lti 1p1 client secret
          description: Client secret provided by the LTI tool provider.
          type: string
          maxLength: 255
        lti_1p1_launch_url:
          title: Lti 1p1 launch url
          description: The URL of the external tool that initiates the launch.
          type: string
          maxLength: 255
        version:
          title: Version
          type: string
          enum:
          - lti_1p1
          - lti_1p3
        lti_config:
          title: Lti config
          type: object
    CourseLiveConfiguration:
      required:
      - provider_type
      type: object
      properties:
        course_key:
          title: Course key
          type: string
          readOnly: true
          minLength: 1
        provider_type:
          title: LTI provider
          description: The LTI provider's id
          type: string
          maxLength: 50
          minLength: 1
        enabled:
          title: Enabled
          description: If disabled, the LTI in the associated course will be disabled.
          type: boolean
        lti_configuration:
          $ref: '#/components/schemas/Lti'
        pii_sharing_allowed:
          title: Pii sharing allowed
          type: string
          readOnly: true
        free_tier:
          title: Free tier
          description: True, if LTI credential are provided by Org globally
          type: boolean
  securitySchemes:
    Basic:
      type: http
      scheme: basic