Coorpacademy Slides API

The slides API from Coorpacademy — 1 operation(s) for slides.

Operations 1

GET /api/v1/review/users/{userId}/skills/{skillRef}/slide Get slide available to be reviewed for the given user and skill. #

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-slides-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-slides-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: API for Review Mode
  version: 1.0.0
  title: Review Slides API
servers:
- url: /review
tags:
- name: slides
paths:
  /api/v1/review/users/{userId}/skills/{skillRef}/slide:
    get:
      tags:
      - slides
      summary: Get slide available to be reviewed for the given user and skill.
      description: Get slide available to be reviewed for the given user and skill.
      operationId: getSlideToReview
      security:
      - token: []
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
        description: User identifier
        example: 5931704711aa953900e32d43
      - name: skillRef
        in: path
        required: true
        schema:
          type: string
        description: Skill ref
        example: skill_E1mUIKFir
      - name: limit
        in: query
        required: true
        schema:
          type: number
        description: limit, default is 1
        example: '2'
      - name: offset
        in: query
        required: true
        schema:
          type: number
        description: offset, default is 0
        example: '0'
      responses:
        '200':
          description: Available slide ref
          content:
            application/json:
              schema:
                type: string
                example: sli_41ite5TXc
components:
  securitySchemes:
    token:
      type: apiKey
      name: authorization
      in: header