Trial Links
Get Trial Links Overview
Returns the trial-scoped summary card on OF's Trials tab — offers / claims with deltas and a small chart. Same upstream endpoint as /earnings/overview with by=trials carved out as a dedicated route. Requires permission api_trial_links_read_overview.
https://public-api.buffmetrics.comGET/v1/{account_id}/trial-links/overview
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.
Query Parameters
start_datestringWindow start.
YYYY-MM-DD HH:MM:SSUTC. Default: 2 years ago.end_datestringWindow end. Same format. Default: end of today UTC.
curl --request GET "https://public-api.buffmetrics.com/v1/acct_XXXXX/trial-links/overview?start_date=sample_start_date&end_date=sample_end_date" \
--header "Authorization: Bearer YOUR_API_KEY"Response
200{
"data":{
"trials":{
"hasStatistic":true
"offers":{
"total":6
"delta":1
}
"claims":{
"total":89
"delta":12
}
"chartData":[
0:{
"date":"2026-06-01"
"count":2
}
1:{
"date":"2026-06-02"
"count":4
}
]
}
}
"_meta":{
"_credits":{
"used":1
}
"_rate_limits":{
"limit_minute":1000
"remaining_minute":999
"limit_day":50000
"remaining_day":49999
}
}
}