Post Labels
Get Post Label
Returns one label with its post count and a short strip of preview thumbnails. The strip is a preview, not the full membership — to page through everything on a label, use List Posts with label={label_id}. Requires permission api_post_labels_read.
https://public-api.buffmetrics.comGET/v1/{account_id}/post-labels/{label_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.
label_id*integerThe label ID. Numeric — only the creator's own labels can be fetched here, not the archive buckets.
curl --request GET "https://public-api.buffmetrics.com/v1/acct_XXXXX/post-labels/sample_label_id" \
--header "Authorization: Bearer YOUR_API_KEY"Response
200{
"data":{
"id":9895427
"name":"doggy💕"
"type":"custom"
"isClearInProgress":false
"postsCount":2
"posts":[
0:{
"type":"photo"
"canViewMedia":true
"postId":"2676873092"
"url":"https://cdn2.onlyfans.com/files/..."
}
1:{
"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
}
}
}