Bookmarks
List Bookmark Categories
Returns the creator's saved-item categories, plus an all summary with total saved post and message counts and a preview strip — enough to build category tabs without fetching each bucket. An empty list alongside a non-zero count is normal: it means items are saved but no custom categories exist. Requires permission api_bookmarks_list_categories.
https://public-api.fansmetric.comGET/v1/{account_id}/bookmarks/categories
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
limitintegerPage size. Default 10. Min 1, max 100.
offsetintegerRows to skip. Default 0.
curl --request GET "https://public-api.fansmetric.com/v1/acct_XXXXX/bookmarks/categories?limit=20&offset=0" \
--header "Authorization: Bearer YOUR_API_KEY"Response
200{
"data":{
"list":[]
"hasMore":false
"order":"asc"
"sort":"recent"
"all":{
"postCount":0
"messageCount":5
"posts":[
0:{
"type":"text"
"canViewMedia":true
"postId":"10256279613051"
}
1:{
"type":"text"
"canViewMedia":true
"postId":"10260665407480"
}
]
}
}
"_meta":{
"_credits":{
"used":1
}
"_rate_limits":{
"limit_minute":1000
"remaining_minute":999
"limit_day":50000
"remaining_day":49999
}
}
}