Payouts
Get Chargebacks Chart
Returns a daily timeseries of chargebacks over a date window — one series of summed chargeback amounts (chartAmount) and one series of row counts (chartCount) — alongside the window's total and the delta versus the prior equal-length window. Backs the line/bar chart on the OnlyFans **Statistics → Chargebacks** page. Requires permission api_payouts_read_chargebacks_chart.
https://public-api.buffmetrics.comGET/v1/{account_id}/payouts/chargebacks/chart
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. Default 2 years ago, UTC.
YYYY-MM-DD HH:MM:SSor ISO 8601 (theTseparator is normalized to a space).end_datestringWindow end. Default end of today, UTC. Same format as
start_date.
curl --request GET "https://public-api.buffmetrics.com/v1/acct_XXXXX/payouts/chargebacks/chart?start_date=sample_start_date&end_date=sample_end_date" \
--header "Authorization: Bearer YOUR_API_KEY"Response
200{
"data":{
"chartAmount":[
0:{
"date":"2025-12-10T00:00:00+00:00"
"count":0
}
1:{
"date":"2025-12-11T00:00:00+00:00"
"count":68.87
}
2:{
"date":"2025-12-12T00:00:00+00:00"
"count":0
}
]
"chartCount":[
0:{
"date":"2025-12-10T00:00:00+00:00"
"count":0
}
1:{
"date":"2025-12-11T00:00:00+00:00"
"count":1
}
2:{
"date":"2025-12-12T00:00:00+00:00"
"count":0
}
]
"total":8398.35
"delta":926.7
}
"_meta":{
"_credits":{
"used":1
}
"_rate_limits":{
"limit_minute":1000
"remaining_minute":999
"limit_day":50000
"remaining_day":49999
}
}
}