Coorpacademy Scorm Slide API

The Scorm Slide API from Coorpacademy — 1 operation(s) for scorm slide.

Operations 1

GET /slide/{slideRef} Get Slide by ref #

Documentation

Specifications

Other Resources

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/coorpacademy-scorm-slide-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

coorpacademy-scorm-slide-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: API for Coorp Scorm player content
  version: 1.0.0
  title: scorm content Scorm Slide API
servers:
- url: https://api.coorpacademy.com/content-scorm
  description: production
- url: https://api-staging.coorpacademy.com/content-scorm
  description: staging
- url: http://localhost:13000
  description: local
schemes:
- https
tags:
- name: Scorm Slide
paths:
  /slide/{slideRef}:
    get:
      tags:
      - Scorm Slide
      summary: Get Slide by ref
      description: ''
      operationId: getSlideGET
      security:
      - Authorization: []
      parameters:
      - $ref: '#/components/parameters/slideRef'
      responses:
        '200':
          $ref: '#/components/responses/SlideSuccess'
        '500':
          $ref: '#/components/responses/InternalError'
components:
  parameters:
    slideRef:
      name: slideRef
      in: path
      description: id of the slide
      required: true
      schema:
        type: string
  schemas:
    slide:
      type: object
      properties:
        _id:
          type: string
        chapter_id:
          type: string
        clue:
          type: string
        eligibleForReview:
          type: boolean
        klf:
          type: string
        lessons:
          type: array
          items:
            type: object
            properties:
              _id:
                type: string
              description:
                type: string
              mediaRef:
                type: string
              mimeType:
                type: string
              poster:
                type: string
              posters:
                type: array
                items:
                  type: object
                  properties:
                    width:
                      type: number
                    height:
                      type: number
                    url:
                      type: string
              ref:
                type: string
              src:
                type: array
                items:
                  type: object
                  properties:
                    _id:
                      type: string
                    mimeType:
                      type: string
                    url:
                      type: string
              subtitles:
                type: array
                items:
                  type: object
                  properties:
                    type:
                      type: string
                    language:
                      type: string
                    url:
                      type: string
                    hls_url:
                      type: string
                    name:
                      type: string
                    default:
                      type: boolean
              type:
                type: string
              videoId:
                type: string
        meta:
          type: object
          properties:
            createdt:
              type: string
            updatedAt:
              type: string
        question:
          type: object
          properties:
            type:
              type: string
            header:
              type: string
            explanation:
              type: string
            content:
              type: object
              properties:
                choices:
                  type: array
                  items:
                    type: object
                    properties:
                      media:
                        type: object
                        properties:
                          src:
                            type: array
                            items:
                              type: object
                              properties:
                                _id:
                                  type: string
                                mimeType:
                                  type: string
                                url:
                                  type: string
                          posters:
                            type: array
                            items:
                              type: object
                              properties:
                                width:
                                  type: number
                                height:
                                  type: number
                                url:
                                  type: string
                          subtitles:
                            type: array
                            items:
                              type: object
                              properties:
                                type:
                                  type: string
                                language:
                                  type: string
                                url:
                                  type: string
                                hls_url:
                                  type: string
                                name:
                                  type: string
                                default:
                                  type: boolean
                      _id:
                        type: string
                      label:
                        type: string
                      value:
                        type: string
                      items:
                        type: array
                        items:
                          type: object
                          properties:
                            text:
                              type: string
                            value:
                              type: string
                            selected:
                              type: boolean
                answers:
                  type: array
                  items:
                    type: array
                    items:
                      type: string
        tips:
          type: string
        authors:
          type: array
          items:
            type: string
  responses:
    InternalError:
      description: InternalError
      content:
        application/json:
          schema:
            type: object
            properties:
              statusCode:
                type: number
              body:
                type: string
            example:
              statusCode: 500
              body: internal Error while resolving request
    SlideSuccess:
      description: Get slide
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/slide'
  securitySchemes:
    Authorization:
      type: apiKey
      name: Authorization
      in: header