Posts
Remove Post Bookmark
Takes a post out of the creator's Saved for later collection. Safe to call on a post that was never saved — it still comes back successful. Requires permission api_posts_unbookmark.
https://public-api.fansmetric.comDELETE/v1/{account_id}/posts/{post_id}/bookmark
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.
post_id*integerThe post ID. Numeric.
curl --request DELETE "https://public-api.fansmetric.com/v1/acct_XXXXX/posts/sample_post_id/bookmark" \
--header "Authorization: Bearer YOUR_API_KEY"Response
200{
"data":{
"success":true
}
"_meta":{
"_credits":{
"used":1
}
"_rate_limits":{
"limit_minute":1000
"remaining_minute":999
"limit_day":50000
"remaining_day":49999
}
}
}