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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/ispring-training-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
openapi: 3.2.0
info:
title: Learn Rest Api assignments Training API
version: '3.0'
description: Assignment operations
servers:
- url: https://api-learn.ispring.com
description: Main server
security:
- bearerAuth: []
tags:
- name: training
description: Training operations
paths:
/training/{trainingId}:
get:
tags:
- training
summary: Retrieves information about training
operationId: GetTrainingById
parameters:
- name: trainingId
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Success Response
content:
application/json:
schema:
properties:
response:
$ref: '#/components/schemas/Training'
type: object
application/xml:
schema:
properties:
response:
$ref: '#/components/schemas/Training'
type: object
xml:
name: response
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/PermissionDenied'
/training/session/{trainingSessionId}:
get:
tags:
- training
summary: Retrieves training session information
operationId: GetTrainingSession
parameters:
- name: trainingSessionId
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Success Response
content:
application/json:
schema:
properties:
response:
$ref: '#/components/schemas/TrainingSession'
type: object
application/xml:
schema:
properties:
response:
$ref: '#/components/schemas/TrainingSession'
type: object
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/PermissionDenied'
'404':
description: Session not found
content:
text/plain:
schema:
type: string
example: Training session not found
/training/{trainingId}/sessions:
get:
tags:
- training
summary: Retrieves information about sessions by training id
operationId: ListSessionsByTrainingId
parameters:
- name: trainingId
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Success Response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/TrainingSession'
application/xml:
schema:
type: array
items:
$ref: '#/components/schemas/TrainingSession'
xml:
name: response
wrapped: true
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/PermissionDenied'
'404':
description: Session not found
/training/day/{dayId}:
get:
tags:
- training
summary: Retrieves session day information
operationId: GetDay
parameters:
- name: dayId
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Success Response
content:
application/json:
schema:
properties:
response:
$ref: '#/components/schemas/Day'
type: object
application/xml:
schema:
properties:
response:
$ref: '#/components/schemas/Day'
type: object
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/PermissionDenied'
'404':
description: Day not found
content:
text/plain:
schema:
type: string
example: Day not found
post:
tags:
- training
summary: Update day url
operationId: UpdateDay
parameters:
- name: dayId
in: path
required: true
schema:
type: string
format: uuid
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateDay'
application/xml:
schema:
$ref: '#/components/schemas/UpdateDay'
responses:
'200':
description: Success Response
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/PermissionDenied'
'404':
description: Day not found
/training/session/participants/{sessionId}:
get:
tags:
- training
summary: Retrieves information about participants by session id
operationId: ListSessionParticipants
parameters:
- $ref: '#/components/parameters/pageToken'
- $ref: '#/components/parameters/pageSize'
- name: sessionId
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Success Response
content:
application/json:
schema:
type: array
items:
type: string
format: uuid
application/xml:
schema:
type: array
items:
type: string
format: uuid
xml:
name: response
wrapped: true
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/PermissionDenied'
'404':
description: Session not found
/training/day/{dayId}/participants/attendance/update:
post:
tags:
- training
summary: Updates participants attendance by day
operationId: UpdateDayParticipantsAttendance
parameters:
- name: dayId
in: path
required: true
schema:
type: string
format: uuid
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateDayParticipantsAttendanceRequest'
application/xml:
schema:
$ref: '#/components/schemas/UpdateDayParticipantsAttendanceRequest'
responses:
'200':
description: Success Response
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/PermissionDenied'
'404':
description: Day not found
components:
schemas:
TrainingSession:
required:
- id
- title
- startTime
- duration
- dayIds
properties:
id:
type: string
format: uuid
title:
type: string
startTime:
type: string
format: datetime
duration:
type: integer
instructor:
type: string
dayIds:
$ref: '#/components/schemas/ArrayOfIds'
type: object
xml:
name: trainingSession
UpdateDay:
properties:
url:
type: string
type: object
xml:
name: request
ArrayOfIds:
type: array
items:
type: string
format: uuid
xml:
name: id
xml:
wrapped: true
UpdateDayParticipantsAttendanceRequest:
properties:
participantsAttendance:
type: array
items:
$ref: '#/components/schemas/TrainingParticipantAttendance'
type: object
xml:
name: request
ErrorResponse:
required:
- code
- message
properties:
code:
type: integer
message:
type: string
type: object
xml:
name: response
TrainingParticipantAttendance:
required:
- participantId
- isAttended
properties:
participantId:
type: string
format: uuid
isAttended:
type: boolean
duration:
description: Duration in seconds
type: integer
type: object
xml:
name: trainingParticipantAttendance
Training:
required:
- title
- organizer
- sessions
- type
properties:
title:
type: string
organizer:
type: string
format: uuid
sessions:
$ref: '#/components/schemas/ArrayOfIds'
type:
type: string
type: object
xml:
name: training
Day:
required:
- dayId
- sessionId
- trainingId
- startTime
properties:
dayId:
type: string
format: uuid
sessionId:
type: string
format: uuid
trainingId:
type: string
format: uuid
startTime:
type: string
format: datetime
duration:
description: Duration in seconds
type: integer
location:
type: string
url:
type: string
type: object
xml:
name: Day
responses:
Unauthorized:
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
application/xml:
schema:
$ref: '#/components/schemas/ErrorResponse'
PermissionDenied:
description: Permission Denied
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
application/xml:
schema:
$ref: '#/components/schemas/ErrorResponse'
BadRequest:
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
application/xml:
schema:
$ref: '#/components/schemas/ErrorResponse'
parameters:
pageToken:
name: pageToken
in: query
required: false
schema:
type: string
pageSize:
name: pageSize
in: query
required: false
schema:
type: integer
securitySchemes:
bearerAuth:
type: http
scheme: bearer