Accounts
List Accounts
Returns all OnlyFans accounts linked to the authenticated organization. Connected accounts come first, then accounts with sync lost. Fansly/ChatBlue/Subs accounts and offboarded/deleted accounts are excluded. Requires permission api_accounts_list.
https://public-api.buffmetrics.comGET/v1/accounts
Bearer
Authorization
defaultAuthorizationBearer <token>Send your FansMetric API key as a Bearer token in the Authorization header.
In: header
Query Parameters
limitintegerNumber of accounts per page. Default 20. Min 1, max 50 (values above 50 are clamped).
offsetintegerNumber of accounts to skip.
curl --request GET "https://public-api.buffmetrics.com/v1/accounts?limit=20&offset=0" \
--header "Authorization: Bearer YOUR_API_KEY"Response
200{
"data":[
0:{
"account_id":10000001
"username":"creator_XXXXX"
"display_name":"Creator XX"
"avatar":"https://public.onlyfans.com/files/.../avatar.jpg"
"avatar_thumbs":{
"c50":"https://thumbs.onlyfans.com/.../c50/.../avatar.jpg"
"c144":"https://thumbs.onlyfans.com/.../c144/.../avatar.jpg"
}
"fm_plan":"pro"
"fm_status":"connected"
}
]
"total":7
"limit":20
"offset":0
"next_page":null
}