Beamable Object API

The Object API from Beamable — 4 operation(s) for object.

Operations 4

POST /object/event-players/{objectId}/claim-entitlements
GET /object/event-players/{objectId}/
POST /object/event-players/{objectId}/claim
PUT /object/event-players/{objectId}/score

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/beamable-object-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

beamable-object-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: realms Basic Object API
  version: '1.0'
  contact:
    name: Beamable Support
    url: https://api.beamable.com
    email: support@beamable.com
servers:
- url: https://api.beamable.com
security: []
tags:
- name: Object
paths:
  /object/event-players/{objectId}/claim-entitlements:
    post:
      parameters:
      - name: objectId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EventClaimEntitlementsRequest'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommonResponse'
        '400':
          description: Bad Request
      security:
      - scope: []
        user: []
      tags:
      - Object
  /object/event-players/{objectId}/:
    get:
      parameters:
      - name: objectId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventPlayerView'
        '400':
          description: Bad Request
      security:
      - scope: []
      tags:
      - Object
  /object/event-players/{objectId}/claim:
    post:
      parameters:
      - name: objectId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EventClaimRequest'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventClaimResponse'
        '400':
          description: Bad Request
      security:
      - scope: []
      tags:
      - Object
  /object/event-players/{objectId}/score:
    put:
      parameters:
      - name: objectId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EventScoreRequest'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommonResponse'
        '400':
          description: Bad Request
      security:
      - scope: []
      tags:
      - Object
components:
  schemas:
    EventInventoryRewardItem:
      type: object
      properties:
        id:
          type: string
        properties:
          type: object
      additionalProperties: false
    EventRewardObtain:
      required:
      - count
      type: object
      properties:
        symbol:
          type: string
        count:
          type: integer
      additionalProperties: false
    EventRewardState:
      required:
      - min
      - earned
      - claimed
      type: object
      properties:
        pendingInventoryRewards:
          $ref: '#/components/schemas/EventInventoryPendingRewards'
        currencies:
          type: array
          items:
            $ref: '#/components/schemas/EventInventoryRewardCurrency'
        pendingCurrencyRewards:
          type: object
        pendingItemRewards:
          type: array
          items:
            $ref: '#/components/schemas/ItemCreateRequest'
        items:
          type: array
          items:
            $ref: '#/components/schemas/EventInventoryRewardItem'
        min:
          type: number
        max:
          type: number
        earned:
          type: boolean
        claimed:
          type: boolean
        pendingEntitlementRewards:
          type: object
        obtain:
          type: array
          items:
            $ref: '#/components/schemas/EventRewardObtain'
      additionalProperties: false
    EventInventoryPendingRewards:
      required:
      - empty
      type: object
      properties:
        currencies:
          type: object
        items:
          type: array
          items:
            $ref: '#/components/schemas/ItemCreateRequest'
        empty:
          type: boolean
      additionalProperties: false
    CommonResponse:
      title: Common Response
      type: object
      properties:
        result:
          type: string
        data:
          type: object
      additionalProperties: false
    EventPlayerGroupState:
      required:
      - groupScore
      - groupRank
      type: object
      properties:
        groupScore:
          type: number
        groupId:
          type: string
        rankRewards:
          type: array
          items:
            $ref: '#/components/schemas/EventRewardState'
        groupRank:
          type: integer
        scoreRewards:
          type: array
          items:
            $ref: '#/components/schemas/EventRewardState'
      additionalProperties: false
    EntitlementClaimWindow:
      required:
      - open
      - close
      type: object
      properties:
        open:
          type: integer
        close:
          type: integer
      additionalProperties: false
    EntitlementGenerator:
      type: object
      properties:
        quantity:
          type: integer
        claimWindow:
          $ref: '#/components/schemas/EntitlementClaimWindow'
        params:
          type: object
        symbol:
          type: string
        specialization:
          type: string
        action:
          type: string
      additionalProperties: false
    EventScoreRequest:
      title: Event Score Request
      required:
      - score
      type: object
      properties:
        eventId:
          type: string
        score:
          type: number
        increment:
          type: boolean
        stats:
          type: object
      additionalProperties: false
    EventRule:
      type: object
      properties:
        rule:
          type: string
        value:
          type: string
      additionalProperties: false
    EventClaimEntitlementsRequest:
      title: Event Claim Entitlements Request
      type: object
      properties:
        eventId:
          type: string
        generators:
          type: array
          items:
            $ref: '#/components/schemas/EntitlementGenerator'
      additionalProperties: false
    EventClaimRequest:
      title: Event Claim Request
      type: object
      properties:
        eventId:
          type: string
      additionalProperties: false
    EventClaimResponse:
      title: Event Claim Response
      type: object
      properties:
        view:
          $ref: '#/components/schemas/EventPlayerStateView'
        gameRspJson:
          type: string
      additionalProperties: false
    EventInventoryRewardCurrency:
      required:
      - amount
      type: object
      properties:
        id:
          type: string
        amount:
          type: integer
      additionalProperties: false
    ItemProperty:
      type: object
      properties:
        name:
          type: string
        value:
          type: string
      additionalProperties: false
    ItemCreateRequest:
      type: object
      properties:
        contentId:
          type: string
        properties:
          type: array
          items:
            $ref: '#/components/schemas/ItemProperty'
      additionalProperties: false
    EventPlayerPhaseView:
      required:
      - durationSeconds
      type: object
      properties:
        name:
          type: string
        durationSeconds:
          type: integer
        rules:
          type: array
          items:
            $ref: '#/components/schemas/EventRule'
      additionalProperties: false
    EventPlayerView:
      title: Event Player View
      type: object
      properties:
        running:
          type: array
          items:
            $ref: '#/components/schemas/EventPlayerStateView'
        done:
          type: array
          items:
            $ref: '#/components/schemas/EventPlayerStateView'
      additionalProperties: false
    EventPlayerStateView:
      required:
      - score
      - rank
      - running
      - secondsRemaining
      type: object
      properties:
        name:
          type: string
        running:
          type: boolean
        allPhases:
          type: array
          items:
            $ref: '#/components/schemas/EventPlayerPhaseView'
        rank:
          type: integer
        score:
          type: number
        currentPhase:
          $ref: '#/components/schemas/EventPlayerPhaseView'
        secondsRemaining:
          type: integer
        id:
          type: string
        leaderboardId:
          type: string
        rankRewards:
          type: array
          items:
            $ref: '#/components/schemas/EventRewardState'
        groupRewards:
          $ref: '#/components/schemas/EventPlayerGroupState'
        scoreRewards:
          type: array
          items:
            $ref: '#/components/schemas/EventRewardState'
      additionalProperties: false
  securitySchemes:
    server:
      type: apiKey
      name: X-DE-SIGNATURE
      in: header
      description: Signed Request authentication using project secret key.
    user:
      type: http
      description: Bearer authentication with a player access token in the Authorization header.
      scheme: bearer
      bearerFormat: Bearer <Access Token>
externalDocs:
  description: Beamable Documentation
  url: https://docs.beamable.com