The Members endpoint returns posting activity and engagement metrics per workspace member, optionally scoped to a single account and time range. Use it to build leaderboards, performance reviews, and workload reports.
Authentication: Bearer API token
Scope: analytics
Headers:
Authorization: Bearer-API YOUR_API_KEY
Publer-Workspace-Id: YOUR_WORKSPACE_ID
GET /api/v1/analytics/members
Retrieves analytics for each workspace member within a required date range. Optionally filter to a specific social account.
from
date (YYYY-MM-DD)
Yes
Start date (inclusive).
to
date (YYYY-MM-DD)
Yes
End date (inclusive).
account_id
string
No
Restrict analytics to one social account. Omit for all workspace accounts.
Fields:
engagements
: Total engagements = likes + comments + shares + post clicks (platform-dependent).
posts
: Number of posts created by the member in the range.
reach
: Sum of post reach where supported by the platform/account type (may be omitted for unsupported types).
account_ids[]
: Accounts the member posted to.
user
: Member info { id, name, picture }
.
Date range is required; ensure from
≤ to
.
If account_id
is omitted, metrics aggregate across all accessible accounts in the workspace.
reach
may be missing for networks that don’t expose member-level reach. Handle absent fields gracefully.
Insights refresh automatically (about every 24 hours). Use “Sync Insights” in the UI to update on demand.
Charts — Discover chart IDs and fetch chart data
Post Insights — Per‑post performance analytics
Hashtag Analysis — Hashtag performance
Best Times — Suggested posting time slots
Retrieves analytics data for workspace members showing their posting activity and engagement metrics.
Start date for analytics data range (YYYY-MM-DD format). Filters data from this date onwards
{"value":"2024-01-01"}
End date for analytics data range (YYYY-MM-DD format). Filters data up to this date
{"value":"2024-12-31"}
Optional account ID to filter analytics data for a specific social media account
{"value":"63c675b54e299e9cf2b667ea"}
ID of the workspace to retrieve members from
Members analytics data with performance metrics
Unauthorized
Permission denied - requires analytics access or paying subscription
GET /api/v1/analytics/members HTTP/1.1
Host: app.publer.com
Publer-Workspace-Id: text
Accept: */*
[
{
"engagements": 1250,
"posts": 42,
"reach": 15000,
"account_ids": [
"63c675b54e299e9cf2b667ea",
"63c675b54e299e9cf2b667eb"
],
"user": {
"id": "5b1ec026db27977424e8599e",
"name": "John Smith",
"picture": "https://publer-dev.s3.amazonaws.com/uploads/photos/thumb_mini_magick20250123-28707-otuw0w.png"
}
}
]