Query blacklist

Check address rating

Endpoint usage

POST https://api.bridgers.xyz/api/v1/queryBlackList

The fields with * are required, and the fields without * are optional

Request Body

NameTypeDescription

content*

String

wallet address

{
    "resCode": 100,
    "resMsg": "success",
    "data": {
        "score": "100" //Address score, 0 means high risk, 100 means low risk
    }
}

Code example

// example
const params = {
 content: '', //wallet address
}
 const res = await axios.post('https://api.bridgers.xyz/api/v1/queryBlackList',params)
 console.log(res)

Postman example

Last updated