GET
/
stats
/
top_connected_accounts_by_engagement
curl --request GET \
  --url https://api.growi.io/api/public/v1/stats/top_connected_accounts_by_engagement \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {}
}

Retrieves your top-performing social accounts ranked by engagement within a specified date range.

Request Parameters

ParameterTypeDescriptionRequired
start_dateStringStart date in MM/DD/YYYY formatYes
end_dateStringEnd date in MM/DD/YYYY formatYes
limitIntegerLimit the number of results. Default is 4. Recommended is 20. Set to 10,000 to get all data.No

Request Example

curl -X GET "https://api.growi.io/api/public/v1/stats/top_connected_accounts_by_engagement?start_date=01/01/2023&end_date=01/31/2023&limit=5" \
     -H "Authorization: Bearer YOUR_PUBLIC_API_KEY" \
     -H "Content-Type: application/json"

Response Example

{
  "success": true,
  "data": {
    "top_connected_accounts_by_engagement": [
      {
        "id": 100001,
        "username": "tech.trends",
        "provider": "Tik Tok",
        "profile_share_url": "https://www.tiktok.com/@tech.trends",
        "metrics": {
          "views": 801298,
          "likes": 23163,
          "comments": 514,
          "shares": 1877,
          "total_engagement": 826852
        }
      },
      {
        "id": 100002,
        "username": "lifestyle.daily",
        "provider": "Instagram",
        "profile_share_url": "https://www.instagram.com/lifestyle.daily/",
        "metrics": {
          "views": 648150,
          "likes": 19767,
          "comments": 239,
          "shares": 8655,
          "total_engagement": 676811
        }
      },
      {
        "id": 100003,
        "username": "fitness.guide",
        "provider": "Instagram",
        "profile_share_url": "https://www.instagram.com/fitness.guide/",
        "metrics": {
          "views": 409630,
          "likes": 13975,
          "comments": 76,
          "shares": 0,
          "total_engagement": 423681
        }
      },
      {
        "id": 100004,
        "username": "food.explorer",
        "provider": "Instagram",
        "profile_share_url": "https://www.instagram.com/food.explorer/",
        "metrics": {
          "views": 382049,
          "likes": 5274,
          "comments": 275,
          "shares": 1848,
          "total_engagement": 389446
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

start_date
string
default:05/01/2025
required

Start date in MM/DD/YYYY format

end_date
string
default:05/08/2025
required

End date in MM/DD/YYYY format

limit
integer
default:4

Limit the number of results. Default is 4. Recommended is 20. Set to 10,000 to get all data.

Response

200
application/json

Top connected accounts by engagement retrieved successfully

The response is of type object.