GetLensBidsReceivedStats
API
API
/v2/lens/get_bids_received/stats
Title
GetLensBidsReceivedStats
Description
Analyze the relevant data of bids received on Lens.
Authorization
Not required
Method
POST
Request Parameters
Name
Type
Required
Description
profileIds
string[]
YES
The Lens profile id list of the bidders
includeIgnore
bool
NO
Should ignored content be included. Default to true.
Parameter Content Type
application/json
Request and Response Example
Request
cURL Code
curl -X 'POST' \
'https://api.tako.so/v2/lens/get_bids_received/stats' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"includeIgnore": true,
"profileIds": [
36113
]
}'
Request URL
https://api.tako.so/v2/lens/get_bids_received/stats
Response
{
"status": "success",
"data": {
"all": 1,
"pending": 1,
"pass": 0,
"cancel": 0,
"ignored": 0
}
}
Last updated