Al-Farabi Kazakh National University user_tours API

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

Operations 5

GET /user_tours/discussion_tours/{tour_id}/ #
PUT /user_tours/discussion_tours/{tour_id}/ #
GET /user_tours/v1/{username} Retrieve the User Tour for the given username. #
PUT /user_tours/v1/{username} #
PATCH /user_tours/v1/{username} Patch the User Tour for the request.user. #

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-user-tours-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-user-tours-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Open edX User Tours 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: user_tours
paths:
  /user_tours/discussion_tours/{tour_id}/:
    get:
      operationId: user_tours_discussion_tours_read
      description: Return a list of all tours in the database.
      tags:
      - user_tours
      parameters:
      - name: tour_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
    put:
      operationId: user_tours_discussion_tours_update
      description: Update an existing tour with the data in the request body.
      tags:
      - user_tours
      parameters:
      - name: tour_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
  /user_tours/v1/{username}:
    get:
      operationId: user_tours_v1_read
      summary: Retrieve the User Tour for the given username.
      description: "Allows staff users to retrieve any user's User Tour.\n\nReturns\n    200 with the following fields:\n        course_home_tour_status (str): one of UserTour.CourseHomeChoices\n        show_courseware_tour (bool): indicates if courseware tour should be shown.\n\n    400 if there is a not allowed request (requesting a user you don't have access to)\n    401 if unauthorized request\n    403 if tours are disabled\n    404 if the UserTour does not exist (shouldn't happen, but safety first)"
      tags:
      - user_tours
      parameters:
      - name: username
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserTour'
    put:
      operationId: user_tours_v1_update
      description: Unsupported method.
      tags:
      - user_tours
      parameters:
      - name: username
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserTour'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserTour'
    patch:
      operationId: user_tours_v1_partial_update
      summary: Patch the User Tour for the request.user.
      description: Supports updating the `course_home_tour_status` and `show_courseware_tour` fields.
      tags:
      - user_tours
      parameters:
      - name: username
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserTour'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserTour'
components:
  schemas:
    UserTour:
      type: object
      properties:
        course_home_tour_status:
          title: Course home tour status
          type: string
          enum:
          - show-existing-user-tour
          - show-new-user-tour
          - no-tour
        show_courseware_tour:
          title: Show courseware tour
          type: boolean
  securitySchemes:
    Basic:
      type: http
      scheme: basic