Web3 Following
GET /api/v1/web3/following
Note: To query the list of addresses that a Web3 address is following.
Header
ApiKey
String
The ApiKey obtained from Admin.
Authorization
String
Bearer ${unifiedAuthToken} , in which the "unifiedAuthToken" is the result returned by /api/v1/auth
Request Parameters
address
String
eth address
limit
int
Limit per query. The upper limit is 100.
cursor
string
Cursor data returned by the last page. If the cursor is empty, it means the caller is querying the first page.
Request Example
Response Parameters
code
String
Return Code
desc
String
Return Information
data
List[Web3FollowingResponse]
Data
The Web3FollowingResponse field consists of the following subfields:
cursor
String
Cursor
list
List[String]
The follower's list of Web3 addresses
Response Body
Return Code
0
success
The flag for a successful API call.
Last updated