VIP3 DOCS
  • VIP3 DOCS
    • 🌎For Users
      • What is VIP3?
      • Why Did We Build VIP3?
      • How Does VIP3 Work?
      • How Do I Use VIP3?
      • VIP3 Pass
      • VIP3 Credit Infrastructure
      • VIP3 Roadmap
      • VIP3 Tokenomics(Draft)
      • VIP3 Fly Wheel
    • 🖥️For Developers
      • Intergrating VIP3 SBT
      • All Chains integration
      • Single Chain integration
      • Contract Address
      • SBT Attributes Demo
      • Smart Contracts
      • Use Case
    • 🤝For Partners
    • 🎨For Designers
Powered by GitBook
On this page
  1. VIP3 DOCS
  2. For Developers

All Chains integration

VIP3 provides an API to get the holder and VIP level info:

API introduction

Hosthttps://dappapi.vip3.io/

Interface

GET /api/v1/sbt/info

Request Parameter

Name
Type
Required
Desc

addr

string

yes

User address for query

Response

Name
Type
Required
Desc

code

int

yes

0 for success

msg

string

yes

success or other error msgs

data

json

yes

Vip level,0 for address is not a holder of the sbt

Response Example

{
    "code": 0,
    "msg": "success",
    "data": {
        "level": 2 // level greater than zero for holding the sbt with specified level
    }
}
PreviousIntergrating VIP3 SBTNextSingle Chain integration

Last updated 1 year ago

🖥️