Kaltura report API

The report API from Kaltura — 12 operation(s) for report.

Operations 12

POST /service/report/action/get #
POST /service/report/action/list #
POST /service/report/action/execute #
POST /service/report/action/exportToCsv #
POST /service/report/action/getBaseTotal #
POST /service/report/action/getCsv #
POST /service/report/action/getCsvFromStringParams #
POST /service/report/action/getGraphs #
POST /service/report/action/getTable #
POST /service/report/action/getTotal #
POST /service/report/action/getUrlForReportAsCsv #
POST /service/report/action/serve #

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/kaltura-report-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

kaltura-report-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: The Kaltura OTT API
  title: Kaltura OTT accessControl Report API
  version: 3.6.287.20720
servers:
- url: https://tvpapi-us-preprod.ott.kaltura.com/api_v3
- url: http://tvpapi-us-preprod.ott.kaltura.com/api_v3
security:
- ks: []
tags:
- name: report
paths:
  /service/report/action/get:
    post:
      description: Return a device configuration retrieval log request for a specific device.
      operationId: report.get
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KalturaReport'
            text/xml:
              schema:
                $ref: '#/components/schemas/KalturaReport'
        x-Errors:
          description: ''
      tags:
      - report
      x-kaltura-format: post
      x-kaltura-parameters:
      - udid
      requestBody:
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/OTTRequest'
              properties:
                udid:
                  type: string
              type: object
  /service/report/action/list:
    post:
      description: Return device configurations retrieval log. Supports paging and can be filtered with the parameter "FromData".
      operationId: report.list
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KalturaReportListResponse'
            text/xml:
              schema:
                $ref: '#/components/schemas/KalturaReportListResponse'
        x-Errors:
          description: ''
      tags:
      - report
      x-kaltura-format: post
      x-kaltura-parameters:
      - filter
      - pager
      requestBody:
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/OTTRequest'
              properties:
                filter:
                  $ref: '#/components/schemas/KalturaReportFilter'
                pager:
                  $ref: '#/components/schemas/KalturaFilterPager'
              type: object
  /service/report/action/execute:
    post:
      operationId: report.execute
      parameters:
      - $ref: '#/components/parameters/ks'
      - $ref: '#/components/parameters/format'
      - $ref: '#/components/parameters/clientTag'
      - $ref: '#/components/parameters/partnerId'
      - $ref: '#/components/parameters/language'
      - $ref: '#/components/parameters/responseProfile'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KalturaReportResponse'
            text/xml:
              schema:
                $ref: '#/components/schemas/KalturaReportResponse'
      tags:
      - report
      x-kaltura-format: post
      x-kaltura-parameters:
      - id
      - params
      requestBody:
        content:
          application/json:
            schema:
              properties:
                id:
                  type: integer
                params:
                  items:
                    $ref: '#/components/schemas/KalturaKeyValue'
                  type: array
              required:
              - id
              type: object
  /service/report/action/exportToCsv:
    post:
      operationId: report.exportToCsv
      parameters:
      - $ref: '#/components/parameters/ks'
      - $ref: '#/components/parameters/format'
      - $ref: '#/components/parameters/clientTag'
      - $ref: '#/components/parameters/partnerId'
      - $ref: '#/components/parameters/language'
      - $ref: '#/components/parameters/responseProfile'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KalturaReportExportResponse'
            text/xml:
              schema:
                $ref: '#/components/schemas/KalturaReportExportResponse'
      tags:
      - report
      x-kaltura-format: post
      x-kaltura-parameters:
      - params
      requestBody:
        content:
          application/json:
            schema:
              properties:
                params:
                  $ref: '#/components/schemas/KalturaReportExportParams'
              required:
              - params
              type: object
  /service/report/action/getBaseTotal:
    post:
      description: report getBaseTotal action allows to get the total base for storage reports
      operationId: report.getBaseTotal
      parameters:
      - $ref: '#/components/parameters/ks'
      - $ref: '#/components/parameters/format'
      - $ref: '#/components/parameters/clientTag'
      - $ref: '#/components/parameters/partnerId'
      - $ref: '#/components/parameters/language'
      - $ref: '#/components/parameters/responseProfile'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/KalturaReportBaseTotal'
                type: array
            text/xml:
              schema:
                items:
                  $ref: '#/components/schemas/KalturaReportBaseTotal'
                type: array
      tags:
      - report
      x-kaltura-format: post
      x-kaltura-parameters:
      - reportType
      - reportInputFilter
      - objectIds
      - responseOptions
      requestBody:
        content:
          application/json:
            schema:
              properties:
                objectIds:
                  type: string
                reportInputFilter:
                  $ref: '#/components/schemas/KalturaReportInputFilter'
                reportType:
                  enum:
                  - quiz.QUIZ
                  - quiz.QUIZ_AGGREGATE_BY_QUESTION
                  - quiz.QUIZ_USER_AGGREGATE_BY_QUESTION
                  - quiz.QUIZ_USER_PERCENTAGE
                  - '1'
                  - '2'
                  - '3'
                  - '4'
                  - '5'
                  - '6'
                  - '7'
                  - '11'
                  - '12'
                  - '13'
                  - '14'
                  - '15'
                  - '16'
                  - '17'
                  - '18'
                  - '19'
                  - '20'
                  - '21'
                  - '22'
                  - '23'
                  - '24'
                  - '25'
                  - '26'
                  - '27'
                  - '28'
                  - '29'
                  - '30'
                  - '32'
                  - '33'
                  - '34'
                  - '35'
                  - '36'
                  - '37'
                  - '38'
                  - '39'
                  - '40'
                  - '41'
                  - '42'
                  - '43'
                  - '44'
                  - '45'
                  - '46'
                  - '47'
                  - '48'
                  - '49'
                  - '50'
                  - '51'
                  - '52'
                  - '53'
                  - '54'
                  - '55'
                  - '56'
                  - '57'
                  - '58'
                  - '59'
                  - '60'
                  - '61'
                  - '62'
                  - '63'
                  - '64'
                  - '65'
                  - '66'
                  - '67'
                  - '201'
                  - '10001'
                  - '10002'
                  - '10003'
                  - '10004'
                  - '10005'
                  - '10006'
                  - '10007'
                  - '10008'
                  - '10009'
                  - '10010'
                  - '10011'
                  - '10012'
                  - '10013'
                  - '10014'
                  - '10015'
                  - '20001'
                  - '20002'
                  - '20003'
                  - '20004'
                  - '20005'
                  - '20006'
                  - '20007'
                  - '20008'
                  - '20009'
                  - '20010'
                  - '20011'
                  - '20012'
                  - '20013'
                  - '20014'
                  - '20015'
                  - '20016'
                  - '20017'
                  - '20018'
                  - '20019'
                  - '20020'
                  - '20021'
                  - '20022'
                  - '20023'
                  - '30001'
                  - '30002'
                  - '30003'
                  - '30004'
                  - '30005'
                  - '30006'
                  - '30007'
                  - '30008'
                  - '30009'
                  - '30010'
                  - '30011'
                  - '30012'
                  - '30013'
                  - '30014'
                  - '30015'
                  - '30016'
                  - '30017'
                  - '30018'
                  - '30019'
                  - '30020'
                  - '30021'
                  - '30022'
                  - '30023'
                  - '30024'
                  - '30025'
                  - '30026'
                  - '30027'
                  - '30028'
                  - '30029'
                  - '30030'
                  - '30031'
                  - '30032'
                  - '30033'
                  - '30034'
                  - '30035'
                  - '30036'
                  - '30037'
                  - '30038'
                  - '30039'
                  - '30040'
                  - '30041'
                  - '30042'
                  - '30043'
                  - '30044'
                  - '30045'
                  - '30046'
                  - '30047'
                  - '30048'
                  - '30049'
                  - '30050'
                  - '30051'
                  - '30052'
                  - '30053'
                  - '30054'
                  - '30055'
                  - '30056'
                  - '30057'
                  - '30058'
                  - '30059'
                  - '30060'
                  - '30061'
                  - '30062'
                  - '30063'
                  - '30064'
                  - '40001'
                  - '40002'
                  - '40003'
                  - '40004'
                  - '40005'
                  - '40006'
                  - '40007'
                  - '40008'
                  - '40009'
                  - '40010'
                  - '40011'
                  - '40012'
                  - '40013'
                  - '50000'
                  - '50001'
                  - '50002'
                  - '50003'
                  - '50004'
                  - '50005'
                  type: string
                  x-enumLabels:
                  - QUIZ
                  - QUIZ_AGGREGATE_BY_QUESTION
                  - QUIZ_USER_AGGREGATE_BY_QUESTION
                  - QUIZ_USER_PERCENTAGE
                  - TOP_CONTENT
                  - CONTENT_DROPOFF
                  - CONTENT_INTERACTIONS
                  - MAP_OVERLAY
                  - TOP_CONTRIBUTORS
                  - TOP_SYNDICATION
                  - CONTENT_CONTRIBUTIONS
                  - USER_ENGAGEMENT
                  - SPECIFIC_USER_ENGAGEMENT
                  - USER_TOP_CONTENT
                  - USER_CONTENT_DROPOFF
                  - USER_CONTENT_INTERACTIONS
                  - APPLICATIONS
                  - USER_USAGE
                  - SPECIFIC_USER_USAGE
                  - VAR_USAGE
                  - TOP_CREATORS
                  - PLATFORMS
                  - OPERATING_SYSTEM
                  - BROWSERS
                  - LIVE
                  - TOP_PLAYBACK_CONTEXT
                  - VPAAS_USAGE
                  - ENTRY_USAGE
                  - REACH_USAGE
                  - TOP_CUSTOM_VAR1
                  - MAP_OVERLAY_CITY
                  - OPERATING_SYSTEM_FAMILIES
                  - BROWSERS_FAMILIES
                  - USER_ENGAGEMENT_TIMELINE
                  - UNIQUE_USERS_PLAY
                  - MAP_OVERLAY_COUNTRY
                  - MAP_OVERLAY_REGION
                  - TOP_CONTENT_CREATOR
                  - TOP_CONTENT_CONTRIBUTORS
                  - APP_DOMAIN_UNIQUE_ACTIVE_USERS
                  - TOP_SOURCES
                  - VPAAS_USAGE_MULTI
                  - PERCENTILES
                  - CONTENT_REPORT_REASONS
                  - PLAYER_RELATED_INTERACTIONS
                  - PLAYBACK_RATE
                  - TOP_USER_CONTENT
                  - USER_HIGHLIGHTS
                  - USER_INTERACTIVE_VIDEO
                  - INTERACTIVE_VIDEO_TOP_NODES
                  - LATEST_PLAYED_ENTRIES
                  - CATEGORY_HIGHLIGHTS
                  - SUB_CATEGORIES
                  - INTERACTIVE_VIDEO_NODE_TOP_HOTSPOTS
                  - INTERCATIVE_VIDEO_NODE_SWITCH_TOP_HOTSPOTS
                  - INTERACTIVE_VIDEO_HOTSPOT_CLICKED_PERCENTILES
                  - INTERACTIVE_VIDEO_NODE_SWITCH_HOTSPOT_CLICKED_PERCENTILES
                  - TOP_CUSTOM_VAR2
                  - TOP_CUSTOM_VAR3
                  - SELF_SERVE_USAGE
                  - FLAVOR_PARAMS_TRANSCODING_USAGE
                  - PLAYER_HIGHLIGHTS
                  - PARTNER_USAGE_HIGHLIGHTS
                  - CDN_BANDWIDTH_USAGE
                  - REACH_CATALOG_USAGE
                  - REACH_PROFILE_USAGE
                  - SELF_SERVE_BANDWIDTH
                  - PARTNER_USAGE
                  - MAP_OVERLAY_COUNTRY_REALTIME
                  - MAP_OVERLAY_REGION_REALTIME
                  - MAP_OVERLAY_CITY_REALTIME
                  - PLATFORMS_REALTIME
                  - USERS_OVERVIEW_REALTIME
                  - QOS_OVERVIEW_REALTIME
                  - DISCOVERY_REALTIME
                  - ENTRY_LEVEL_USERS_DISCOVERY_REALTIME
                  - ENTRY_LEVEL_USERS_STATUS_REALTIME
                  - PLATFORMS_DISCOVERY_REALTIME
                  - PLAYBACK_TYPE_REALTIME
                  - CONTENT_REALTIME
                  - DISCOVERY_VIEW_REALTIME
                  - TOP_ENDED_BROADCAST_ENTRIES
                  - TOP_LIVE_NOW_ENTRIES
                  - CONTENT_DROPOFF_VPAAS
                  - TOP_SYNDICATION_VPAAS
                  - USER_TOP_CONTENT_VPAAS
                  - USER_USAGE_VPAAS
                  - PLATFORMS_VPAAS
                  - OPERATING_SYSTEM_VPAAS
                  - BROWSERS_VPAAS
                  - OPERATING_SYSTEM_FAMILIES_VPAAS
                  - BROWSERS_FAMILIES_VPAAS
                  - USER_ENGAGEMENT_TIMELINE_VPAAS
                  - UNIQUE_USERS_PLAY_VPAAS
                  - MAP_OVERLAY_COUNTRY_VPAAS
                  - MAP_OVERLAY_REGION_VPAAS
                  - MAP_OVERLAY_CITY_VPAAS
                  - TOP_CONTENT_CREATOR_VPAAS
                  - TOP_CONTENT_CONTRIBUTORS_VPAAS
                  - TOP_SOURCES_VPAAS
                  - CONTENT_REPORT_REASONS_VPAAS
                  - PLAYER_RELATED_INTERACTIONS_VPAAS
                  - PLAYBACK_RATE_VPAAS
                  - PARTNER_USAGE_VPAAS
                  - TOP_PLAYBACK_CONTEXT_VPAAS
                  - SELF_SERVE_USAGE_VPAAS
                  - QOE_OVERVIEW
                  - QOE_EXPERIENCE
                  - QOE_EXPERIENCE_PLATFORMS
                  - QOE_EXPERIENCE_COUNTRY
                  - QOE_EXPERIENCE_REGION
                  - QOE_EXPERIENCE_CITY
                  - QOE_EXPERIENCE_BROWSERS_FAMILIES
                  - QOE_EXPERIENCE_BROWSERS
                  - QOE_EXPERIENCE_OPERATING_SYSTEM_FAMILIES
                  - QOE_EXPERIENCE_OPERATING_SYSTEM
                  - QOE_EXPERIENCE_PLAYER_VERSION
                  - QOE_EXPERIENCE_ENTRY
                  - QOE_EXPERIENCE_ISP
                  - QOE_ENGAGEMENT
                  - QOE_ENGAGEMENT_PLATFORMS
                  - QOE_ENGAGEMENT_COUNTRY
                  - QOE_ENGAGEMENT_REGION
                  - QOE_ENGAGEMENT_CITY
                  - QOE_ENGAGEMENT_BROWSERS_FAMILIES
                  - QOE_ENGAGEMENT_BROWSERS
                  - QOE_ENGAGEMENT_OPERATING_SYSTEM_FAMILIES
                  - QOE_ENGAGEMENT_OPERATING_SYSTEM
                  - QOE_ENGAGEMENT_PLAYER_VERSION
                  - QOE_ENGAGEMENT_ENTRY
                  - QOE_ENGAGEMENT_ISP
                  - QOE_STREAM_QUALITY
                  - QOE_STREAM_QUALITY_PLATFORMS
                  - QOE_STREAM_QUALITY_COUNTRY
                  - QOE_STREAM_QUALITY_REGION
                  - QOE_STREAM_QUALITY_CITY
                  - QOE_STREAM_QUALITY_BROWSERS_FAMILIES
                  - QOE_STREAM_QUALITY_BROWSERS
                  - QOE_STREAM_QUALITY_OPERATING_SYSTEM_FAMILIES
                  - QOE_STREAM_QUALITY_OPERATING_SYSTEM
                  - QOE_STREAM_QUALITY_PLAYER_VERSION
                  - QOE_STREAM_QUALITY_ENTRY
                  - QOE_STREAM_QUALITY_ISP
                  - QOE_ERROR_TRACKING
                  - QOE_ERROR_TRACKING_CODES
                  - QOE_ERROR_TRACKING_PLATFORMS
                  - QOE_ERROR_TRACKING_BROWSERS_FAMILIES
                  - QOE_ERROR_TRACKING_BROWSERS
                  - QOE_ERROR_TRACKING_OPERATING_SYSTEM_FAMILIES
                  - QOE_ERROR_TRACKING_OPERATING_SYSTEM
                  - QOE_ERROR_TRACKING_PLAYER_VERSION
                  - QOE_ERROR_TRACKING_ENTRY
                  - QOE_VOD_SESSION_FLOW
                  - QOE_LIVE_SESSION_FLOW
                  - QOE_EXPERIENCE_CUSTOM_VAR1
                  - QOE_EXPERIENCE_CUSTOM_VAR2
                  - QOE_EXPERIENCE_CUSTOM_VAR3
                  - QOE_ENGAGEMENT_CUSTOM_VAR1
                  - QOE_ENGAGEMENT_CUSTOM_VAR2
                  - QOE_ENGAGEMENT_CUSTOM_VAR3
                  - QOE_STREAM_QUALITY_CUSTOM_VAR1
                  - QOE_STREAM_QUALITY_CUSTOM_VAR2
                  - QOE_STREAM_QUALITY_CUSTOM_VAR3
                  - QOE_ERROR_TRACKING_CUSTOM_VAR1
                  - QOE_ERROR_TRACKING_CUSTOM_VAR2
                  - QOE_ERROR_TRACKING_CUSTOM_VAR3
                  - QOE_EXPERIENCE_APPLICATION_VERSION
                  - QOE_ENGAGEMENT_APPLICATION_VERSION
                  - QOE_STREAM_QUALITY_APPLICATION_VERSION
                  - QOE_ERROR_TRACKING_APPLICATION_VERSION
                  - HIGHLIGHTS_WEBCAST
                  - ENGAGEMENT_WEBCAST
                  - QUALITY_WEBCAST
                  - MAP_OVERLAY_COUNTRY_WEBCAST
                  - MAP_OVERLAY_REGION_WEBCAST
                  - MAP_OVERLAY_CITY_WEBCAST
                  - PLATFORMS_WEBCAST
                  - TOP_DOMAINS_WEBCAST
                  - TOP_USERS_WEBCAST
                  - ENGAGEMENT_BREAKDOWN_WEBCAST
                  - ENGAGMENT_TIMELINE_WEBCAST
                  - ENGAGEMENT_TOOLS_WEBCAST
                  - REACTIONS_BREAKDOWN_WEBCAST
                  - VE_HIGHLIGHTS
                  - VE_REGISTERED_PLATFORMS
                  - VE_REGISTERED_INDUSTRY
                  - VE_REGISTERED_ROLES
                  - VE_REGISTERED_COUNTRIES
                  - VE_REGISTERED_WORLD_REGIONS
                  x-enumType: KalturaReportType
                responseOptions:
                  $ref: '#/components/schemas/KalturaReportResponseOptions'
              required:
              - reportType
              - reportInputFilter
              type: object
  /service/report/action/getCsv:
    post:
      operationId: report.getCsv
      parameters:
      - $ref: '#/components/parameters/ks'
      - $ref: '#/components/parameters/format'
      - $ref: '#/components/parameters/clientTag'
      - $ref: '#/components/parameters/partnerId'
      - $ref: '#/components/parameters/language'
      - $ref: '#/components/parameters/responseProfile'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: string
            text/xml:
              schema:
                type: string
      tags:
      - report
      x-kaltura-format: post
      x-kaltura-parameters:
      - id
      - params
      - excludedFields
      requestBody:
        content:
          application/json:
            schema:
              properties:
                excludedFields:
                  type: string
                id:
                  type: integer
                params:
                  items:
                    $ref: '#/components/schemas/KalturaKeyValue'
                  type: array
              required:
              - id
              type: object
  /service/report/action/getCsvFromStringParams:
    post:
      description: 'Returns report CSV file executed by string params with the following convention: param1=value1;param2=value2


        excludedFields can be supplied comma separated'
      operationId: report.getCsvFromStringParams
      parameters:
      - $ref: '#/components/parameters/ks'
      - $ref: '#/components/parameters/format'
      - $ref: '#/components/parameters/clientTag'
      - $ref: '#/components/parameters/partnerId'
      - $ref: '#/components/parameters/language'
      - $ref: '#/components/parameters/responseProfile'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: string
            text/xml:
              schema:
                type: string
      tags:
      - report
      x-kaltura-format: post
      x-kaltura-parameters:
      - id
      - params
      - excludedFields
      requestBody:
        content:
          application/json:
            schema:
              properties:
                excludedFields:
                  type: string
                id:
                  type: integer
                params:
                  type: string
              required:
              - id
              type: object
  /service/report/action/getGraphs:
    post:
      description: report getGraphs action allows to get a graph data for a specific report.
      operationId: report.getGraphs
      parameters:
      - $ref: '#/components/parameters/ks'
      - $ref: '#/components/parameters/format'
      - $ref: '#/components/parameters/clientTag'
      - $ref: '#/components/parameters/partnerId'
      - $ref: '#/components/parameters/language'
      - $ref: '#/components/parameters/responseProfile'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/KalturaReportGraph'
                type: array
            text/xml:
              schema:
                items:
                  $ref: '#/components/schemas/KalturaReportGraph'
                type: array
      tags:
      - report
      x-kaltura-format: post
      x-kaltura-parameters:
      - reportType
      - reportInputFilter
      - dimension
      - objectIds
      - responseOptions
      requestBody:
        content:
          application/json:
            schema:
              properties:
                dimension:
                  type: string
                objectIds:
                  type: string
                reportInputFilter:
                  $ref: '#/components/schemas/KalturaReportInputFilter'
                reportType:
                  enum:
                  - quiz.QUIZ
                  - quiz.QUIZ_AGGREGATE_BY_QUESTION
                  - quiz.QUIZ_USER_AGGREGATE_BY_QUESTION
                  - quiz.QUIZ_USER_PERCENTAGE
                  - '1'
                  - '2'
                  - '3'
                  - '4'
                  - '5'
                  - '6'
                  - '7'
                  - '11'
                  - '12'
                  - '13'
                  - '14'
                  - '15'
                  - '16'
                  - '17'
                  - '18'
                  - '19'
                  - '20'
                  - '21'
                  - '22'
                  - '23'
                  - '24'
                  - '25'
                  - '26'
                  - '27'
                  - '28'
                  - '29'
                  - '30'
                  - '32'
                  - '33'
                  - '34'
                  - '35'
                  - '36'
                  - '37'
                  - '38'
                  - '39'
                  - '40'
                  - '41'
                  - '42'
                  - '43'
                  - '44'
                  - '45'
                  - '46'
                  - '47'
                  - '48'
                  - '49'
                  - '50'
                  - '51'
                  - '52'
                  - '53'
                  - '54'
                  - '55'
                  - '56'
                  - '57'
                  - '58'
                  - '59'
                  - '60'
                  - '61'
                  - '62'
                  - '63'
                  - '64'
                  - '65'
                  - '66'
                  - '67'
                  - '201'
                  - '10001'
                  - '10002'
                  - '10003'
                  - '10004'
                  - '10005'
                  - '10006'
                  - '10007'
                  - '10008'
                  - '10009'
                  - '10010'
                  - '10011'
                  - '10012'
                  - '10013'
                  - '10014'
                  - '10015'
                  - '20001'
                  - '20002'
                  - '20003'
                  - '20004'
                  - '20005'
                  - '20006'
                  - '20007'
                  - '20008'
                  - '20009'
                  - '20010'
                  - '20011'
                  - '20012'
                  - '20013'
                  - '20014'
                  - '20015'
                  - '20016'
                  - '20017'
                  - '20018'
                  - '20019'
                  - '20020'
                  - '20021'
                  - '20022'
                  - '20023'
                  - '30001'
                  - '30002'
                  - '30003'
                  - '30004'
                  - '30005'
                  - '30006'
                  - '30007'
                  - '30008'
                  - '30009'
                  - '30010'
                  - '30011'
                  - '30012'
                  - '30013'
                  - '30014'
                  - '30015'
                  - '30016'
                  - '30017'
                  - '30018'
                  - '30019'
                  - '30020'
                  - '30021'
                  - '30022'
                  - '30023'
                  - '30024'
                  - '30025'
                  - '30026'
                  - '30027'
                  - '30028'
                  - '30029'
                  - '30030'
                  - '30031'
                  - '30032'
                  - '30033'
                  - '30034'
                  - '30035'
                  - '30036'
                  - '30037'
                  - '30038'
                  - '30039'
                  - '30040'
                  - '30041'
                  - '30042'
                  - '30043'
                  - '30044'
                  - '30045'
                  - '30046'
                  - '30047'
                  - '30048'
                  - '30049'
                  - '30050'
                  - '30051'
                  - '30052'
                  - '30053'
                  - '30054'
                  - '30055'
                  - '30056'
                  - '30057'
                  - '30058'
                  - '30059'
                  - '30060'
                  - '30061'
                  - '30062'
                  - '30063'
                  - '30064'
                  - '40001'
                  - '40002'
                  - '40003'
                  - '40004'
                  - '40005'
                  - '40006'
                  - '40007'
                  - '40008'
                  - '40009'
                  - '40010'
                  - '40011'
                  - '40012'
                  - '40013'
                  - '50000'
                  - '50001'
                  - '50002'
                  - '50003'
                  - '50004'
                  - '50005'
                  type: string
                  x-enumLabels:
                  - QUIZ
                  - QUIZ_AGGREGATE_BY_QUESTION
                  - QUIZ_USER_AGGREGATE_BY_QUESTION
                  - QUIZ_USER_PERCENTAGE
                  - TOP_CONTENT
                  - CONTENT_DROPOFF
                  - CONTENT_INTERACTIONS
                  - MAP_OVERLAY
                  - TOP_CONTRIBUTORS
                  - TOP_SYNDICATION
                  - CONTENT_CONTRIBUTIONS
                  - USER_ENGAGEMENT
                  - SPECIFIC_USER_ENGAGEMENT
                  - USER_TOP_CONTENT
                  - USER_CONTENT_DROPOFF
                  - USER_CONTENT_INTERACTIONS
                  - APPLICATIONS
                  - USER_USAGE
                  - SPECIFIC_USER_USAGE
                  - VAR_USAGE
                  - TOP_CREATORS
                  - PLATFORMS
                  - OPERATING_SYSTEM
                  - BROWSERS
                  - LIVE
                  - TOP_PLAYBACK_CONTEXT
                  - VPAAS_USAGE
                  - ENTRY_USAGE
                  - REACH_USAGE
                  - TOP_CUSTOM_VAR1
                  - MAP_OVERLAY_CITY
                  - OPERATING_SYSTEM_FAMILIES
                  - BROWSERS_FAMILIES
                  - USER_ENGAGEMENT_TIMELINE
                  - UNIQUE_USERS_PLAY
                  - MAP_OVERLAY_COUNTRY
                  - MAP_OVERLAY_REGION
                  - TOP_CONTENT_CREATOR
                  - TOP_CONTENT_CONTRIBUTORS
                  - APP_DOMAIN_UNIQUE_ACTIVE_USERS
                  - TOP_SOURCES
                  - VPAAS_USAGE_MULTI
                  - PERCENTILES
                  - CONTENT_REPORT_REASONS
                  - PLAYER_RELATED_INTERACTIONS
                  - PLAYBACK_RATE
                  - TOP_USER_CONTENT
                  - USER_HIGHLIGHTS
                  - USER_INTERACTIVE_VIDEO
                  - INTERACTIVE_VIDEO_TOP_NODES
                  - LATEST_PLAYED_ENTRIES
                  - CATEGORY_HIGHLIGHTS
                  - SUB_CATEGORIES
                  - INTERACTIVE_VIDEO_NODE_TOP_HOTSPOTS
                  - INTERCATIVE_VIDEO_NODE_SWITCH_TOP_HOTSPOTS
                  - INTERACTIVE_VIDEO_HOTSPOT_CLICKED_PERCENTILES
                  - INTERACTIVE_VIDEO_NODE_SWITCH_HOTSPOT_CLICKED_PERCENTILES
                  - TOP_CUSTOM_VAR2
                  - TOP_CUSTOM_VAR3
                  - SELF_SERVE_USAGE
                  - FLAVOR_PARAMS_TRANSCODING_USAGE
                  - PLAYER_HIGHLIGHTS
                  - PARTNER_USAGE_HIGHLIGHTS
                  - CDN_BANDWIDTH_USAGE
                  - REACH_CATALOG_USAGE
                  - REACH_PROFILE_USAGE
                  - SELF_SERVE_BANDWIDTH
                  - PARTNER_USAGE
                  - MAP_OVERLAY_COUNTRY_REALTIME
                  - MAP_OVERLAY_REGION_REALTIME
                  - MAP_OVERLAY_CITY_REALTIME
                  - PLATFORMS_REALTIME
                  - USERS_OVERVIEW_REALTIME
                  - QOS_OVERVIEW_REALTIME
                  - DISCOVERY_REALTIME
                  - ENTRY_LEVEL_USERS_DISCOVERY_REALTIME
                  - ENTRY_LEVEL_USERS_STATUS_REALTIME
                  - PLATFORMS_DISCOVERY_REALTIME
                  - PLAYBACK_TYPE_REALTIME
                  - CONTENT_REALTIME
                  - DISCOVERY_VIEW_REALTIME
                  - TOP_ENDED_BROADCAST_ENTRIES
                  - TOP_LIVE_NOW_ENTRIES
                  - CONTENT_DROPOFF_VPAAS
                  - TOP_SYNDICATION_VPAAS
                  - USER_TOP_CONTENT_VPAAS
                  - USER_USAGE_VPAAS
                  - PLATFORMS_VPAAS
                  - OPERATING_SYSTEM_VPAAS
                  - BROWSERS_VPAAS
                  - OPERATING_SYSTEM_FAMILIES_VPAAS
                  - BROWSERS_FAMILIES_VPAAS
                  - USER_ENG

# --- truncated at 32 KB (866 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/kaltura/refs/heads/main/openapi/kaltura-report-api-openapi.yml