Post Labels

Remove Post from Label

Takes one post off a label. The post itself is untouched — only the association goes. There is no bulk remove, so this is one post per call. Requires permission api_post_labels_remove_post.

https://public-api.buffmetrics.com
DELETE/v1/{account_id}/post-labels/{label_id}/posts/{post_id}
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.

  • label_id*integer

    The label to remove from. Numeric.

  • post_id*integer

    The post to remove. Numeric.

curl --request DELETE "https://public-api.buffmetrics.com/v1/acct_XXXXX/post-labels/sample_label_id/posts/sample_post_id" \
  --header "Authorization: Bearer YOUR_API_KEY"

Response

200
{
"data":{
"id":9895427
"name":"doggy💕"
"type":"custom"
"isClearInProgress":false
"postsCount":1
"posts":[
0:{
"type":"photo"
"canViewMedia":true
"postId":"2661473796"
"url":"https://cdn2.onlyfans.com/files/..."
}
]
}
"_meta":{
"_credits":{
"used":1
}
"_rate_limits":{
"limit_minute":1000
"remaining_minute":999
"limit_day":50000
"remaining_day":49999
}
}
}