We just released our native n8n integration!» Try now
OnlyFans API
Stories

Get Story Stats

Retrieve viewer count, likes count, comments count, and tips statistics for a specific story by its ID.

GET
/api/{account}/stories/{story_id}/stats
AuthorizationBearer <token>

Get your API Key from OnlyFansAPI Console - https://app.onlyfansapi.com/api-keys

In: header

Path Parameters

accountstring

The Account ID

story_idinteger

The ID of the story to get stats for

Response Body

curl -X GET "https://app.onlyfansapi.com/api/string/stories/0/stats"
{
  "data": {
    "storyLookCount": "123",
    "storyLookAll": [
      "2025-01-01T01:01:01+00:00"
    ],
    "storyLikeCount": 123,
    "storyLikeAll": [
      "2025-01-01T01:01:01+00:00"
    ],
    "storyCommentCount": 123,
    "storyCommentAll": [
      "2025-01-01T01:01:01+00:00"
    ],
    "storyTipCount": 123,
    "storyTipAll": [
      "2025-01-01T01:01:01+00:00"
    ],
    "storyTipSum": 0,
    "storyLookChart": [
      {
        "date": "2025-01-01T01:01:01+00:00",
        "count": 123
      },
      {
        "count": 123
      }
    ],
    "storyLikeChart": [
      {
        "date": "2025-01-01T01:01:01+00:00",
        "count": 123
      }
    ],
    "storyCommentChart": [
      {
        "date": "2025-01-01T01:01:01+00:00",
        "count": 123
      }
    ],
    "storyTipChart": [
      {
        "date": "2025-01-01T01:01:01+00:00",
        "count": 123
      }
    ],
    "storyTipSumChart": [
      {
        "date": "2025-01-01T01:01:01+00:00",
        "count": 123
      }
    ],
    "createdAt": "2025-01-01T01:01:01+00:00"
  },
  "_meta": {
    "_credits": {
      "used": 1,
      "balance": 1000999719,
      "note": "Always"
    },
    "_cache": {
      "is_cached": false,
      "note": "Cache disabled for this endpoint"
    },
    "_rate_limits": {
      "limit_minute": 5000,
      "limit_day": null,
      "remaining_minute": 4999,
      "remaining_day": null,
      "notice": "We have decided to remove our daily rate limits. Please remove any references to these in your integrations."
    }
  }
}