Klaxoon Quizzes API
Quiz activity resources and participant results
Quiz activity resources and participant results
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/klaxoon-quizzes-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Klaxoon Adventures Quizzes API
description: Klaxoon is a collaborative platform for meetings, workshops, and brainstorming. The Klaxoon API exposes activity-centric resources including quizzes, surveys, missions, and adventures, plus participant results. Authentication uses OAuth 2.0 against the Klaxoon authorization server.
version: v1
contact:
name: Klaxoon Developer Support
url: https://developers.klaxoon.com
servers:
- url: https://developers.klaxoon.com/klaxoon/api/v1
description: Klaxoon API v1 production server
security:
- OAuth2: []
tags:
- name: Quizzes
description: Quiz activity resources and participant results
paths:
/quizzes:
get:
operationId: listQuizzes
summary: List Quizzes
description: Return the list of quizzes accessible to the authenticated user.
tags:
- Quizzes
responses:
'200':
description: Successful response with quiz list
content:
application/json:
schema:
$ref: '#/components/schemas/QuizListResponse'
'401':
$ref: '#/components/responses/Unauthorized'
/quizzes/{activityId}:
get:
operationId: getQuiz
summary: Get Quiz
description: Return a single quiz by activity identifier.
tags:
- Quizzes
parameters:
- name: activityId
in: path
required: true
schema:
type: string
description: Quiz activity identifier
responses:
'200':
description: Successful response with quiz detail
content:
application/json:
schema:
$ref: '#/components/schemas/Quiz'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
/quizzes/{activityId}/participants:
get:
operationId: listQuizParticipants
summary: List Quiz Participants Results
description: Return participant results for a given quiz activity.
tags:
- Quizzes
parameters:
- name: activityId
in: path
required: true
schema:
type: string
description: Quiz activity identifier
responses:
'200':
description: Successful response with participant results
content:
application/json:
schema:
$ref: '#/components/schemas/ParticipantResultListResponse'
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
components:
schemas:
Quiz:
allOf:
- $ref: '#/components/schemas/Activity'
- type: object
properties:
questionCount:
type: integer
language:
type: string
Activity:
type: object
properties:
id:
type: string
title:
type: string
accessCode:
type: string
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
ParticipantResultListResponse:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/ParticipantResult'
ErrorResponse:
type: object
properties:
error:
type: string
message:
type: string
ParticipantResult:
type: object
properties:
participantId:
type: string
displayName:
type: string
score:
type: number
nullable: true
answers:
type: array
items:
type: object
additionalProperties: true
submittedAt:
type: string
format: date-time
nullable: true
QuizListResponse:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Quiz'
responses:
NotFound:
description: Resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
Unauthorized:
description: Missing or invalid OAuth credentials
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
securitySchemes:
OAuth2:
type: oauth2
description: OAuth 2.0 authorization-code flow against Klaxoon. Scopes are issued per integration via the Klaxoon developer portal.
flows:
authorizationCode:
authorizationUrl: https://access.klaxoon.com/auth
tokenUrl: https://access.klaxoon.com/token
scopes: {}