Profile stats API and a proper profile page
Profile stats API and a proper profile page
Hey!
We added profile-level stats to Postproxy.
Post analytics tell you how a specific piece of content performed. Profile stats answer a different question: how is the account itself doing over time?
You can now fetch metrics like follower counts, audience size, page views, reach, engagement, and other profile-level numbers exposed by each platform. The exact fields vary by network, because naturally every platform had to invent its own version of reality, but the API shape stays predictable.
Example:
curl -X GET \
"https://api.postproxy.dev/api/profiles/prof_li_001/stats?placement_id=108520199&from=2026-04-01T00:00:00Z" \
-H "Authorization: Bearer YOUR_API_KEY"
The response gives you a time series of snapshots:
{
"data": {
"profile_id": "prof_li_001",
"platform": "linkedin",
"placement_id": "108520199",
"records": [
{
"stats": {
"followerCount": 4500,
"shareCount": 8,
"likeCount": 80,
"allPageViews": 12000
},
"recorded_at": "2026-05-09T08:00:00Z"
}
]
}
}
Snapshots are collected roughly once a day, which makes this useful for:
-
reporting dashboards
-
tracking follower or audience growth
-
monitoring profile health across clients or brands
-
comparing account-level trends with individual post performance
For placement-based networks such as Facebook, LinkedIn, and Telegram, stats are scoped to a specific page, organization, or channel via placement_id. Other networks return profile-level stats directly.
We also added a new profile details page in the app.
Open any connected profile and you’ll now see its current status, total posts, recent publishing health, and the latest available performance snapshot in one place.
API docs:
https://postproxy.dev/reference/profiles/#profile-stats
You can check the new profile page directly in the app as well:
https://app.postproxy.dev/profiles
This is useful data to have close at hand. Especially when someone asks, “How is that account doing?” and apparently expects an answer.
Cheers,
Dmitry