Inthegame item API

The item API from Inthegame — 6 operation(s) for item.

Operations 6

POST /adminApi/items/create Create #
GET /adminApi/items/delete/{id} Delete #
GET /adminApi/items/getAll GetAll #
GET /adminApi/items/getById/{id} GetById #
POST /adminApi/items/importDefaultAvatars ImportDefaultAvatars #
POST /adminApi/items/update/{id} Update #

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-item-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-item-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Inthegame admin Item 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: item
paths:
  /adminApi/items/create:
    post:
      operationId: adminapiItemCreate
      summary: Create
      tags:
      - item
      description: Send new item object to save and return it as db object
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                name:
                  type: string
                alias:
                  type: string
                status:
                  type: string
                category:
                  type: string
                type:
                  type: string
                image:
                  type: string
                shortcut:
                  type: string
                item_order:
                  type: string
                game_id:
                  type: string
                game:
                  type: string
            example:
              name: Test
              alias: ''
              status: active
              category: ''
              type: thumbnail
              image: '0'
              shortcut: Test
              item_order: '1'
              game_id: 5fbceda5636497107a1cbdf3
              game: Test category
      responses:
        '200':
          description: API Test
          content:
            application/json:
              schema:
                type: object
              example:
                item:
                  user_id: 5fbce6c58703d05e5a73b6f4
                  broadcaster_name: api_tester
                  name: Test
                  shortcut: Test
                  item_order: 1
                  status: active
                  type: thumbnail
                  game_id: 5fbceda5636497107a1cbdf3
                  thumbnail: ''
                  _id:
                    $id: 5fbd171198ffc537f676f555
                  id: 5fbd171198ffc537f676f555
        '404':
          description: Not found
        '500':
          description: Server error
      security:
      - AdminToken: []
  /adminApi/items/delete/{id}:
    get:
      operationId: adminapiItemDelete
      summary: Delete
      tags:
      - item
      description: Send item id to delete it from db
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: API Test
        '404':
          description: Not found
        '500':
          description: Server error
      security:
      - AdminToken: []
  /adminApi/items/getAll:
    get:
      operationId: adminapiItemGetall
      summary: GetAll
      tags:
      - item
      description: Send request to get items list by filter options
      responses:
        '200':
          description: API Test
          content:
            application/json:
              schema:
                type: object
              example:
                items:
                - user_id: 5fbce6c58703d05e5a73b6f4
                  broadcaster_name: api_tester
                  name: zombie
                  shortcut: zombie
                  item_order: 1
                  status: active
                  type: thumbnail
                  game_id: 0
                  thumbnail: /uploads/products/rImage1123.png
                  _id:
                    $id: 5fbcee5aa759e61e0f7b0b87
                pagination:
                  total: 1
                  currentPage: '1'
                  totalPages: 1
        '404':
          description: Not found
        '500':
          description: Server error
      security:
      - AdminToken: []
  /adminApi/items/getById/{id}:
    get:
      operationId: adminapiItemGetbyid
      summary: GetById
      tags:
      - item
      description: Return item object selected by given id
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: API Test
          content:
            application/json:
              schema:
                type: object
              example:
                item:
                  user_id: 5fbce6c58703d05e5a73b6f4
                  broadcaster_name: api_tester
                  name: zombie
                  shortcut: zombie
                  item_order: 1
                  status: active
                  type: thumbnail
                  game_id: 0
                  thumbnail: /uploads/products/rImage1123.png
                  _id:
                    $id: 5fbcee5aa759e61e0f7b0b87
        '404':
          description: Not found
        '500':
          description: Server error
      security:
      - AdminToken: []
  /adminApi/items/importDefaultAvatars:
    post:
      operationId: adminapiItemImportdefaultavatars
      summary: ImportDefaultAvatars
      tags:
      - item
      description: Return status success if default avatrs imported in db
      responses:
        '200':
          description: API Test
          content:
            application/json:
              schema:
                type: object
              example:
                added: success
        '404':
          description: Not found
        '500':
          description: Server error
      security:
      - AdminToken: []
  /adminApi/items/update/{id}:
    post:
      operationId: adminapiItemUpdate
      summary: Update
      tags:
      - item
      description: Send item object to update in db with given id and return updated item
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                user_id:
                  type: string
                broadcaster_name:
                  type: string
                name:
                  type: string
                shortcut:
                  type: string
                item_order:
                  type: string
                status:
                  type: string
                type:
                  type: string
                game_id:
                  type: string
                thumbnail:
                  type: string
                _id:
                  type: string
            example:
              user_id: 5fbce6c58703d05e5a73b6f4
              broadcaster_name: api_tester
              name: Test
              shortcut: Test
              item_order: '1'
              status: active
              type: thumbnail
              game_id: 5fbceda5636497107a1cbdf3
              thumbnail: ''
              _id: '[object Object]'
      responses:
        '200':
          description: API Test
          content:
            application/json:
              schema:
                type: object
              example:
                item:
                  user_id: 5fbce6c58703d05e5a73b6f4
                  broadcaster_name: api_tester
                  name: Test
                  shortcut: Test
                  item_order: 1
                  status: active
                  type: thumbnail
                  game_id: 5fbceda5636497107a1cbdf3
                  thumbnail: ''
        '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.