GetLensBidsCreatedStats

API

API/v2/lens/get_bids_created/stats

Title

GetLensBidsCreatedStats

Description

Analyze the relevant data of bids created on Lens.

Authorization

Not required

Method

POST

Request Parameters

NameTypeRequiredDescription

profileIds

string[]

YES

The Lens profile id list of the bidders

Parameter Content Type

application/json

Request and Response Example

Request

cURL Code

curl -X 'POST' \
  'https://api.tako.so/v2/lens/get_bids_created/stats' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
    "profileIds": [
      36112
    ]
  }'

Request URL

https://api.tako.so/v2/lens/get_bids_created/stats

Response

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

Last updated