Hang TokenizedRewards API

The TokenizedRewards API from Hang — 2 operation(s) for tokenizedrewards.

Operations 2

GET /tokenized-rewards/contracts/{contract_address}/wallets/{wallet_address} Retrieve all tokenized rewards and their balances for a given wallet address and contract address. #
POST /tokenized-rewards/burn Burn a tokenized reward for the given contract address and token id. #

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-tokenizedrewards-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-tokenizedrewards-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Hang Partner API (params in:formData) Activities Tokenized Rewards 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: TokenizedRewards
paths:
  /tokenized-rewards/contracts/{contract_address}/wallets/{wallet_address}:
    get:
      tags:
      - TokenizedRewards
      operationId: get_tokenized-rewards_contracts_contract_address_wallets_wallet_address
      summary: Retrieve all tokenized rewards and their balances for a given wallet address and contract address.
      parameters:
      - name: contract_address
        in: path
        required: true
        description: The contract address
        schema:
          type: string
      - name: wallet_address
        in: path
        required: true
        description: The wallet address
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  rewards:
                    type: array
                    items:
                      type: object
                      properties:
                        token_id:
                          type: string
                          description: The id of the token
                        burned_at:
                          type: number
                          description: The time of when the token was burned, if any, in epoch seconds
                      additionalProperties: false
                      required:
                      - token_id
                      - burned_at
                additionalProperties: false
                required:
                - rewards
      description: ''
  /tokenized-rewards/burn:
    post:
      tags:
      - TokenizedRewards
      operationId: post_tokenized-rewards_burn
      summary: Burn a tokenized reward for the given contract address and token id.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  burned_at:
                    type: number
                    description: The time at which the token was burned, in epoch seconds
                  redeemed_by:
                    type: string
                    description: The wallet address of the token holder
                additionalProperties: false
                required:
                - burned_at
                - redeemed_by
      description: ''
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                contract_address:
                  type: string
                  description: The contract address
                token_id:
                  type: string
                  description: The id of the token
              required:
              - contract_address
              - token_id
          multipart/form-data:
            schema:
              type: object
              properties:
                contract_address:
                  type: string
                  description: The contract address
                token_id:
                  type: string
                  description: The id of the token
              required:
              - contract_address
              - token_id
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key