> ## Documentation Index
> Fetch the complete documentation index at: https://docs.onlyfansapi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Profile Posts (/api-reference/profile-content/list-profile-posts)

Retrieve posts from another user's profile using your connected account's access. Follow \_pagination.next\_page for more results. Publication-date descending order uses a precise timestamp cursor; other ordering or an explicit offset uses offset pagination. Subscription and purchase requirements still apply.

## OpenAPI

````yaml https://app.onlyfansapi.com/scribe-docs/openapi.yaml get /api/{account}/users/{user_id}/posts
openapi: 3.0.3
info:
  title: OnlyFans API
  description: ""
  version: 1.0.0
servers:
  - url: https://app.onlyfansapi.com
security:
  - default: []
tags:
  - name: API Keys
    description: ""
  - name: Account
    description: Endpoints for your linked accounts
  - name: Analytics - Financial
    description: APIs for retrieving financial analytics data
  - name: Analytics - Summary
    description: APIs for retrieving summary analytics data
  - name: Banking
    description: Operations related to user banking details, payout methods, legal
      and tax information, and account country settings.
  - name: Banned Words
    description: Reference list of OnlyFans banned words used by the
      `blockBannedWords` screening parameter
  - name: Blocked / Restricted Users
    description: APIs for listing the users an account has blocked or restricted
  - name: Chargebacks
    description: ""
  - name: Chat Messages
    description: ""
  - name: Chats
    description: ""
  - name: Client Sessions
    description: ""
  - name: Connect OnlyFans Account
    description: ""
  - name: Data Exports
    description: APIs for managing data exports
  - name: Endpoints
    description: ""
  - name: Engagement / Messages
    description: ""
  - name: Fans
    description: APIs for managing OnlyFans fans (subscribers)
  - name: Fans - AI Summary
    description: APIs for generating and retrieving AI-powered fan profile summaries
  - name: Following
    description: APIs for managing OnlyFans followings (people you're subscribed to)
  - name: Free Trial Links
    description: APIs for managing Free Trial Links
  - name: Giphy
    description: ""
  - name: Link Tags
    description: APIs for managing tags on free trial links, tracking links, and Smart Links
  - name: Mass Messaging
    description: ""
  - name: Media
    description: ""
  - name: Media Vault
    description: ""
  - name: Media Vault Lists
    description: ""
  - name: Notifications
    description: Endpoints for managingr account notifications
  - name: Payouts
    description: ""
  - name: Post Comments
    description: ""
  - name: Post Labels
    description: APIs for managing your post labels
  - name: Posts
    description: APIs for managing OnlyFans posts
  - name: Profile Content
    description: Read another user's profile content using your connected OnlyFans
      account. OnlyFans enforces subscription and purchase requirements; these
      endpoints do not unlock content. Response samples use captured OnlyFans
      payloads with anonymized IDs, text, and media URLs; OFAPI metadata values
      are illustrative.
  - name: Promotions
    description: ""
  - name: Public Profiles
    description: ""
  - name: Queue
    description: ""
  - name: Release Forms
    description: APIs for managing OnlyFans release forms
  - name: Saved For Later (Messages)
    description: ""
  - name: Saved For Later (Posts)
    description: ""
  - name: Settings
    description: ""
  - name: Shared Free Trial Links
    description: APIs for Free Trial Links that other OF creators have shared with
      this account. Revenue, cost, and spender data are not available for shared
      links.
  - name: Shared Tracking Links
    description: APIs for Tracking Links (campaigns) that other OF creators have
      shared with this account. Revenue, cost, and spender data are not
      available for shared campaigns.
  - name: Smart Link Postbacks
    description: APIs for managing Smart Link postback destinations
  - name: Smart Links
    description: APIs for managing Smart Links (Free Trial Links and Tracking Links
      with pooled inventory)
  - name: Statistics
    description: ""
  - name: Stored Free Trial Links
    description: Instant APIs for retrieving stored free trial links from the
      OnlyFansAPI Cache (free, no credits used)
  - name: Stored Shared Free Trial Links
    description: Instant APIs for retrieving stored shared Free Trial Links from the
      OnlyFansAPI Cache (free, no credits used)
  - name: Stored Shared Tracking Links
    description: Instant APIs for retrieving stored shared Tracking Links
      (campaigns) from the OnlyFansAPI Cache (free, no credits used)
  - name: Stored Tracking Links
    description: Instant APIs for retrieving stored tracking links from the
      OnlyFansAPI Cache (free, no credits used)
  - name: Stories
    description: APIs for managing OnlyFans stories
  - name: Story Highlights
    description: APIs for managing OnlyFans story highlights
  - name: Subscription Bundles
    description: ""
  - name: Tracking Links
    description: APIs for managing tracking links
  - name: Transactions
    description: APIs for managing OnlyFans transactions
  - name: Usage
    description: Credit usage reporting for your team
  - name: User List Collections
    description: ""
  - name: Users
    description: APIs for fetching OnlyFans users
  - name: Webhooks
    description: ""
paths:
  /api/{account}/users/{user_id}/posts:
    parameters:
      - in: path
        name: account
        description: The Account ID
        example: acct_XXXXXXXXXXXXXXX
        required: true
        schema:
          type: string
      - in: path
        name: user_id
        description: The other user's numeric OnlyFans ID. Resolve a username with GET
          /{account}/users/{username} first.
        example: 308625502
        required: true
        schema:
          type: integer
    get:
      summary: List Profile Posts
      operationId: listProfilePosts
      description: Retrieve posts from another user's profile using your connected
        account's access. Follow _pagination.next_page for more results.
        Publication-date descending order uses a precise timestamp cursor; other
        ordering or an explicit offset uses offset pagination. Subscription and
        purchase requirements still apply.
      parameters:
        - in: query
          name: limit
          description: "Number of posts, from 1 to 100. Default: 10."
          example: 10
          required: false
          schema:
            type: integer
            description: "Number of posts, from 1 to 100. Default: 10."
            example: 10
        - in: query
          name: offset
          description: Number of posts to skip. Use beforePublishTime for publication-time
            cursor pagination.
          example: null
          required: false
          schema:
            type: integer
            description: Number of posts to skip. Use beforePublishTime for publication-time
              cursor pagination.
            example: null
        - in: query
          name: order
          description: "Order posts by this field. Default: publish_date."
          example: publish_date
          required: false
          schema:
            type: string
            description: "Order posts by this field. Default: publish_date."
            example: publish_date
            enum:
              - publish_date
              - favorites_count
              - tips_summ
        - in: query
          name: sort
          description: "Sort direction. Default: desc."
          example: desc
          required: false
          schema:
            type: string
            description: "Sort direction. Default: desc."
            example: desc
            enum:
              - desc
              - asc
        - in: query
          name: beforePublishTime
          description: Publication timestamp cursor for older posts. Preserve decimal
            precision.
          example: null
          required: false
          schema:
            type: string
            description: Publication timestamp cursor for older posts. Preserve decimal
              precision.
            example: null
        - in: query
          name: query
          description: Search posts by text.
          example: null
          required: false
          schema:
            type: string
            description: Search posts by text.
            example: null
        - in: query
          name: pinned
          description: Set to true to request pinned posts.
          example: false
          required: false
          schema:
            type: boolean
            description: Set to true to request pinned posts.
            example: false
        - in: query
          name: counters
          description: "Include post counters. Default: false."
          example: true
          required: false
          schema:
            type: boolean
            description: "Include post counters. Default: false."
            example: true
        - in: query
          name: minimumPublishDate
          description: Only include posts after this date.
          example: null
          required: false
          schema:
            type: string
            description: Only include posts after this date.
            example: null
      responses:
        "200":
          description: Anonymized captured response with another page available
          content:
            application/json:
              schema:
                type: object
                example:
                  data:
                    list:
                      - author:
                          id: 308625502
                          _view: a
                        responseType: post
                        id: 987650002
                        postedAt: 2026-02-08T15:32:46+00:00
                        postedAtPrecise: "1770564766.000000"
                        text: <p>A new update from my profile.</p>
                        isMarkdownDisabled: true
                        canReport: true
                        canComment: true
                        favoritesCount: 660
                        mediaCount: 1
                        isMediaReady: true
                        isOpened: true
                        canToggleFavorite: true
                        commentsCount: 8
                        tipsAmount: $25
                        media:
                          - id: 987650003
                            type: photo
                            convertedToVideo: false
                            canView: true
                            hasError: false
                            createdAt: null
                            isReady: true
                            files:
                              full:
                                url: https://cdn2.onlyfans.com/files/example/media-2.jpg
                                width: 1290
                                height: 1687
                                size: 0
                                sources: []
                              thumb:
                                url: https://cdn2.onlyfans.com/files/example/media-3.jpg
                                width: 300
                                height: 300
                                size: 0
                              preview:
                                url: https://cdn2.onlyfans.com/files/example/media-4.jpg
                                width: 960
                                height: 1256
                                size: 0
                              squarePreview:
                                url: https://cdn2.onlyfans.com/files/example/media-5.jpg
                                width: 960
                                height: 960
                                size: 0
                            duration: 0
                            hasCustomPreview: false
                            videoSources:
                              "240": null
                              "720": null
                        canViewMedia: true
                      - author:
                          id: 308625502
                          _view: a
                        responseType: post
                        id: 987650004
                        postedAt: 2026-02-04T03:31:18+00:00
                        postedAtPrecise: "1770175878.000000"
                        text: <p>A new update from my profile.</p>
                        isMarkdownDisabled: true
                        canReport: true
                        canComment: true
                        favoritesCount: 596
                        mediaCount: 1
                        isMediaReady: true
                        isOpened: true
                        canToggleFavorite: true
                        commentsCount: 11
                        tipsAmount: $0
                        media:
                          - id: 987650005
                            type: photo
                            convertedToVideo: false
                            canView: true
                            hasError: false
                            createdAt: null
                            isReady: true
                            files:
                              full:
                                url: https://cdn2.onlyfans.com/files/example/media-6.jpg
                                width: 1290
                                height: 936
                                size: 0
                                sources: []
                              thumb:
                                url: https://cdn2.onlyfans.com/files/example/media-7.jpg
                                width: 300
                                height: 300
                                size: 0
                              preview:
                                url: https://cdn2.onlyfans.com/files/example/media-8.jpg
                                width: 960
                                height: 697
                                size: 0
                              squarePreview:
                                url: https://cdn2.onlyfans.com/files/example/media-9.jpg
                                width: 960
                                height: 960
                                size: 0
                            duration: 0
                            hasCustomPreview: false
                            videoSources:
                              "240": null
                              "720": null
                        canViewMedia: true
                      - author:
                          id: 308625502
                          _view: a
                        responseType: post
                        id: 987650006
                        postedAt: 2026-01-23T09:35:49+00:00
                        postedAtPrecise: "1769160949.000000"
                        text: <p>A new update from my profile.</p>
                        isMarkdownDisabled: true
                        canReport: true
                        canComment: true
                        favoritesCount: 647
                        mediaCount: 1
                        isMediaReady: true
                        isOpened: true
                        canToggleFavorite: true
                        commentsCount: 7
                        tipsAmount: $10
                        media:
                          - id: 987650007
                            type: photo
                            convertedToVideo: false
                            canView: true
                            hasError: false
                            createdAt: null
                            isReady: true
                            files:
                              full:
                                url: https://cdn2.onlyfans.com/files/example/media-10.jpg
                                width: 1290
                                height: 1707
                                size: 0
                                sources: []
                              thumb:
                                url: https://cdn2.onlyfans.com/files/example/media-11.jpg
                                width: 300
                                height: 300
                                size: 0
                              preview:
                                url: https://cdn2.onlyfans.com/files/example/media-12.jpg
                                width: 960
                                height: 1271
                                size: 0
                              squarePreview:
                                url: https://cdn2.onlyfans.com/files/example/media-13.jpg
                                width: 960
                                height: 960
                                size: 0
                            duration: 0
                            hasCustomPreview: false
                            videoSources:
                              "240": null
                              "720": null
                        canViewMedia: true
                      - author:
                          id: 308625502
                          _view: a
                        responseType: post
                        id: 987650008
                        postedAt: 2026-01-15T14:58:43+00:00
                        postedAtPrecise: "1768489123.000000"
                        text: <p>A new update from my profile.</p>
                        isMarkdownDisabled: true
                        canReport: true
                        canComment: true
                        favoritesCount: 551
                        mediaCount: 1
                        isMediaReady: true
                        isOpened: true
                        canToggleFavorite: true
                        commentsCount: 9
                        tipsAmount: $0
                        media:
                          - id: 987650009
                            type: photo
                            convertedToVideo: false
                            canView: true
                            hasError: false
                            createdAt: null
                            isReady: true
                            files:
                              full:
                                url: https://cdn2.onlyfans.com/files/example/media-14.jpg
                                width: 1290
                                height: 1692
                                size: 0
                                sources: []
                              thumb:
                                url: https://cdn2.onlyfans.com/files/example/media-15.jpg
                                width: 300
                                height: 300
                                size: 0
                              preview:
                                url: https://cdn2.onlyfans.com/files/example/media-16.jpg
                                width: 960
                                height: 1260
                                size: 0
                              squarePreview:
                                url: https://cdn2.onlyfans.com/files/example/media-17.jpg
                                width: 960
                                height: 960
                                size: 0
                            duration: 0
                            hasCustomPreview: false
                            videoSources:
                              "240": null
                              "720": null
                        canViewMedia: true
                      - author:
                          id: 308625502
                          _view: a
                        responseType: post
                        id: 987650010
                        postedAt: 2026-01-08T20:44:59+00:00
                        postedAtPrecise: "1767905099.000000"
                        text: <p>A new update from my profile.</p>
                        isMarkdownDisabled: true
                        canReport: true
                        canComment: true
                        favoritesCount: 489
                        mediaCount: 1
                        isMediaReady: true
                        isOpened: true
                        canToggleFavorite: true
                        commentsCount: 8
                        tipsAmount: $5
                        media:
                          - id: 987650011
                            type: photo
                            convertedToVideo: false
                            canView: true
                            hasError: false
                            createdAt: null
                            isReady: true
                            files:
                              full:
                                url: https://cdn2.onlyfans.com/files/example/media-18.jpg
                                width: 1290
                                height: 1686
                                size: 0
                                sources: []
                              thumb:
                                url: https://cdn2.onlyfans.com/files/example/media-19.jpg
                                width: 300
                                height: 300
                                size: 0
                              preview:
                                url: https://cdn2.onlyfans.com/files/example/media-20.jpg
                                width: 960
                                height: 1255
                                size: 0
                              squarePreview:
                                url: https://cdn2.onlyfans.com/files/example/media-21.jpg
                                width: 960
                                height: 960
                                size: 0
                            duration: 0
                            hasCustomPreview: false
                            videoSources:
                              "240": null
                              "720": null
                        canViewMedia: true
                      - author:
                          id: 308625502
                          _view: a
                        responseType: post
                        id: 987650012
                        postedAt: 2025-12-14T17:17:17+00:00
                        postedAtPrecise: "1765732637.000000"
                        text: <p>A new update from my profile.</p>
                        isMarkdownDisabled: true
                        canReport: true
                        canComment: true
                        favoritesCount: 951
                        mediaCount: 1
                        isMediaReady: true
                        isOpened: true
                        canToggleFavorite: true
                        commentsCount: 14
                        tipsAmount: $15
                        media:
                          - id: 987650013
                            type: photo
                            convertedToVideo: false
                            canView: true
                            hasError: false
                            createdAt: null
                            isReady: true
                            files:
                              full:
                                url: https://cdn2.onlyfans.com/files/example/media-22.jpg
                                width: 1290
                                height: 1910
                                size: 0
                                sources: []
                              thumb:
                                url: https://cdn2.onlyfans.com/files/example/media-23.jpg
                                width: 300
                                height: 300
                                size: 0
                              preview:
                                url: https://cdn2.onlyfans.com/files/example/media-24.jpg
                                width: 960
                                height: 1422
                                size: 0
                              squarePreview:
                                url: https://cdn2.onlyfans.com/files/example/media-25.jpg
                                width: 960
                                height: 960
                                size: 0
                            duration: 0
                            hasCustomPreview: false
                            videoSources:
                              "240": null
                              "720": null
                        canViewMedia: true
                      - author:
                          id: 308625502
                          _view: a
                        responseType: post
                        id: 987650014
                        postedAt: 2025-11-11T01:00:29+00:00
                        postedAtPrecise: "1762822829.000000"
                        text: <p>A new update from my profile.</p>
                        isMarkdownDisabled: true
                        canReport: true
                        canComment: true
                        favoritesCount: 926
                        mediaCount: 1
                        isMediaReady: true
                        isOpened: true
                        canToggleFavorite: true
                        commentsCount: 14
                        tipsAmount: $0
                        media:
                          - id: 987650015
                            type: photo
                            convertedToVideo: false
                            canView: true
                            hasError: false
                            createdAt: null
                            isReady: true
                            files:
                              full:
                                url: https://cdn2.onlyfans.com/files/example/media-26.jpg
                                width: 1290
                                height: 1695
                                size: 0
                                sources: []
                              thumb:
                                url: https://cdn2.onlyfans.com/files/example/media-27.jpg
                                width: 300
                                height: 300
                                size: 0
                              preview:
                                url: https://cdn2.onlyfans.com/files/example/media-28.jpg
                                width: 960
                                height: 1262
                                size: 0
                              squarePreview:
                                url: https://cdn2.onlyfans.com/files/example/media-29.jpg
                                width: 960
                                height: 960
                                size: 0
                            duration: 0
                            hasCustomPreview: false
                            videoSources:
                              "240": null
                              "720": null
                        canViewMedia: true
                      - author:
                          id: 308625502
                          _view: a
                        responseType: post
                        id: 987650016
                        postedAt: 2025-11-07T04:31:36+00:00
                        postedAtPrecise: "1762489896.000000"
                        text: <p>A new update from my profile.</p>
                        isMarkdownDisabled: true
                        canReport: true
                        canComment: true
                        favoritesCount: 725
                        mediaCount: 1
                        isMediaReady: true
                        isOpened: true
                        canToggleFavorite: true
                        commentsCount: 12
                        tipsAmount: $20
                        media:
                          - id: 987650017
                            type: photo
                            convertedToVideo: false
                            canView: true
                            hasError: false
                            createdAt: null
                            isReady: true
                            files:
                              full:
                                url: https://cdn2.onlyfans.com/files/example/media-30.jpg
                                width: 1290
                                height: 1693
                                size: 0
                                sources: []
                              thumb:
                                url: https://cdn2.onlyfans.com/files/example/media-31.jpg
                                width: 300
                                height: 300
                                size: 0
                              preview:
                                url: https://cdn2.onlyfans.com/files/example/media-32.jpg
                                width: 960
                                height: 1260
                                size: 0
                              squarePreview:
                                url: https://cdn2.onlyfans.com/files/example/media-33.jpg
                                width: 960
                                height: 960
                                size: 0
                            duration: 0
                            hasCustomPreview: false
                            videoSources:
                              "240": null
                              "720": null
                        canViewMedia: true
                      - author:
                          id: 308625502
                          _view: a
                        responseType: post
                        id: 987650018
                        postedAt: 2025-10-24T15:53:26+00:00
                        postedAtPrecise: "1761321206.000000"
                        text: <p>A new update from my profile.</p>
                        isMarkdownDisabled: true
                        canReport: true
                        canComment: true
                        favoritesCount: 1219
                        mediaCount: 1
                        isMediaReady: true
                        isOpened: true
                        canToggleFavorite: true
                        commentsCount: 16
                        tipsAmount: $39.20
                        media:
                          - id: 987650019
                            type: photo
                            convertedToVideo: false
                            canView: true
                            hasError: false
                            createdAt: null
                            isReady: true
                            files:
                              full:
                                url: https://cdn2.onlyfans.com/files/example/media-34.jpg
                                width: 1290
                                height: 1676
                                size: 0
                                sources: []
                              thumb:
                                url: https://cdn2.onlyfans.com/files/example/media-35.jpg
                                width: 300
                                height: 300
                                size: 0
                              preview:
                                url: https://cdn2.onlyfans.com/files/example/media-36.jpg
                                width: 960
                                height: 1248
                                size: 0
                              squarePreview:
                                url: https://cdn2.onlyfans.com/files/example/media-37.jpg
                                width: 960
                                height: 960
                                size: 0
                            duration: 0
                            hasCustomPreview: false
                            videoSources:
                              "240": null
                              "720": null
                        canViewMedia: true
                      - author:
                          id: 308625502
                          _view: a
                        responseType: post
                        id: 987650020
                        postedAt: 2025-09-13T14:58:01+00:00
                        postedAtPrecise: "1757775481.000000"
                        text: <p>A new update from my profile.</p>
                        isMarkdownDisabled: true
                        canReport: true
                        canComment: true
                        favoritesCount: 1236
                        mediaCount: 1
                        isMediaReady: true
                        isOpened: true
                        canToggleFavorite: true
                        commentsCount: 18
                        tipsAmount: $10
                        media:
                          - id: 987650021
                            type: photo
                            convertedToVideo: false
                            canView: true
                            hasError: false
                            createdAt: null
                            isReady: true
                            files:
                              full:
                                url: https://cdn2.onlyfans.com/files/example/media-38.jpg
                                width: 2048
                                height: 1536
                                size: 0
                                sources: []
                              thumb:
                                url: https://cdn2.onlyfans.com/files/example/media-39.jpg
                                width: 300
                                height: 300
                                size: 0
                              preview:
                                url: https://cdn2.onlyfans.com/files/example/media-40.jpg
                                width: 960
                                height: 720
                                size: 0
                              squarePreview:
                                url: https://cdn2.onlyfans.com/files/example/media-41.jpg
                                width: 960
                                height: 960
                                size: 0
                            duration: 0
                            hasCustomPreview: false
                            videoSources:
                              "240": null
                              "720": null
                        canViewMedia: true
                    hasMore: true
                    headMarker: "1770564766.000000"
                    tailMarker: "1757775481.000000"
                    counters:
                      audiosCount: 0
                      photosCount: 73
                      videosCount: 0
                      mediasCount: 73
                      postsCount: 63
                      streamsCount: 0
                      archivedPostsCount: 0
                  _pagination:
                    next_page: https://app.onlyfansapi.com/api/acct_XXXXXXXXXXXXXXX/users/308625502/posts?limit=10&order=publish_date&sort=desc&pinned=0&counters=1&beforePublishTime=1757775481.000000
                  _meta:
                    _credits:
                      used: 1
                      balance: 9999
                      note: Always
                    _cache:
                      is_cached: false
                      note: Cache disabled for this endpoint
                    _rate_limits:
                      limit_minute: 1000
                      limit_day: null
                      remaining_minute: 999
                      remaining_day: null
                      notice: We have decided to remove our daily rate limits. Please remove any
                        references to these in your integrations.
                properties:
                  data:
                    type: object
                    properties:
                      list:
                        type: array
                        example:
                          - author:
                              id: 308625502
                              _view: a
                            responseType: post
                            id: 987650002
                            postedAt: 2026-02-08T15:32:46+00:00
                            postedAtPrecise: "1770564766.000000"
                            text: <p>A new update from my profile.</p>
                            isMarkdownDisabled: true
                            canReport: true
                            canComment: true
                            favoritesCount: 660
                            mediaCount: 1
                            isMediaReady: true
                            isOpened: true
                            canToggleFavorite: true
                            commentsCount: 8
                            tipsAmount: $25
                            media:
                              - id: 987650003
                                type: photo
                                convertedToVideo: false
                                canView: true
                                hasError: false
                                createdAt: null
                                isReady: true
                                files:
                                  full:
                                    url: https://cdn2.onlyfans.com/files/example/media-2.jpg
                                    width: 1290
                                    height: 1687
                                    size: 0
                                    sources: []
                                  thumb:
                                    url: https://cdn2.onlyfans.com/files/example/media-3.jpg
                                    width: 300
                                    height: 300
                                    size: 0
                                  preview:
                                    url: https://cdn2.onlyfans.com/files/example/media-4.jpg
                                    width: 960
                                    height: 1256
                                    size: 0
                                  squarePreview:
                                    url: https://cdn2.onlyfans.com/files/example/media-5.jpg
                                    width: 960
                                    height: 960
                                    size: 0
                                duration: 0
                                hasCustomPreview: false
                                videoSources:
                                  "240": null
                                  "720": null
                            canViewMedia: true
                          - author:
                              id: 308625502
                              _view: a
                            responseType: post
                            id: 987650004
                            postedAt: 2026-02-04T03:31:18+00:00
                            postedAtPrecise: "1770175878.000000"
                            text: <p>A new update from my profile.</p>
                            isMarkdownDisabled: true
                            canReport: true
                            canComment: true
                            favoritesCount: 596
                            mediaCount: 1
                            isMediaReady: true
                            isOpened: true
                            canToggleFavorite: true
                            commentsCount: 11
                            tipsAmount: $0
                            media:
                              - id: 987650005
                                type: photo
                                convertedToVideo: false
                                canView: true
                                hasError: false
                                createdAt: null
                                isReady: true
                                files:
                                  full:
                                    url: https://cdn2.onlyfans.com/files/example/media-6.jpg
                                    width: 1290
                                    height: 936
                                    size: 0
                                    sources: []
                                  thumb:
                                    url: https://cdn2.onlyfans.com/files/example/media-7.jpg
                                    width: 300
                                    height: 300
                                    size: 0
                                  preview:
                                    url: https://cdn2.onlyfans.com/files/example/media-8.jpg
                                    width: 960
                                    height: 697
                                    size: 0
                                  squarePreview:
                                    url: https://cdn2.onlyfans.com/files/example/media-9.jpg
                                    width: 960
                                    height: 960
                                    size: 0
                                duration: 0
                                hasCustomPreview: false
                                videoSources:
                                  "240": null
                                  "720": null
                            canViewMedia: true
                          - author:
                              id: 308625502
                              _view: a
                            responseType: post
                            id: 987650006
                            postedAt: 2026-01-23T09:35:49+00:00
                            postedAtPrecise: "1769160949.000000"
                            text: <p>A new update from my profile.</p>
                            isMarkdownDisabled: true
                            canReport: true
                            canComment: true
                            favoritesCount: 647
                            mediaCount: 1
                            isMediaReady: true
                            isOpened: true
                            canToggleFavorite: true
                            commentsCount: 7
                            tipsAmount: $10
                            media:
                              - id: 987650007
                                type: photo
                                convertedToVideo: false
                                canView: true
                                hasError: false
                                createdAt: null
                                isReady: true
                                files:
                                  full:
                                    url: https://cdn2.onlyfans.com/files/example/media-10.jpg
                                    width: 1290
                                    height: 1707
                                    size: 0
                                    sources: []
                                  thumb:
                                    url: https://cdn2.onlyfans.com/files/example/media-11.jpg
                                    width: 300
                                    height: 300
                                    size: 0
                                  preview:
                                    url: https://cdn2.onlyfans.com/files/example/media-12.jpg
                                    width: 960
                                    height: 1271
                                    size: 0
                                  squarePreview:
                                    url: https://cdn2.onlyfans.com/files/example/media-13.jpg
                                    width: 960
                                    height: 960
                                    size: 0
                                duration: 0
                                hasCustomPreview: false
                                videoSources:
                                  "240": null
                                  "720": null
                            canViewMedia: true
                          - author:
                              id: 308625502
                              _view: a
                            responseType: post
                            id: 987650008
                            postedAt: 2026-01-15T14:58:43+00:00
                            postedAtPrecise: "1768489123.000000"
                            text: <p>A new update from my profile.</p>
                            isMarkdownDisabled: true
                            canReport: true
                            canComment: true
                            favoritesCount: 551
                            mediaCount: 1
                            isMediaReady: true
                            isOpened: true
                            canToggleFavorite: true
                            commentsCount: 9
                            tipsAmount: $0
                            media:
                              - id: 987650009
                                type: photo
                                convertedToVideo: false
                                canView: true
                                hasError: false
                                createdAt: null
                                isReady: true
                                files:
                                  full:
                                    url: https://cdn2.onlyfans.com/files/example/media-14.jpg
                                    width: 1290
                                    height: 1692
                                    size: 0
                                    sources: []
                                  thumb:
                                    url: https://cdn2.onlyfans.com/files/example/media-15.jpg
                                    width: 300
                                    height: 300
                                    size: 0
                                  preview:
                                    url: https://cdn2.onlyfans.com/files/example/media-16.jpg
                                    width: 960
                                    height: 1260
                                    size: 0
                                  squarePreview:
                                    url: https://cdn2.onlyfans.com/files/example/media-17.jpg
                                    width: 960
                                    height: 960
                                    size: 0
                                duration: 0
                                hasCustomPreview: false
                                videoSources:
                                  "240": null
                                  "720": null
                            canViewMedia: true
                          - author:
                              id: 308625502
                              _view: a
                            responseType: post
                            id: 987650010
                            postedAt: 2026-01-08T20:44:59+00:00
                            postedAtPrecise: "1767905099.000000"
                            text: <p>A new update from my profile.</p>
                            isMarkdownDisabled: true
                            canReport: true
                            canComment: true
                            favoritesCount: 489
                            mediaCount: 1
                            isMediaReady: true
                            isOpened: true
                            canToggleFavorite: true
                            commentsCount: 8
                            tipsAmount: $5
                            media:
                              - id: 987650011
                                type: photo
                                convertedToVideo: false
                                canView: true
                                hasError: false
                                createdAt: null
                                isReady: true
                                files:
                                  full:
                                    url: https://cdn2.onlyfans.com/files/example/media-18.jpg
                                    width: 1290
                                    height: 1686
                                    size: 0
                                    sources: []
                                  thumb:
                                    url: https://cdn2.onlyfans.com/files/example/media-19.jpg
                                    width: 300
                                    height: 300
                                    size: 0
                                  preview:
                                    url: https://cdn2.onlyfans.com/files/example/media-20.jpg
                                    width: 960
                                    height: 1255
                                    size: 0
                                  squarePreview:
                                    url: https://cdn2.onlyfans.com/files/example/media-21.jpg
                                    width: 960
                                    height: 960
                                    size: 0
                                duration: 0
                                hasCustomPreview: false
                                videoSources:
                                  "240": null
                                  "720": null
                            canViewMedia: true
                          - author:
                              id: 308625502
                              _view: a
                            responseType: post
                            id: 987650012
                            postedAt: 2025-12-14T17:17:17+00:00
                            postedAtPrecise: "1765732637.000000"
                            text: <p>A new update from my profile.</p>
                            isMarkdownDisabled: true
                            canReport: true
                            canComment: true
                            favoritesCount: 951
                            mediaCount: 1
                            isMediaReady: true
                            isOpened: true
                            canToggleFavorite: true
                            commentsCount: 14
                            tipsAmount: $15
                            media:
                              - id: 987650013
                                type: photo
                                convertedToVideo: false
                                canView: true
                                hasError: false
                                createdAt: null
                                isReady: true
                                files:
                                  full:
                                    url: https://cdn2.onlyfans.com/files/example/media-22.jpg
                                    width: 1290
                                    height: 1910
                                    size: 0
                                    sources: []
                                  thumb:
                                    url: https://cdn2.onlyfans.com/files/example/media-23.jpg
                                    width: 300
                                    height: 300
                                    size: 0
                                  preview:
                                    url: https://cdn2.onlyfans.com/files/example/media-24.jpg
                                    width: 960
                                    height: 1422
                                    size: 0
                                  squarePreview:
                                    url: https://cdn2.onlyfans.com/files/example/media-25.jpg
                                    width: 960
                                    height: 960
                                    size: 0
                                duration: 0
                                hasCustomPreview: false
                                videoSources:
                                  "240": null
                                  "720": null
                            canViewMedia: true
                          - author:
                              id: 308625502
                              _view: a
                            responseType: post
                            id: 987650014
                            postedAt: 2025-11-11T01:00:29+00:00
                            postedAtPrecise: "1762822829.000000"
                            text: <p>A new update from my profile.</p>
                            isMarkdownDisabled: true
                            canReport: true
                            canComment: true
                            favoritesCount: 926
                            mediaCount: 1
                            isMediaReady: true
                            isOpened: true
                            canToggleFavorite: true
                            commentsCount: 14
                            tipsAmount: $0
                            media:
                              - id: 987650015
                                type: photo
                                convertedToVideo: false
                                canView: true
                                hasError: false
                                createdAt: null
                                isReady: true
                                files:
                                  full:
                                    url: https://cdn2.onlyfans.com/files/example/media-26.jpg
                                    width: 1290
                                    height: 1695
                                    size: 0
                                    sources: []
                                  thumb:
                                    url: https://cdn2.onlyfans.com/files/example/media-27.jpg
                                    width: 300
                                    height: 300
                                    size: 0
                                  preview:
                                    url: https://cdn2.onlyfans.com/files/example/media-28.jpg
                                    width: 960
                                    height: 1262
                                    size: 0
                                  squarePreview:
                                    url: https://cdn2.onlyfans.com/files/example/media-29.jpg
                                    width: 960
                                    height: 960
                                    size: 0
                                duration: 0
                                hasCustomPreview: false
                                videoSources:
                                  "240": null
                                  "720": null
                            canViewMedia: true
                          - author:
                              id: 308625502
                              _view: a
                            responseType: post
                            id: 987650016
                            postedAt: 2025-11-07T04:31:36+00:00
                            postedAtPrecise: "1762489896.000000"
                            text: <p>A new update from my profile.</p>
                            isMarkdownDisabled: true
                            canReport: true
                            canComment: true
                            favoritesCount: 725
                            mediaCount: 1
                            isMediaReady: true
                            isOpened: true
                            canToggleFavorite: true
                            commentsCount: 12
                            tipsAmount: $20
                            media:
                              - id: 987650017
                                type: photo
                                convertedToVideo: false
                                canView: true
                                hasError: false
                                createdAt: null
                                isReady: true
                                files:
                                  full:
                                    url: https://cdn2.onlyfans.com/files/example/media-30.jpg
                                    width: 1290
                                    height: 1693
                                    size: 0
                                    sources: []
                                  thumb:
                                    url: https://cdn2.onlyfans.com/files/example/media-31.jpg
                                    width: 300
                                    height: 300
                                    size: 0
                                  preview:
                                    url: https://cdn2.onlyfans.com/files/example/media-32.jpg
                                    width: 960
                                    height: 1260
                                    size: 0
                                  squarePreview:
                                    url: https://cdn2.onlyfans.com/files/example/media-33.jpg
                                    width: 960
                                    height: 960
                                    size: 0
                                duration: 0
                                hasCustomPreview: false
                                videoSources:
                                  "240": null
                                  "720": null
                            canViewMedia: true
                          - author:
                              id: 308625502
                              _view: a
                            responseType: post
                            id: 987650018
                            postedAt: 2025-10-24T15:53:26+00:00
                            postedAtPrecise: "1761321206.000000"
                            text: <p>A new update from my profile.</p>
                            isMarkdownDisabled: true
                            canReport: true
                            canComment: true
                            favoritesCount: 1219
                            mediaCount: 1
                            isMediaReady: true
                            isOpened: true
                            canToggleFavorite: true
                            commentsCount: 16
                            tipsAmount: $39.20
                            media:
                              - id: 987650019
                                type: photo
                                convertedToVideo: false
                                canView: true
                                hasError: false
                                createdAt: null
                                isReady: true
                                files:
                                  full:
                                    url: https://cdn2.onlyfans.com/files/example/media-34.jpg
                                    width: 1290
                                    height: 1676
                                    size: 0
                                    sources: []
                                  thumb:
                                    url: https://cdn2.onlyfans.com/files/example/media-35.jpg
                                    width: 300
                                    height: 300
                                    size: 0
                                  preview:
                                    url: https://cdn2.onlyfans.com/files/example/media-36.jpg
                                    width: 960
                                    height: 1248
                                    size: 0
                                  squarePreview:
                                    url: https://cdn2.onlyfans.com/files/example/media-37.jpg
                                    width: 960
                                    height: 960
                                    size: 0
                                duration: 0
                                hasCustomPreview: false
                                videoSources:
                                  "240": null
                                  "720": null
                            canViewMedia: true
                          - author:
                              id: 308625502
                              _view: a
                            responseType: post
                            id: 987650020
                            postedAt: 2025-09-13T14:58:01+00:00
                            postedAtPrecise: "1757775481.000000"
                            text: <p>A new update from my profile.</p>
                            isMarkdownDisabled: true
                            canReport: true
                            canComment: true
                            favoritesCount: 1236
                            mediaCount: 1
                            isMediaReady: true
                            isOpened: true
                            canToggleFavorite: true
                            commentsCount: 18
                            tipsAmount: $10
                            media:
                              - id: 987650021
                                type: photo
                                convertedToVideo: false
                                canView: true
                                hasError: false
                                createdAt: null
                                isReady: true
                                files:
                                  full:
                                    url: https://cdn2.onlyfans.com/files/example/media-38.jpg
                                    width: 2048
                                    height: 1536
                                    size: 0
                                    sources: []
                                  thumb:
                                    url: https://cdn2.onlyfans.com/files/example/media-39.jpg
                                    width: 300
                                    height: 300
                                    size: 0
                                  preview:
                                    url: https://cdn2.onlyfans.com/files/example/media-40.jpg
                                    width: 960
                                    height: 720
                                    size: 0
                                  squarePreview:
                                    url: https://cdn2.onlyfans.com/files/example/media-41.jpg
                                    width: 960
                                    height: 960
                                    size: 0
                                duration: 0
                                hasCustomPreview: false
                                videoSources:
                                  "240": null
                                  "720": null
                            canViewMedia: true
                        items:
                          type: object
                          properties:
                            author:
                              type: object
                              properties:
                                id:
                                  type: integer
                                  example: 308625502
                                _view:
                                  type: string
                                  example: a
                            responseType:
                              type: string
                              example: post
                            id:
                              type: integer
                              example: 987650002
                            postedAt:
                              type: string
                              example: 2026-02-08T15:32:46+00:00
                            postedAtPrecise:
                              type: string
                              example: "1770564766.000000"
                            text:
                              type: string
                              example: <p>A new update from my profile.</p>
                            isMarkdownDisabled:
                              type: boolean
                              example: true
                            canReport:
                              type: boolean
                              example: true
                            canComment:
                              type: boolean
                              example: true
                            favoritesCount:
                              type: integer
                              example: 660
                            mediaCount:
                              type: integer
                              example: 1
                            isMediaReady:
                              type: boolean
                              example: true
                            isOpened:
                              type: boolean
                              example: true
                            canToggleFavorite:
                              type: boolean
                              example: true
                            commentsCount:
                              type: integer
                              example: 8
                            tipsAmount:
                              type: string
                              example: $25
                            media:
                              type: array
                              example:
                                - id: 987650003
                                  type: photo
                                  convertedToVideo: false
                                  canView: true
                                  hasError: false
                                  createdAt: null
                                  isReady: true
                                  files:
                                    full:
                                      url: https://cdn2.onlyfans.com/files/example/media-2.jpg
                                      width: 1290
                                      height: 1687
                                      size: 0
                                      sources: []
                                    thumb:
                                      url: https://cdn2.onlyfans.com/files/example/media-3.jpg
                                      width: 300
                                      height: 300
                                      size: 0
                                    preview:
                                      url: https://cdn2.onlyfans.com/files/example/media-4.jpg
                                      width: 960
                                      height: 1256
                                      size: 0
                                    squarePreview:
                                      url: https://cdn2.onlyfans.com/files/example/media-5.jpg
                                      width: 960
                                      height: 960
                                      size: 0
                                  duration: 0
                                  hasCustomPreview: false
                                  videoSources:
                                    "240": null
                                    "720": null
                              items:
                                type: object
                                properties:
                                  id:
                                    type: integer
                                    example: 987650003
                                  type:
                                    type: string
                                    example: photo
                                  convertedToVideo:
                                    type: boolean
                                    example: false
                                  canView:
                                    type: boolean
                                    example: true
                                  hasError:
                                    type: boolean
                                    example: false
                                  createdAt:
                                    type: string
                                    example: null
                                    nullable: true
                                  isReady:
                                    type: boolean
                                    example: true
                                  files:
                                    type: object
                                    properties:
                                      full:
                                        type: object
                                        properties:
                                          url:
                                            type: string
                                            example: https://cdn2.onlyfans.com/files/example/media-2.jpg
                                          width:
                                            type: integer
                                            example: 1290
                                          height:
                                            type: integer
                                            example: 1687
                                          size:
                                            type: integer
                                            example: 0
                                          sources:
                                            type: array
                                            example: []
                                      thumb:
                                        type: object
                                        properties:
                                          url:
                                            type: string
                                            example: https://cdn2.onlyfans.com/files/example/media-3.jpg
                                          width:
                                            type: integer
                                            example: 300
                                          height:
                                            type: integer
                                            example: 300
                                          size:
                                            type: integer
                                            example: 0
                                      preview:
                                        type: object
                                        properties:
                                          url:
                                            type: string
                                            example: https://cdn2.onlyfans.com/files/example/media-4.jpg
                                          width:
                                            type: integer
                                            example: 960
                                          height:
                                            type: integer
                                            example: 1256
                                          size:
                                            type: integer
                                            example: 0
                                      squarePreview:
                                        type: object
                                        properties:
                                          url:
                                            type: string
                                            example: https://cdn2.onlyfans.com/files/example/media-5.jpg
                                          width:
                                            type: integer
                                            example: 960
                                          height:
                                            type: integer
                                            example: 960
                                          size:
                                            type: integer
                                            example: 0
                                  duration:
                                    type: integer
                                    example: 0
                                  hasCustomPreview:
                                    type: boolean
                                    example: false
                                  videoSources:
                                    type: object
                                    properties:
                                      "240":
                                        type: string
                                        example: null
                                        nullable: true
                                      "720":
                                        type: string
                                        example: null
                                        nullable: true
                            canViewMedia:
                              type: boolean
                              example: true
                      hasMore:
                        type: boolean
                        example: true
                      headMarker:
                        type: string
                        example: "1770564766.000000"
                      tailMarker:
                        type: string
                        example: "1757775481.000000"
                      counters:
                        type: object
                        properties:
                          audiosCount:
                            type: integer
                            example: 0
                          photosCount:
                            type: integer
                            example: 73
                          videosCount:
                            type: integer
                            example: 0
                          mediasCount:
                            type: integer
                            example: 73
                          postsCount:
                            type: integer
                            example: 63
                          streamsCount:
                            type: integer
                            example: 0
                          archivedPostsCount:
                            type: integer
                            example: 0
                  _pagination:
                    type: object
                    properties:
                      next_page:
                        type: string
                        example: https://app.onlyfansapi.com/api/acct_XXXXXXXXXXXXXXX/users/308625502/posts?limit=10&order=publish_date&sort=desc&pinned=0&counters=1&beforePublishTime=1757775481.000000
                  _meta:
                    type: object
                    properties:
                      _credits:
                        type: object
                        properties:
                          used:
                            type: integer
                            example: 1
                          balance:
                            type: integer
                            example: 9999
                          note:
                            type: string
                            example: Always
                      _cache:
                        type: object
                        properties:
                          is_cached:
                            type: boolean
                            example: false
                          note:
                            type: string
                            example: Cache disabled for this endpoint
                      _rate_limits:
                        type: object
                        properties:
                          limit_minute:
                            type: integer
                            example: 1000
                          limit_day:
                            type: string
                            example: null
                            nullable: true
                          remaining_minute:
                            type: integer
                            example: 999
                          remaining_day:
                            type: string
                            example: null
                            nullable: true
                          notice:
                            type: string
                            example: We have decided to remove our daily rate limits. Please remove any
                              references to these in your integrations.
      tags:
        - Profile Content
components:
  securitySchemes:
    default:
      type: http
      scheme: bearer
      description: Get your API Key from OnlyFansAPI Console -
        https://app.onlyfansapi.com/api-keys
````