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

List Story Archive

Retrieve a list of your archived stories.

GET
/api/{account}/stories/archive
AuthorizationBearer <token>

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

In: header

Path Parameters

accountstring

The Account ID

Query Parameters

limit?integer

Number of stories to return (default = 18)

marker?string

The marker used for pagination. Default: null

Response Body

curl -X GET "https://app.onlyfansapi.com/api/string/stories/archive?limit=18&marker=1739155047"
{
  "data": {
    "list": [
      {
        "id": 123,
        "createdAt": "2025-01-01T01:01:01+00:00",
        "media": [
          {
            "id": 123,
            "type": "photo",
            "convertedToVideo": false,
            "canView": true,
            "hasError": false,
            "createdAt": "2025-01-01T01:01:01+00:00",
            "isReady": true,
            "files": {
              "full": {
                "url": "https://cdn2.onlyfans.com/files/...",
                "width": 600,
                "height": 400,
                "size": 0,
                "sources": []
              },
              "thumb": {
                "url": "https://cdn2.onlyfans.com/files/...",
                "width": 300,
                "height": 300,
                "size": 0
              },
              "preview": {
                "url": "https://cdn2.onlyfans.com/files/...",
                "width": 600,
                "height": 400,
                "size": 0,
                "sources": {
                  "w150": "https://cdn2.onlyfans.com/files/..."
                }
              },
              "squarePreview": {
                "url": "https://cdn2.onlyfans.com/files/...",
                "width": 960,
                "height": 960,
                "size": 0,
                "sources": {
                  "w150": "https://thumbs.onlyfans.com/...",
                  "w480": "https://thumbs.onlyfans.com/..."
                }
              }
            },
            "duration": 0,
            "hasCustomPreview": false,
            "videoSources": {
              "240": null,
              "720": null
            }
          }
        ],
        "question": null
      }
    ],
    "marker": 123,
    "hasMore": false
  },
  "_meta": {
    "_credits": {
      "used": 1,
      "balance": 1000999751,
      "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."
    }
  }
}