Hang Wallet Integration API

The Wallet Integration API from Hang — 2 operation(s) for wallet integration.

Operations 2

POST /integrations/search Get a wallet integration with either a wallet or an email address. #
POST /integrations Create or update a wallet integration with the email and wallet address #

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-wallet-integration-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-wallet-integration-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Hang Partner API (params in:formData) Activities Wallet Integration 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: Wallet Integration
paths:
  /integrations/search:
    post:
      tags:
      - Wallet Integration
      operationId: post_integrations_search
      summary: Get a wallet integration with either a wallet or an email address.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  email:
                    type: string
                    description: email address to associate with the wallet address
                  wallet_address:
                    type: string
                    description: wallet_address to associate with the email address
                  provider:
                    type: string
                    description: Wallet integration provider
                additionalProperties: false
                required:
                - email
                - wallet_address
                - provider
      description: Get the email address associated with the specified wallet address or vice versa.
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                wallet_address:
                  type: string
                  description: wallet_address to associate with the email address
                email:
                  type: string
                  description: email address to associate with the wallet address
              required:
              - wallet_address
              - email
          multipart/form-data:
            schema:
              type: object
              properties:
                wallet_address:
                  type: string
                  description: wallet_address to associate with the email address
                email:
                  type: string
                  description: email address to associate with the wallet address
              required:
              - wallet_address
              - email
  /integrations:
    post:
      tags:
      - Wallet Integration
      operationId: post_integrations
      summary: Create or update a wallet integration with the email and wallet address
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  email:
                    type: string
                    description: email address to associate with the wallet address
                  wallet_address:
                    type: string
                    description: wallet_address to associate with the email address
                  provider:
                    type: string
                    description: Wallet integration provider
                additionalProperties: false
                required:
                - email
                - wallet_address
                - provider
      description: Create or update a wallet integration with the email and wallet address
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                wallet_address:
                  type: string
                  description: wallet_address to associate with the email address
                email:
                  type: string
                  description: email address to associate with the wallet address
              required:
              - wallet_address
              - email
          multipart/form-data:
            schema:
              type: object
              properties:
                wallet_address:
                  type: string
                  description: wallet_address to associate with the email address
                email:
                  type: string
                  description: email address to associate with the wallet address
              required:
              - wallet_address
              - email
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key