Bookmarks

List Bookmarks

Returns the creator's Saved for later collection. Saved posts and saved chat messages come back in the same feed, so branch on responseType before rendering a row — saved messages carry chat fields that saved posts do not. Narrow to one kind with entity_type. Requires permission api_bookmarks_list.

https://public-api.buffmetrics.com
GET/v1/{account_id}/bookmarks
Bearer

Authorization

default
AuthorizationBearer <token>

Send your FansMetric API key as a Bearer token in the Authorization header.

In: header

Path Parameters

  • account_id*integer

    OnlyFans numeric account ID.

Query Parameters

  • limitinteger

    Page size. Default 10. Min 1, max 100.

  • offsetinteger

    Rows to skip. Default 0.

  • categorystring

    Media bucket to return: all (default), photos, videos, audios, other, locked. other holds text-only items; locked holds items whose paywall can no longer be opened.

  • entity_typestring

    What to include: posts, messages, or all (default) for both.

  • filterstring

    Restrict by age: date_last_1_week, date_last_1_month, date_last_3_months. Omit for all time.

curl --request GET "https://public-api.buffmetrics.com/v1/acct_XXXXX/bookmarks?limit=20&offset=0&category=sample_category" \
  --header "Authorization: Bearer YOUR_API_KEY"

Response

200
{
"data":{
"list":[
0:{
"responseType":"message"
"id":10256279613051
"text":"<p>saved this one for later</p>"
"price":0
"isFree":true
"isOpened":true
"isLiked":false
"isPinned":false
"isAddedToBookmarks":true
"mediaCount":0
"isMediaReady":true
"media":[]
"previews":[]
"createdAt":"2026-07-02T09:14:22+00:00"
"changedAt":"2026-07-02T09:14:22+00:00"
"chatUserId":987654321
"fromUser":{
"id":987654321
"_view":"c"
}
"canPurchase":false
"canPurchaseReason":"free"
}
]
"hasMore":false
}
"_pagination":{
"next_page":null
}
"_meta":{
"_credits":{
"used":1
}
"_rate_limits":{
"limit_minute":1000
"remaining_minute":999
"limit_day":50000
"remaining_day":49999
}
}
}