Inthegame analytics API

The analytics API from Inthegame — 3 operation(s) for analytics.

Operations 3

GET /adminApi/analytics/getParameters GetParameters #
GET /adminApi/analytics/getReport GetReport #
POST /userApi/analytics/add Add #

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/inthegame-analytics-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

inthegame-analytics-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Inthegame admin Analytics API
  version: 1.0.0
  description: 'Interactive in-stream overlay and viewer-engagement platform API for OTT/CTV. Two surfaces: adminApi (broadcaster/admin management of streamers, polls, trivia, ratings, wikis, shop, sponsors, prizes, analytics) and userApi (end-viewer play: register/login, answer polls/trivia/ratings, chat, leaderboard, shop). Converted from the provider-published Postman collection "Inthegame API Docs".'
  contact:
    name: Inthegame Support
    email: support@inthegame.io
    url: https://www.inthegame.io/
servers:
- url: https://api-dev.inthegame.io
  description: Published API host (from Postman collection)
tags:
- name: analytics
paths:
  /adminApi/analytics/getParameters:
    get:
      operationId: adminapiAnalyticsGetparameters
      summary: GetParameters
      tags:
      - analytics
      description: Get help data for drop down in filter
      parameters:
      - name: per-page
        in: query
        required: false
        schema:
          type: string
        example: '10000'
      responses:
        '200':
          description: API Test
          content:
            application/json:
              schema:
                type: object
              example:
                devices:
                - deviceName: Android
                - deviceName: iPhone
                - deviceName: iPad
                - deviceName: BlackBerry
                platforms:
                - platformName: mobile
                - platformName: web
                countries:
                - countryCode: US
                  countryName: United States
                - countryCode: IL
                  countryName: Israel
                browsers:
                - browserName: Chrome
                - browserName: Safari
                - browserName: Firefox
                - browserName: MSIE
                type: new
        '404':
          description: Not found
        '500':
          description: Server error
      security:
      - AdminToken: []
  /adminApi/analytics/getReport:
    get:
      operationId: adminapiAnalyticsGetreport
      summary: GetReport
      tags:
      - analytics
      description: Get report for analytics user actions from client (activities)
      responses:
        '200':
          description: API Test
          content:
            application/json:
              schema:
                type: object
              example:
                report:
                - module: Rating
                  impressions: 2
                  engagements: 0
                  engagementRatio: 0
                  clicks: 0
                  ctr: 0
                  subModules:
                  - module: Harry Potter
                    impressions: 2
                    engagements: 0
                    ctr: 0
                    clicks: 0
                    engagementRatio: 0
                - module: Polls
                  impressions: 2
                  engagements: 0
                  engagementRatio: 0
                  clicks: 0
                  ctr: 0
                  subModules:
                  - module: Test poll
                    impressions: 2
                    engagements: 0
                    ctr: 0
                    clicks: 0
                    engagementRatio: 0
                - module: Quiz
                  impressions: 1
                  engagements: 0
                  engagementRatio: 0
                  clicks: 0
                  ctr: 0
                  subModules:
                  - module: Which year Harry Potter was born?
                    impressions: 1
                    engagements: 0
                    ctr: 0
                    clicks: 0
                    engagementRatio: 0
                - module: Wiki
                  impressions: 5
                  engagements: 0
                  engagementRatio: 0
                  clicks: 0
                  ctr: 0
                  subModules:
                  - module: Test Wiki
                    impressions: 5
                    engagements: 0
                    ctr: 0
                    clicks: 0
                    engagementRatio: 0
                - module: Chat
                  impressions: 1
                  engagements: 1
                  engagementRatio: 1
                  clicks: 0
                  ctr: 0
                  subModules: []
                - module: Account
                  impressions: 1
                  engagements: 1
                  engagementRatio: 1
                  clicks: 0
                  ctr: 0
                  subModules: []
                type: new
        '404':
          description: Not found
        '500':
          description: Server error
      security:
      - AdminToken: []
  /userApi/analytics/add:
    post:
      operationId: userapiAnalyticsAdd
      summary: Add
      tags:
      - analytics
      description: add user activity to db
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                request:
                  type: string
            example:
              request: data
      responses:
        '200':
          description: API Test
          content:
            application/json:
              schema:
                type: object
              example:
                status: success
        '404':
          description: Not found
        '500':
          description: Server error
components:
  securitySchemes:
    AdminToken:
      type: apiKey
      in: header
      name: Authorization
      description: Admin API token issued after login to the admin panel (https://admintest.inthegame.io/); sent in the Authorization header.