Notifications
Get Notification Message Settings
Returns the in-site notification preferences for the "Messages" group — the per-event toggles shown under OnlyFans → Settings → Notifications → Site → Messages. Use the returned {code, value} pairs as input to [Update Notification Settings](/api-reference/notifications/update-settings). Requires permission api_notifications_read_settings.
https://public-api.buffmetrics.comGET/v1/{account_id}/notifications/settings/message
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.
Query Parameters
groupstringOF notification group. Default
1(the standard Messages group used by every account).
curl --request GET "https://public-api.buffmetrics.com/v1/acct_XXXXX/notifications/settings/message?group=sample_group" \
--header "Authorization: Bearer YOUR_API_KEY"Response
200{
"data":[
0:{
"code":"messages"
"name":"Messages"
"items":[
0:{
"code":"new_message"
"name":"New message"
"value":true
}
1:{
"code":"tip_received"
"name":"Tip received"
"value":true
}
2:{
"code":"ppv_unlocked"
"name":"Paid message unlocked"
"value":false
}
]
}
]
"_meta":{
"_credits":{
"used":1
}
"_rate_limits":{
"limit_minute":1000
"remaining_minute":999
"limit_day":50000
"remaining_day":49999
}
}
}