ActiveStatistics

API

Request Parameters

At least one of the profileIds and fids needs to be provided.

Provide fids when ecosystem is farcaster, and provide profileIds when ecosystem is lens

Parameter Content Type

application/json

Request and Response Example

Request

cURL Code

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

Request URL

https://api.tako.so/v2/lens/active_statistics

Response

{
  "status": "success",
  "data": {
    "data": {
      "36112": {
        "comment": 0,
        "follow": 0,
        "mirror": 5
      }
    }
  }
}

Last updated