GetFarcasterBidsCreatedStats
API
API
/v2/farcaster/get_bids_created/stats
Title
GetFarcasterBidsCreatedStats
Description
Analyze the relevant data of bids created on Farcaster
Authorization
Not required
Method
POST
Request Parameters
Name
Type
Required
Description
fids
string[]
YES
The Farcaster FID list of the bidders
Parameter Content Type
application/json
Request and Response Example
Request
cURL Code
curl -X 'POST' \
'https://api.tako.so/v2/farcaster/get_bids_created/stats' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"Fids": [
15706
]
}'
Request URL
https://api.tako.so/v2/farcaster/get_bids_created/stats
Response
{
"status": "success",
"data": {
"all": 9,
"pending": 0,
"pass": 3,
"cancel": 6,
"ignored": 0
}
}
Last updated