Inthegame uploads API

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

Operations 3

POST /upload/scanDir/streamer ScanDir #
POST /upload/uploadImage UploadImage #
POST /upload/uploadVideo UploadVideo #

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-uploads-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-uploads-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Inthegame admin Uploads 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: uploads
paths:
  /upload/scanDir/streamer:
    post:
      operationId: adminapiUploadsScandir
      summary: ScanDir
      tags:
      - uploads
      description: Load on screen saved image
      responses:
        '200':
          description: API Test
          content:
            application/json:
              schema:
                type: object
              example:
                uploadPath: /uploads/streamers
                images: []
        '404':
          description: Not found
        '500':
          description: Server error
      security:
      - AdminToken: []
  /upload/uploadImage:
    post:
      operationId: adminapiUploadsUploadimage
      summary: UploadImage
      tags:
      - uploads
      description: 'Upload selected image to relevant directory on the server. Form data: file - file itself; terget: folder to upload'
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                target:
                  type: string
            example:
              target: '{folder_to_upload}'
      responses:
        '200':
          description: API Test
          content:
            application/json:
              schema:
                type: object
              example:
                filepath: /uploads/entities/ee456eadddd6b031e22ae6df1f849964.3f4427d78a721b6281b681a528fbf5fe.png
        '404':
          description: Not found
        '500':
          description: Server error
      security:
      - AdminToken: []
  /upload/uploadVideo:
    post:
      operationId: adminapiUploadsUploadvideo
      summary: UploadVideo
      tags:
      - uploads
      description: 'Upload selected video with form data: file - video format file binary; target - folder to upload'
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                target:
                  type: string
            example:
              file: binary
              target: folder
      responses:
        '200':
          description: API Test
          content:
            application/json:
              schema:
                type: object
              example:
                filepath: /uploads/videos/streamers/2aa7f0ca05f87f6a0e7b4ddbb614a23e.fba66777a7fade4c142dc97eb8895c0b.mp4
        '404':
          description: Not found
        '500':
          description: Server error
      security:
      - AdminToken: []
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.