Inthegame entity API
The entity API from Inthegame — 7 operation(s) for entity.
The entity API from Inthegame — 7 operation(s) for entity.
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/inthegame-entity-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: Inthegame admin Entity 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: entity
paths:
/adminApi/entity/create:
post:
operationId: adminapiEntityCreate
summary: Create
tags:
- entity
description: Send new entity object to save and return it as db object
requestBody:
content:
application/x-www-form-urlencoded:
schema:
type: object
properties:
name:
type: string
thumbnail:
type: string
example:
name: Test Entity
thumbnail: ''
responses:
'200':
description: API Test
content:
application/json:
schema:
type: object
example:
entity:
name: Test Entity
user_id: 5fbce6c58703d05e5a73b6f4
thumbnail: ''
_id:
$id: 5fbd14d40174d8346b7cceb4
'404':
description: Not found
'500':
description: Server error
security:
- AdminToken: []
/adminApi/entity/delete/{id}:
post:
operationId: adminapiEntityDelete
summary: Delete
tags:
- entity
description: Send entity 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/entity/getAll:
get:
operationId: adminapiEntityGetall
summary: GetAll
tags:
- entity
description: Return entities list to admin panel
responses:
'200':
description: API Test
content:
application/json:
schema:
type: object
example:
entities:
- name: Test entity
user_id: 5fbce6c58703d05e5a73b6f4
thumbnail: ''
_id:
$id: 5fbcf1b14ad5926a962b7f97
'404':
description: Not found
'500':
description: Server error
security:
- AdminToken: []
/adminApi/entity/getById/{id}:
get:
operationId: adminapiEntityGetbyid
summary: GetById
tags:
- entity
description: Return entity 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:
entity:
name: Test entity
user_id: 5fbce6c58703d05e5a73b6f4
thumbnail: ''
_id:
$id: 5fbcf1b14ad5926a962b7f97
'404':
description: Not found
'500':
description: Server error
security:
- AdminToken: []
/adminApi/entity/update/{id}:
post:
operationId: adminapiEntityUpdate
summary: Update
tags:
- entity
description: Send entity object to update in db with given id and return updated entity
parameters:
- name: id
in: path
required: true
schema:
type: string
requestBody:
content:
application/x-www-form-urlencoded:
schema:
type: object
properties:
name:
type: string
user_id:
type: string
thumbnail:
type: string
_id:
type: string
example:
name: Test Entity
user_id: 5fbce6c58703d05e5a73b6f4
thumbnail: ''
_id: '[object Object]'
responses:
'200':
description: API Test
content:
application/json:
schema:
type: object
example:
entity:
name: Test Entity
user_id: 5fbce6c58703d05e5a73b6f4
thumbnail: ''
'404':
description: Not found
'500':
description: Server error
security:
- AdminToken: []
/userApi/entity/add:
post:
operationId: userapiEntityAdd
summary: Add
tags:
- entity
description: Create entity by user choice
requestBody:
content:
application/x-www-form-urlencoded:
schema:
type: object
properties:
request:
type: string
example:
request: data
responses:
'200':
description: APITest
content:
application/json:
schema:
type: object
example:
answer:
userId: '***'
entityId: '***'
entityName: '***'
isAdded: true
'404':
description: Not found
'500':
description: Server error
/userApi/entity/remove:
post:
operationId: userapiEntityRemove
summary: Remove
tags:
- entity
description: Delete entity from user entities
requestBody:
content:
application/json:
schema:
type: object
example:
data:
entityId: '***'
channelId: '***'
userToken: '***'
responses:
'200':
description: Default
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.