GetLensCuratorLastBidPrice
API
API
/v2/lens/curator/last_bid_price
Title
GetLensCuratorLastBidPrice
Description
Retrieve the token amount from the last executed bid by the curator.
Authorization
Not required
Method
POST
Request Parameters
Name
Type
Required
Description
profileIds
int[]
YES
The curator’s Lens profile id list
Parameter Content Type
application/json
Request and Response Example
Request
cURL Code
curl -X 'POST' \
'https://api.tako.so/v2/lens/curator/last_bid_price' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"profileIds": [
36113
]
}'
Request URL
https://api.tako.so/v2/lens/curator/last_bid_price
Response
{
"status": "success",
"data": {
"data": {
"36113": {
"last_bid_price": 1000000000000
}
}
}
}
Last updated