Coorpacademy Recommendations API

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

Operations 1

GET /v2/recommendations/hero Get Hero recommendation #

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-recommendations-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-recommendations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: API to manage CoorpAcademy progression
  version: 2.455.0
  title: progression Recommendations API
servers:
- url: https://progression.coorpacademy.com/api
tags:
- name: recommendations
paths:
  /v2/recommendations/hero:
    get:
      tags:
      - recommendations
      summary: Get Hero recommendation
      description: Get Hero recommendation
      operationId: heroRecommendationFromDynamodbGET
      security:
      - authentication: []
      parameters:
      - name: minNbSlides
        in: query
        required: false
        schema:
          type: number
      - name: success
        in: query
        required: false
        schema:
          type: boolean
      - name: from[sortKey]
        in: query
        required: false
        schema:
          type: string
      - name: from[partitionKey]
        in: query
        required: false
        schema:
          type: string
      - name: from[updatedAt]
        in: query
        required: false
        schema:
          type: string
      - name: limit
        in: query
        required: false
        schema:
          type: number
      responses:
        '200':
          description: Get Hero recommendation
          content:
            application/json:
              schema:
                type: object
                additionalProperties: false
                required:
                - hits
                properties:
                  hits:
                    type: array
                    items:
                      $ref: '#/components/schemas/HeroRecommendation'
                  lastEvaluatedKey:
                    type: number
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-swagger-router-controller: recommendations
components:
  schemas:
    HeroRecommendation:
      type: object
      required:
      - success
      - content
      - nbSlides
      - updatedAt
      - progressionId
      properties:
        success:
          type: boolean
        content:
          $ref: '#/components/schemas/Content'
        nbSlides:
          type: integer
        updatedAt:
          type: string
          format: date-time
        progressionId:
          type: string
    Content:
      type: object
      additionalProperties: false
      required:
      - ref
      - type
      description: Content information related to the progression
      properties:
        ref:
          type: string
          description: Content ref
        type:
          type: string
          description: 'Content type: chapter, level, discipline, resource (video, pdf)'
        version:
          type: string
          description: Version of the given content
    Error:
      type: object
      properties:
        id:
          type: string
        code:
          type: string
        errors:
          type: array
          items:
            type: object
        success:
          type: boolean
        status:
          type: integer
        message:
          type: string
  responses:
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    authentication:
      type: apiKey
      name: authentication
      in: header