Posts
Delete Post
Permanently deletes a post from the creator's feed. This cannot be undone — the post, its media references, and engagement counters are removed from the OnlyFans-side feed. Requires permission api_posts_delete.
https://public-api.fansmetric.comDELETE/v1/{account_id}/posts/{post_id}
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 to delete. Numeric.
curl --request DELETE "https://public-api.fansmetric.com/v1/acct_XXXXX/posts/sample_post_id" \
--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
}
}
}