Hang Program Tiers API

The Program Tiers API from Hang — 1 operation(s) for program tiers.

Operations 1

GET /v2/admin/program-tiers Get all program tiers #

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-program-tiers-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-program-tiers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Hang Partner API (params in:formData) Activities Program Tiers 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: Program Tiers
paths:
  /v2/admin/program-tiers:
    get:
      tags:
      - Program Tiers
      operationId: get_v2_admin_program-tiers
      summary: Get all program tiers
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  tiers:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Unique identifier for the program tier object.
                        order:
                          type: number
                          description: The order in which the tier should be displayed.
                        tier_metric_minimum_threshold:
                          type: number
                          description: The minimum amount of points, or any tier metric (e.g. xp, points, stars, etc), the user must reach before being able to unlock the tier.
                        display_name:
                          type: string
                          description: The name of the tier.
                        marketing_benefit_text:
                          type: string
                          description: The marketing benefit text of the tier.
                        image_url:
                          type: string
                          description: The image associated to the tier.
                      additionalProperties: false
                      required:
                      - id
                      - order
                      - tier_metric_minimum_threshold
                      - display_name
                      - marketing_benefit_text
                      - image_url
                additionalProperties: false
                required:
                - tiers
      description: Tiers represent a status level that a user can achieve based on their activity within a loyalty program. Each tier has a minimum threshold that a user must reach before being able to unlock the tier.
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key