Posts
Get Post
Returns one post in full — caption, attached media, like count, expiry, and which parts can still be edited. Use it behind a post detail view: List Posts returns the same shape but leaves out favoritesCount and the edit flags. Requires permission api_posts_read.
https://public-api.fansmetric.comGET/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. Numeric.
curl --request GET "https://public-api.fansmetric.com/v1/acct_XXXXX/posts/sample_post_id" \
--header "Authorization: Bearer YOUR_API_KEY"Response
200{
"data":{
"id":2676873092
"postedAt":"2026-08-15T12:04:11+00:00"
"postedAtPrecise":"1786872300.000000"
"text":"<p>Hello, fans!</p>"
"rawText":"Hello, fans!"
"author":{
"id":12345678
"_view":"a"
}
"favoritesCount":42
"mediaCount":3
"isMediaReady":true
"canDelete":true
"canEdit":true
"canEditText":true
"canEditMedia":false
"tipsAmount":"$0"
}
"_meta":{
"_credits":{
"used":1
}
"_rate_limits":{
"limit_minute":1000
"remaining_minute":999
"limit_day":50000
"remaining_day":49999
}
}
}