Streaks

List Activity Streaks

Returns the creator's activity streaks (consecutive-day runs of posting / streaming / messaging / story activity) that intersect a date window. The OF web UI calls this endpoint per calendar month — scan one month at a time to mirror that behavior. Requires permission api_streaks_list.

https://public-api.fansmetric.com
GET/v1/{account_id}/streaks
Bearer

Authorization

default
AuthorizationBearer <token>

Send your FansMetric API key as a Bearer token in the Authorization header.

In: header

Path Parameters

  • account_id*integer

    OnlyFans numeric account ID.

Query Parameters

  • start_datestring

    Window start. Default first of current UTC month.

  • end_datestring

    Window end. Default end of today, UTC.

curl --request GET "https://public-api.fansmetric.com/v1/acct_XXXXX/streaks?start_date=sample_start_date&end_date=sample_end_date" \
  --header "Authorization: Bearer YOUR_API_KEY"

Response

200
{
"data":{
"list":[
0:{
"id":614673203
"startDate":"2025-09-29T00:00:00+00:00"
"endDate":"2026-05-27T00:00:00+00:00"
"isActive":true
"postsCount":5354
"daysCount":241
"streamsDuration":0
"storiesCount":999
"chatsCount":199152
"frozenDays":[]
}
]
"hasMore":false
}
"_meta":{
"_credits":{
"used":1
}
"_rate_limits":{
"limit_minute":1000
"remaining_minute":999
"limit_day":50000
"remaining_day":49999
}
}
}