Chatters
Compare Chatters
Returns per-chatter time-series across 11 chat performance stats for up to 5 chatters over a single window. Powers side-by-side comparison charts — every user shares the same bucket axis so their series overlay directly. Requires permission api_chat_chatters_compare.
https://public-api.fansmetric.comAuthorization
defaultAuthorizationBearer <token>Send your FansMetric API key as a Bearer token in the Authorization header.
In: header
Request Body
application/jsonuser_ids*arrayArray of FansMetric user UUIDs from List Chatters. 1–5 per call — batch client-side if you need more.
account_ids*arrayArray of OnlyFans numeric account IDs (as strings). At least one. Every ID must belong to your org — unknown IDs return
404.fromstringWindow start (UTC). Default 30 days ago. Accepts ISO 8601 or relative shorthand (
-30days).tostringWindow end (UTC). Default now. Must be after
from.team_idsarrayArray of team UUIDs. When set, every
user_idsentry must also be a member of one of these teams — otherwise the call returns404.granularitystringBucket size —
hour,day,week, ormonth. Default derived from window length.
curl --request POST "https://public-api.fansmetric.com/v1/chatters/compare" \
--header "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
--data '{
"from": "2026-07-11T00:00:00Z",
"to": "2026-08-10T23:59:59Z",
"user_ids": ["b7a9e0f1-2fa4-4d0b-9c2a-6c4d0b41f2c7", "c5d6e7f8-9012-3456-7890-abcdef012345"],
"account_ids": ["100000001", "100000002"],
"granularity": "day"
}'Response
200