Epignosis (TalentLMS, eFront, TalentCards) Catalog API

The Catalog API from Epignosis (TalentLMS, eFront, TalentCards) — 1 operation(s) for catalog.

Operations 1

GET /User/{Id}/Catalog/

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/epignosis-talentlms-efront-talentcards-catalog-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

epignosis-talentlms-efront-talentcards-catalog-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Efront Account Catalog API
  description: Efront API Documentation
servers:
- url: https://virtserver.swaggerhub.com/Epignosis/Efront-API/1.0.0
  description: SwaggerHub API Auto Mocking
- url: https://ssc.efrontlearning.com/API/v1.0
security:
- basicAuth: []
tags:
- name: Catalog
paths:
  /User/{Id}/Catalog/:
    get:
      tags:
      - Catalog
      description: Returns the course catalog list for a given user.
      parameters:
      - $ref: '#/components/parameters/Id'
      responses:
        '200':
          description: A JSON array with the requested user's catalog.
          content:
            application/json:
              schema:
                allOf:
                - type: object
                  properties:
                    data:
                      type: array
                      items:
                        type: object
                        properties:
                          id:
                            $ref: '#/components/schemas/id'
                          name:
                            type: string
                          can_edit:
                            type: boolean
                          formatted_name:
                            type: string
                          price:
                            $ref: '#/components/schemas/price'
                          cancellation_fee:
                            $ref: '#/components/schemas/price'
                          track_price:
                            $ref: '#/components/schemas/booleanInteger'
                          description:
                            type: string
                            description: Full description including html attributes
                          categories_ID:
                            $ref: '#/components/schemas/id'
                          category_name:
                            type: string
                          avatar:
                            $ref: '#/components/schemas/avatar'
                          price_string:
                            type: string
                            example: <span class = "normalPrice">&euro;0 </span>
                          type:
                            type: string
                            example: course
                          course_type:
                            type: string
                            example: ilt
                          public_id:
                            $ref: '#/components/schemas/public_id'
                          has_dependency:
                            type: boolean
                          has_course:
                            type: boolean
                          has_curriculum:
                            type: boolean
                          last_update_on:
                            $ref: '#/components/schemas/timestampNullable'
                          mean_rate:
                            type:
                            - number
                            - 'null'
                            format: float
                            minimum: 1
                            maximum: 5
                          tags:
                            type:
                            - object
                            - 'null'
                            properties:
                              ascendingNumber:
                                type: string
                                description: The name of each tag.
                        additionalProperties:
                          $ref: '#/components/schemas/extended-fields'
                - $ref: '#/components/schemas/standardResponse'
        '400':
          $ref: '#/components/responses/errorResponse'
components:
  schemas:
    price:
      type:
      - number
      - 'null'
      format: double
    avatar:
      type:
      - object
      - 'null'
      properties:
        small:
          type: string
          description: The path url of the small size avatar.
        medium:
          type: string
          description: The path url of the medium size avatar.
        large:
          type: string
          description: The path url of the large size avatar.
    public_id:
      type: string
      format: byte
      example: 2533fc15d4-2c9c7a85d0
    timestampNullable:
      type:
      - integer
      - 'null'
      format: int32
      minimum: 0
      example: 1606908264
    extended-fields:
      description: Possible extended profile fields
      anyOf:
      - type: string
        example:
          tax_id: '503493'
      - type: array
        items:
          type: string
      - type: boolean
        example:
          isOperator: true
    id:
      type: integer
      format: int32
      minimum: 1
      description: The resource id.
    booleanInteger:
      type: integer
      format: int32
      enum:
      - 0
      - 1
      minLength: 1
    standardResponse:
      type: object
      properties:
        executionDuration:
          type: number
          format: float
          example: 0.5281
        success:
          type: boolean
          enum:
          - true
          - false
        version:
          type: number
          format: float
          default: '1.0'
  responses:
    errorResponse:
      description: Bad request
      content:
        application/json:
          schema:
            allOf:
            - type: object
              properties:
                error:
                  type: object
                  properties:
                    code:
                      type: integer
                      description: same as the response code
                      minimum: 400
                      default: 400
                    message:
                      type: string
                      description: A message that points out that something went wrong.
                      example: Not possible to get the requested resource information.
                    reason:
                      type:
                      - string
                      - 'null'
            - $ref: '#/components/schemas/standardResponse'
  parameters:
    Id:
      name: Id
      in: path
      required: true
      style: simple
      explode: false
      schema:
        minimum: 1
        type: integer
        format: int32
        example: 1
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic