GetFarcasterBidsReceivedStats

API

API/v2/farcaster/get_bids_received/stats

Title

GetFarcasterBidsReceivedStats

Description

Analyze the relevant data of bids received on Farcaster

Authorization

Not required

Method

POST

Request Parameters

NameTypeRequiredDescription

fids

string[]

YES

The Farcaster FID 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/farcaster/get_bids_received/stats' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
    "Fids": [
      15706
    ],
    "includeIgnore": true
  }'

Request URL

https://api.tako.so/v2/farcaster/get_bids_received/stats

Response

{
  "status": "success",
  "data": {
    "all": 10,
    "pending": 1,
    "pass": 2,
    "cancel": 7,
    "ignored": 0
  }
}

Last updated