GetFarcasterCuratorLastBidPrice

API

API/v2/farcaster/curator/last_bid_price

Title

GetFarcasterCuratorLastBidPrice

Description

Retrieve the token amount from the last executed bid by the curator

Authorization

Not required

Method

POST

Request Parameters

NameTypeRequiredDescription

fids

int[]

YES

The curator’s Farcaster FID list

Parameter Content Type

application/json

Request and Response Example

Request

cURL Code

curl -X 'POST' \
  'https://api.tako.so/v2/farcaster/curator/last_bid_price' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
    "fids": [
      15706
    ]
  }'

Request URL

https://api.tako.so/v2/farcaster/curator/last_bid_price

Response

{
  "status": "success",
  "data": {
    "data": {
      "15706": {
        "last_bid_price": "0"
      }
    }
  }
}

Last updated