Hang Loot box reward probabilities API

The Loot box reward probabilities API from Hang — 2 operation(s) for loot box reward probabilities.

Operations 3

POST /v2/admin/loot_box_reward_probabilities Create a probability for a loot box reward. #
PATCH /v2/admin/loot_box_reward_probabilities/{loot_box_reward_probability_id} Update a loot box reward probability. #
DELETE /v2/admin/loot_box_reward_probabilities/{loot_box_reward_probability_id} Delete a loot box reward probability. #

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/hang-loot-box-reward-probabilities-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

hang-loot-box-reward-probabilities-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Hang Partner API (params in:formData) Activities Loot box reward probabilities API
  description: '

    <p>The Partner API allows you to request various resources that can power your loyalty program.</p>

    &copy Hang 2023'
  version: 2023.09.07
  x-copyright: '&copy Hang 2023'
servers:
- url: /partner-api
security:
- ApiKeyAuth: []
tags:
- name: Loot box reward probabilities
paths:
  /v2/admin/loot_box_reward_probabilities:
    post:
      tags:
      - Loot box reward probabilities
      operationId: post_v2_admin_loot_box_reward_probabilities
      summary: Create a probability for a loot box reward.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  loot_box_reward_probability:
                    type: object
                    properties:
                      program_tier_id:
                        type: string
                        description: ID of the program tier to which to this probability applies.
                      probability:
                        type: number
                        description: Probability of the reward choice being selected. Scale is relative to other reward probabilities for the same loot box.
                    additionalProperties: false
                    required:
                    - program_tier_id
                    - probability
                additionalProperties: false
                required:
                - loot_box_reward_probability
      description: Invoke this endpoint to create a probability for a loot box reward choice.
  /v2/admin/loot_box_reward_probabilities/{loot_box_reward_probability_id}:
    patch:
      tags:
      - Loot box reward probabilities
      operationId: patch_v2_admin_loot_box_reward_probabilities_loot_box_reward_probability_id
      summary: Update a loot box reward probability.
      parameters:
      - name: loot_box_reward_probability_id
        in: path
        required: true
        schema:
          type: number
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  loot_box_reward_probability:
                    type: object
                    properties:
                      program_tier_id:
                        type: string
                        description: ID of the program tier to which to this probability applies.
                      probability:
                        type: number
                        description: Probability of the reward choice being selected. Scale is relative to other reward probabilities for the same loot box.
                    additionalProperties: false
                    required:
                    - program_tier_id
                    - probability
                additionalProperties: false
                required:
                - loot_box_reward_probability
      description: Invoke this endpoint to update the probability for a loot box reward choice.
    delete:
      tags:
      - Loot box reward probabilities
      operationId: delete_v2_admin_loot_box_reward_probabilities_loot_box_reward_probability_id
      summary: Delete a loot box reward probability.
      parameters:
      - name: loot_box_reward_probability_id
        in: path
        required: true
        schema:
          type: number
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  loot_box_reward_probability:
                    type: object
                    properties:
                      program_tier_id:
                        type: string
                        description: ID of the program tier to which to this probability applies.
                      probability:
                        type: number
                        description: Probability of the reward choice being selected. Scale is relative to other reward probabilities for the same loot box.
                    additionalProperties: false
                    required:
                    - program_tier_id
                    - probability
                additionalProperties: false
                required:
                - loot_box_reward_probability
      description: Invoke this endpoint to delete the probability for a loot box reward choice.
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key