Mass Messages
Get Mass Message
Returns the latest snapshot of a single queue item — sent or still-scheduled. Same per-item fetch the OnlyFans web app uses when opening a queue row. Useful for refreshing a single row's sentCount / viewedCount without re-listing the whole queue, or for reading back the text/media/scheduledDate of a scheduled message before editing it. Requires permission api_mass_messages_read.
https://public-api.buffmetrics.comGET/v1/{account_id}/mass-messages/queue/{queue_id}
Bearer
Authorization
defaultAuthorizationBearer <token>Send your FansMetric API key as a Bearer token in the Authorization header.
In: header
Path Parameters
account_id*integerOnlyFans numeric account ID.
queue_id*integerThe queue ID of the mass message to fetch.
curl --request GET "https://public-api.buffmetrics.com/v1/acct_XXXXX/mass-messages/queue/sample_queue_id" \
--header "Authorization: Bearer YOUR_API_KEY"Response
200{
"data":{
"success":true
"queue":{
"id":123
"date":"2026-06-05T12:00:00+00:00"
"text":"VIP drop tomorrow"
"giphyId":null
"textCropped":"VIP drop tomorrow"
"isFree":true
"sentCount":0
"viewedCount":0
"canUnsend":true
"unsendSeconds":60
"isCanceled":false
"mediaTypes":null
"hasError":false
"releaseForms":[]
}
}
"_meta":{
"_credits":{
"used":1
}
"_rate_limits":{
"limit_minute":1000
"remaining_minute":999
"limit_day":50000
"remaining_day":49999
}
}
}