Accounts
Get Current Account
Returns the upstream OnlyFans profile for a connected account. Returned in real time from OnlyFans, wrapped in the standard response envelope. Requires permission api_me_read.
https://public-api.buffmetrics.comGET/v1/{account_id}/me
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 (from
GET /v1/accounts).
curl --request GET "https://public-api.buffmetrics.com/v1/acct_XXXXX/me" \
--header "Authorization: Bearer YOUR_API_KEY"Response
200{
"data":{
"id":10582
"username":"creator_XXXXX"
"name":"Creator XX"
"isVerified":true
}
"_meta":{
"_credits":{
"used":1
}
"_rate_limits":{
"limit_minute":1000
"remaining_minute":999
"limit_day":50000
"remaining_day":49999
}
}
}