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

NameTypeRequiredDesc

addr

string

yes

User address for query

Response

NameTypeRequiredDesc

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
    }
}

Last updated