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

# Fetch Reddit APP Popular Feed

> Get Reddit APP popular/trending recommended content, showing the most popular posts across the site

<div className="inline-flex items-center gap-2 px-4 py-2 bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg">
  <span className="text-base">🪙</span>
  <span className="text-sm font-medium text-yellow-900 dark:text-yellow-100"><span className="font-semibold">1 credit</span><span className="text-yellow-700 dark:text-yellow-300 ml-1">per request</span></span>
</div>

## Copy for AI

<div className="my-6 rounded-xl border border-gray-200 bg-gray-50 p-5 dark:border-gray-800 dark:bg-gray-900/40">
  <div className="min-w-0">
    <p className="text-base font-semibold text-gray-900 dark:text-gray-100">🤖 Why Code When AI Can Do It For You?</p>
    <p className="mt-1 text-sm text-gray-700 dark:text-gray-300">Stop writing code like it's 1970! Let AI do the heavy lifting - click the sparkles to copy a perfectly formatted prompt for ChatGPT, Claude, or your favorite AI assistant.</p>
  </div>

  <div className="mt-4">
    <button
      type="button"
      className="inline-flex items-center gap-2 rounded-md border border-emerald-300 bg-emerald-50 px-3 py-2 text-sm font-medium text-emerald-800 hover:bg-emerald-100 dark:border-emerald-700 dark:bg-emerald-900/30 dark:text-emerald-100 dark:hover:bg-emerald-900/50"
      onClick={() => navigator.clipboard.writeText(`I want to make an API call to https://api.keyapi.ai/v1/reddit/fetch_popular_feed.

Please help me write code to make this API call and handle the response appropriately. Include error handling and best practices.

Here are the details:

Endpoint: GET https://api.keyapi.ai/v1/reddit/fetch_popular_feed

Description: Get Reddit APP popular/trending recommended content, showing the most popular posts across the site

Required Headers:
--header 'Authorization: Bearer <YOUR_API_KEY>'

Parameters:
- sort (Optional): Sort order, default is BEST
Options: BEST, HOT, NEW, TOP, CONTROVERSIAL, RISING. Example: BEST
- time (Optional): Time range, default is ALL
Options: ALL, HOUR, DAY, WEEK, MONTH, YEAR. Example: ALL
- filter_posts (Optional): Filter out the specified list of post IDs to avoid duplicates
- after (Optional): Pagination parameter
- need_format (Optional): Whether to clean/sanitize the data. Example: false

Example Response:
{
"code": 0,
"message": "success",
"data": {
"popularfeed": {
  "postsInfoByIds": [
    {
      "__typename": "SubredditPost",
      "authorCommunityBadge": null,
      "subreddit": {
        "__typename": "Subreddit",
        "id": "t5_2qo2a",
        "name": "confession",
        "prefixedName": "r/confession",
        "isQuarantined": false,
        "title": "Admit your wrongdoings. ",
        "type": "PUBLIC",
        "subscribersCount": 11777364,
        "isNsfw": false,
        "isSubscribed": false,
        "isThumbnailsEnabled": false,
        "styles": {
          "icon": null,
          "legacyIcon": null,
          "primaryColor": "#005E00",
          "bannerBackgroundImage": null,
          "legacyPrimaryColor": "#7E53C1"
        },
        "modPermissions": null,
        "communityStatus": null,
        "isTitleSafe": true,
        "isUserBanned": false,
        "tippingStatus": null,
        "whitelistStatus": "ALL_ADS"
      },
      "crosspostRoot": null,
      "id": "t3_1rkvs1e",
      "createdAt": "2026-03-04T19:58:54.622000+0000",
      "editedAt": "2026-03-05T06:54:34.212000+0000",
      "postTitle": "I've been going to concerts for free for the past 3 months.",
      "url": "https://www.reddit.com/r/confession/comments/1rkvs1e/ive_been_going_to_concerts_for_free_for_the_past/",
      "content": {

... (truncated)`)}
    >
      <span>✨</span>
      <span>Copy for AI</span>
    </button>
  </div>
</div>


## OpenAPI

````yaml en/reddit.openapi.json GET /v1/reddit/fetch_popular_feed
openapi: 3.0.1
info:
  title: Reddit API english documentation
  description: >-
    The english reference documentation of the Reddit API includes the
    interface's purpose, parameter description, response status, and sample
    structure.
  version: 1.0.0
servers:
  - url: https://api.keyapi.ai
    description: Production
security:
  - JWT Bearer: []
tags: []
paths:
  /v1/reddit/fetch_popular_feed:
    get:
      tags: []
      summary: Fetch Reddit APP Popular Feed
      description: >-
        Get Reddit APP popular/trending recommended content, showing the most
        popular posts across the site
      parameters:
        - name: sort
          in: query
          description: |-
            Sort order, default is BEST
            Options: BEST, HOT, NEW, TOP, CONTROVERSIAL, RISING
          required: false
          example: BEST
          schema:
            type: string
            default: BEST
        - name: time
          in: query
          description: |-
            Time range, default is ALL
            Options: ALL, HOUR, DAY, WEEK, MONTH, YEAR
          required: false
          example: ALL
          schema:
            type: string
            default: ALL
        - name: filter_posts
          in: query
          description: Filter out the specified list of post IDs to avoid duplicates
          required: false
          schema:
            type: array
            items:
              type: string
        - name: after
          in: query
          description: Pagination parameter
          required: false
          schema:
            type: string
        - name: need_format
          in: query
          description: Whether to clean/sanitize the data
          required: false
          example: 'false'
          schema:
            type: boolean
            default: false
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
              example:
                code: 0
                message: success
                data:
                  popularfeed:
                    postsInfoByIds:
                      - __typename: SubredditPost
                        authorCommunityBadge: null
                        subreddit:
                          __typename: Subreddit
                          id: t5_2qo2a
                          name: confession
                          prefixedName: r/confession
                          isQuarantined: false
                          title: 'Admit your wrongdoings. '
                          type: PUBLIC
                          subscribersCount: 11777364
                          isNsfw: false
                          isSubscribed: false
                          isThumbnailsEnabled: false
                          styles:
                            icon: null
                            legacyIcon: null
                            primaryColor: '#005E00'
                            bannerBackgroundImage: null
                            legacyPrimaryColor: '#7E53C1'
                          modPermissions: null
                          communityStatus: null
                          isTitleSafe: true
                          isUserBanned: false
                          tippingStatus: null
                          whitelistStatus: ALL_ADS
                        crosspostRoot: null
                        id: t3_1rkvs1e
                        createdAt: 2026-03-04T19:58:54.622000+0000
                        editedAt: 2026-03-05T06:54:34.212000+0000
                        postTitle: >-
                          I've been going to concerts for free for the past 3
                          months.
                        url: >-
                          https://www.reddit.com/r/confession/comments/1rkvs1e/ive_been_going_to_concerts_for_free_for_the_past/
                        content:
                          markdown: >-
                            so over the summer, I got a job as an event security
                            at a prominent arena here on the west coast.


                            the job itself is pretty mundane.  I usually worked
                            crash doors, which basically meant I kept people
                            from trying to come in through the emergency doors.


                            I decided to quit because there weren't enough hours
                            to make it worth coming to downtown.  I was
                            scheduled for 15 hours a week.


                            after a few months, I decided to go to a Sabrina
                            carpenter concert, but the ticket prices were
                            ridiculous. 


                            One thing I noticed working here was that no one
                            knows anyone else. when there are three hundred
                            people working, faces kind of mix. 


                            On the evening of the show, I came through the
                            employee entrance and went right through. They don't
                            scan your badge. they Just make sure you don't have
                            any weapons. 


                            I would wait until 10 minutes after the show
                            started.And I would put on my badge and walk to the
                            lower levels. when the floor security guard saw me ,
                            they wouldn't even look , they would just nod.


                            So far , i've been to about eight basketball games
                            and six concerts.


                            Today I will try to go to the employee meal section
                            and see if they will allow me in. They usually scan
                            a barcode , but it's a generic barcode.


                            am I being too greedy, lol 


                            Edit: someone mentioned that the qr codes are tied
                            to names....so looks like I'm not getting any
                            employee meal. 
                          richtext: >-
                            {"document":[{"c":[{"e":"text","t":"so over the
                            summer, I got a job as an event security at a
                            prominent arena here on the west
                            coast."}],"e":"par"},{"c":[{"e":"text","t":"the job
                            itself is pretty mundane.  I usually worked crash
                            doors, which basically meant I kept people from
                            trying to come in through the emergency
                            doors."}],"e":"par"},{"c":[{"e":"text","t":"I
                            decided to quit because there weren't enough hours
                            to make it worth coming to downtown.  I was
                            scheduled for 15 hours a
                            week."}],"e":"par"},{"c":[{"e":"text","t":"after a
                            few months, I decided to go to a Sabrina carpenter
                            concert, but the ticket prices were
                            ridiculous."}],"e":"par"},{"c":[{"e":"text","t":"One
                            thing I noticed working here was that no one knows
                            anyone else. when there are three hundred people
                            working, faces kind of
                            mix."}],"e":"par"},{"c":[{"e":"text","t":"On the
                            evening of the show, I came through the employee
                            entrance and went right through. They don't scan
                            your badge. they Just make sure you don't have any
                            weapons."}],"e":"par"},{"c":[{"e":"text","t":"I
                            would wait until 10 minutes after the show
                            started.And I would put on my badge and walk to the
                            lower levels. when the floor security guard saw me ,
                            they wouldn't even look , they would just
                            nod."}],"e":"par"},{"c":[{"e":"text","t":"So far ,
                            i've been to about eight basketball games and six
                            concerts."}],"e":"par"},{"c":[{"e":"text","t":"Today
                            I will try to go to the employee meal section and
                            see if they will allow me in. They usually scan a
                            barcode , but it's a generic
                            barcode."}],"e":"par"},{"c":[{"e":"text","t":"am I
                            being too greedy,
                            lol"}],"e":"par"},{"c":[{"e":"text","t":"Edit:
                            someone mentioned that the qr codes are tied to
                            names....so looks like I'm not getting any employee
                            meal."}],"e":"par"}]}
                          html: >-
                            so over the summer, I got a job as an event security
                            at a prominent arena here on the west coast.

                            the job itself is pretty mundane.  I usually worked
                            crash doors, which basically meant I kept people
                            from trying to come in through the emergency doors.

                            I decided to quit because there weren't enough hours
                            to make it worth coming to downtown.  I was
                            scheduled for 15 hours a week.

                            after a few months, I decided to go to a Sabrina
                            carpenter concert, but the ticket prices were
                            ridiculous. 

                            One thing I noticed working here was that no one
                            knows anyone else. when there are three hundred
                            people working, faces kind of mix. 

                            On the evening of the show, I came through the
                            employee entrance and went right through. They don't
                            scan your badge. they Just make sure you don't have
                            any weapons. 

                            I would wait until 10 minutes after the show
                            started.And I would put on my badge and walk to the
                            lower levels. when the floor security guard saw me ,
                            they wouldn't even look , they would just nod.

                            So far , i've been to about eight basketball games
                            and six concerts.

                            Today I will try to go to the employee meal section
                            and see if they will allow me in. They usually scan
                            a barcode , but it's a generic barcode.

                            am I being too greedy, lol 

                            Edit: someone mentioned that the qr codes are tied
                            to names....so looks like I'm not getting any
                            employee meal.
                          richtextMedia: []
                          preview: >-
                            so over the summer, I got a job as an event security
                            at a prominent arena here on the west coast. the job
                            itself is pretty mundane. I usually worked crash
                            doors, which basically meant I kept people from
                            trying to come in through the emergency doors. I
                            decided to quit because there weren't enough hou
                        domain: self.confession
                        isSpoiler: false
                        isNsfw: false
                        isCommercialCommunication: false
                        isLocked: false
                        isSaved: false
                        isReactAllowed: false
                        isHidden: false
                        isGildable: true
                        isCrosspostable: true
                        isScoreHidden: false
                        isArchived: false
                        isStickied: false
                        isPollIncluded: false
                        poll: null
                        isFollowed: false
                        awardingsInfo:
                          promos: null
                        awardings: []
                        isContestMode: false
                        distinguishedAs: null
                        voteState: NONE
                        score: 6767
                        commentCount: 360
                        viewCount: null
                        authorFlair: null
                        flair: null
                        authorInfo:
                          __typename: Redditor
                          id: t2_246qycv8mg
                          name: Cold_Entry_5609
                          isBlocked: false
                          isCakeDayNow: false
                          newIcon:
                            __typename: MediaSource
                            url: >-
                              https://www.redditstatic.com/avatars/defaults/v2/avatar_default_0.png
                            dimensions:
                              width: 256
                              height: 256
                          iconSmall:
                            __typename: MediaSource
                            url: >-
                              https://www.redditstatic.com/avatars/defaults/v2/avatar_default_0.png
                            dimensions:
                              width: 256
                              height: 256
                          snoovatarIcon: null
                          profile:
                            isNsfw: true
                          accountType: USER
                        isThumbnailEnabled: false
                        thumbnail: null
                        media: null
                        moderationInfo: null
                        suggestedCommentSort: null
                        permalink: >-
                          /r/confession/comments/1rkvs1e/ive_been_going_to_concerts_for_free_for_the_past/
                        isSelfPost: true
                        postHint: null
                        postEventInfo: null
                        gallery: null
                        devvit: null
                        outboundLink:
                          url: >-
                            https://www.reddit.com/r/confession/comments/1rkvs1e/ive_been_going_to_concerts_for_free_for_the_past/
                          expiresAt: 2026-03-05T13:53:36.183557+0000
                        postStats:
                          viewCountTotal: null
                          shareAllTotal: 1007
                        postStatsPrivate:
                          viewCountTotals: null
                        isAuthorBlocked: false
                        upvoteRatio: 0.9499553172475425
                        reactedFrom: null
                        attributionInfo: null
                        crowdControlLevel: 'OFF'
                        isCrowdControlFilterEnabled: false
                        languageCode: en
                        isTranslatable: false
                        isTranslated: false
                        translatedLanguage: null
                        removedByCategory: null
                      - __typename: ProfilePost
                        crosspostRoot: null
                        promotedCommunityPost: null
                        id: t3_1riz84u
                        createdAt: 2026-03-02T17:30:35.271000+0000
                        editedAt: null
                        postTitle: >-
                          🤫 Quiet on the couch! All 8 episodes of Wonder Man,
                          the genre-bending new series from Marvel Television,
                          are now streaming.
                        url: >-
                          https://ad.doubleclick.net/ddm/trackclk/N6344.131843.REDDIT.COM/B35010443.441203687;dc_trk_aid=634713771;dc_trk_cid=248518193;dc_lat=;dc_rdid={{ADVERTISING_ID}};tag_for_child_directed_treatment=;tfua=;ltd=;dc_tdv=1
                        content: null
                        domain: disneyplus.com
                        isSpoiler: false
                        isNsfw: false
                        isCommercialCommunication: false
                        isLocked: true
                        isSaved: false
                        isReactAllowed: false
                        isHidden: false
                        isGildable: false
                        isCrosspostable: false
                        isScoreHidden: true
                        isArchived: false
                        isStickied: false
                        isPollIncluded: false
                        poll: null
                        isFollowed: false
                        awardings: []
                        isContestMode: false
                        distinguishedAs: null
                        voteState: NONE
                        score: null
                        commentCount: 0
                        viewCount: null
                        authorFlair: null
                        flair: null
                        authorInfo:
                          __typename: Redditor
                          id: t2_4zzzv1rn
                          name: disneyplus
                          isBlocked: false
                          isCakeDayNow: false
                          newIcon:
                            __typename: MediaSource
                            url: >-
                              https://styles.redditmedia.com/t5_289pl2/styles/profileIcon_tyjhcqol1d4d1.jpg?s=873dd6625e3e0405b6e8079dac0d30334369866c
                            dimensions:
                              width: 256
                              height: 256
                          iconSmall:
                            __typename: MediaSource
                            url: >-
                              https://styles.redditmedia.com/t5_289pl2/styles/profileIcon_tyjhcqol1d4d1.jpg?width=50&height=50&frame=1&auto=webp&crop=50%3A50%2Csmart&s=b004cfd601c40b2e462b3fef2914a58c1c3584be
                            dimensions:
                              width: 50
                              height: 50
                          snoovatarIcon: null
                          profile:
                            isNsfw: false
                          accountType: USER
                        isThumbnailEnabled: true
                        thumbnail:
                          __typename: MediaSource
                          url: >-
                            https://preview.redd.it/906ppmq53omg1.jpeg?auto=webp&s=b4acd149ab2fb0be073399ed8a212334d75d6a4c
                          dimensions:
                            width: 2400
                            height: 1256
                        media:
                          __typename: Media
                          previewMediaId: >-
                            https://reddit-image/ytLPTtp2t5eVH0cK8ZcaPjL3UIiAOKTM7dnFBtUYuOM.jpg
                          still:
                            __typename: StillMedia
                            source:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/ytLPTtp2t5eVH0cK8ZcaPjL3UIiAOKTM7dnFBtUYuOM.jpg?auto=webp&s=82dfcd1a6a2950e994d2d27e3a88b52bfe16bf42
                              dimensions:
                                width: 2400
                                height: 1256
                            small:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/ytLPTtp2t5eVH0cK8ZcaPjL3UIiAOKTM7dnFBtUYuOM.jpg?width=108&auto=webp&s=e6f8107cdfbeb0d2794390a0e4c61682d6e5cf76
                              dimensions:
                                width: 108
                                height: 56
                            medium:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/ytLPTtp2t5eVH0cK8ZcaPjL3UIiAOKTM7dnFBtUYuOM.jpg?width=216&auto=webp&s=b707084fb90acc9a8512b2705616b475a38d260b
                              dimensions:
                                width: 216
                                height: 113
                            large:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/ytLPTtp2t5eVH0cK8ZcaPjL3UIiAOKTM7dnFBtUYuOM.jpg?width=320&auto=webp&s=f1f0b58e57a52c7d16fb89976f0b3679f7774cb6
                              dimensions:
                                width: 320
                                height: 167
                            xlarge:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/ytLPTtp2t5eVH0cK8ZcaPjL3UIiAOKTM7dnFBtUYuOM.jpg?width=640&auto=webp&s=cc410b5a678c13d2771614c2e28da1e796fabc6c
                              dimensions:
                                width: 640
                                height: 334
                            xxlarge:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/ytLPTtp2t5eVH0cK8ZcaPjL3UIiAOKTM7dnFBtUYuOM.jpg?width=960&auto=webp&s=9604775bd97fae6a5d87aaa57acb517e22d00281
                              dimensions:
                                width: 960
                                height: 502
                            xxxlarge:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/ytLPTtp2t5eVH0cK8ZcaPjL3UIiAOKTM7dnFBtUYuOM.jpg?width=1080&auto=webp&s=aea9d2cc376bbe55afe62d7d37a1bb920e92980a
                              dimensions:
                                width: 1080
                                height: 565
                            altText: null
                          obfuscated_still:
                            __typename: StillMedia
                            source: null
                            small: null
                            medium: null
                            large: null
                            xlarge: null
                            xxlarge: null
                            xxxlarge: null
                          animated: null
                          streaming: null
                          video: null
                          packagedMedia: null
                          typeHint: IMAGE
                          download: null
                        moderationInfo: null
                        suggestedCommentSort: QA
                        permalink: >-
                          /user/disneyplus/comments/1riz84u/quiet_on_the_couch_all_8_episodes_of_wonder_man/
                        isSelfPost: false
                        postHint: LINK
                        postEventInfo: null
                        gallery: null
                        devvit: null
                        profile:
                          __typename: Profile
                          redditorInfo:
                            __typename: Redditor
                            id: t2_4zzzv1rn
                            name: disneyplus
                            prefixedName: u/disneyplus
                            accountType: USER
                          id: t5_289pl2
                          description: null
                          subscribersCount: 0
                          isNsfw: false
                          isModeratable: false
                          modPermissions: null
                          name: u_disneyplus
                          styles:
                            icon: >-
                              https://styles.redditmedia.com/t5_289pl2/styles/profileIcon_tyjhcqol1d4d1.jpg?width=64&height=64&frame=1&auto=webp&crop=64:64,smart&s=680defd1a5f94146a8fc651979515ab60a7b3721
                            legacyIcon:
                              __typename: MediaSource
                              url: >-
                                https://styles.redditmedia.com/t5_289pl2/styles/profileIcon_tyjhcqol1d4d1.jpg?width=256&height=256&frame=1&auto=webp&crop=256:256,smart&s=21aecb4124b6335c3f0468f8648b217a0edc932e
                              dimensions:
                                width: 256
                                height: 256
                            legacyPrimaryColor: null
                        outboundLink:
                          url: >-
                            https://ad.doubleclick.net/ddm/trackclk/N6344.131843.REDDIT.COM/B35010443.441203687;dc_trk_aid=634713771;dc_trk_cid=248518193;dc_lat=;dc_rdid={{ADVERTISING_ID}};tag_for_child_directed_treatment=;tfua=;ltd=;dc_tdv=1
                          expiresAt: null
                        adSupplementaryTextRichtext: null
                        callToAction: Sign Up
                        postStats:
                          viewCountTotal: null
                          shareAllTotal: 1542
                        postStatsPrivate:
                          viewCountTotals: null
                        isAuthorBlocked: false
                        upvoteRatio: 0.16170388751033912
                        reactedFrom: null
                        attributionInfo: null
                        crowdControlLevel: 'OFF'
                        isCrowdControlFilterEnabled: false
                        languageCode: null
                        isTranslatable: false
                        isTranslated: false
                        translatedLanguage: null
                        removedByCategory: null
                      - __typename: SubredditPost
                        authorCommunityBadge: null
                        subreddit:
                          __typename: Subreddit
                          id: t5_2qib0
                          name: interesting
                          prefixedName: r/interesting
                          isQuarantined: false
                          title: 'interesting '
                          type: PUBLIC
                          subscribersCount: 1591785
                          isNsfw: false
                          isSubscribed: false
                          isThumbnailsEnabled: true
                          styles:
                            icon: >-
                              https://styles.redditmedia.com/t5_2qib0/styles/communityIcon_s4g0fz2yssma1.png?width=64&height=64&frame=1&auto=webp&crop=64:64,smart&s=3755e98c96e1ece4b5a1e359ae62b7fc145c59b9
                            legacyIcon: null
                            primaryColor: '#2972A3'
                            bannerBackgroundImage: >-
                              https://styles.redditmedia.com/t5_2qib0/styles/bannerBackgroundImage_6lj3jytxurcc1.jpg?format=pjpg&s=0e040670e7c44b209ed446a53d74ae7c8a50ab49
                            legacyPrimaryColor: null
                          modPermissions: null
                          communityStatus:
                            description:
                              markdown: \\ud83d\\udd25
                              richtext: >-
                                {"document":[{"c":[{"e":"text","t":"\\ud83d\\udd25"}],"e":"par"}]}
                            emoji:
                              name: snoo_simple_smile
                              url: >-
                                https://emoji.redditmedia.com/dhbi1omcaezz_t5_3nqvj/snoo_simple_smile
                          isTitleSafe: true
                          isUserBanned: false
                          tippingStatus: null
                          whitelistStatus: ALL_ADS
                        crosspostRoot: null
                        id: t3_1rl5s0w
                        createdAt: 2026-03-05T02:45:39.555000+0000
                        editedAt: null
                        postTitle: A&W have joined the burger wars!
                        url: https://v.redd.it/v80k4s7045ng1
                        content: null
                        domain: v.redd.it
                        isSpoiler: false
                        isNsfw: false
                        isCommercialCommunication: false
                        isLocked: false
                        isSaved: false
                        isReactAllowed: false
                        isHidden: false
                        isGildable: true
                        isCrosspostable: true
                        isScoreHidden: false
                        isArchived: false
                        isStickied: false
                        isPollIncluded: false
                        poll: null
                        isFollowed: false
                        awardingsInfo:
                          promos: null
                        awardings:
                          - __typename: AwardingTotal
                            award:
                              __typename: Award
                              id: award_free_popcorn_2
                              name: 吃瓜
                              tags:
                                - award:legacy
                                - award:unlimited_free
                                - award:sort:50
                                - award:quick_give
                              static_icon_16:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/Popcorn_16.png
                                dimensions:
                                  width: 16
                                  height: 16
                              static_icon_24:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/Popcorn_24.png
                                dimensions:
                                  width: 24
                                  height: 24
                              static_icon_32:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/Popcorn_32.png
                                dimensions:
                                  width: 32
                                  height: 32
                              static_icon_48:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/Popcorn_48.png
                                dimensions:
                                  width: 48
                                  height: 48
                              static_icon_64:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/Popcorn_64.png
                                dimensions:
                                  width: 64
                                  height: 64
                            total: 1
                          - __typename: AwardingTotal
                            award:
                              __typename: Award
                              id: award_free_bravo
                              name: 精彩
                              tags:
                                - award:quick_give
                                - award:unlimited_free
                                - award:legacy
                                - award:sort:10
                              static_icon_16:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_16.png
                                dimensions:
                                  width: 16
                                  height: 16
                              static_icon_24:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_24.png
                                dimensions:
                                  width: 24
                                  height: 24
                              static_icon_32:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_32.png
                                dimensions:
                                  width: 32
                                  height: 32
                              static_icon_48:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_48.png
                                dimensions:
                                  width: 48
                                  height: 48
                              static_icon_64:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_64.png
                                dimensions:
                                  width: 64
                                  height: 64
                            total: 1
                        isContestMode: false
                        distinguishedAs: null
                        voteState: NONE
                        score: 6567
                        commentCount: 1314
                        viewCount: null
                        authorFlair: null
                        flair:
                          __typename: PostFlair
                          type: text
                          text: SOCIETY
                          richtext: null
                          textColor: DARK
                          template:
                            id: f64b9e74-bebb-11ed-8b8e-1af6b9dc28bc
                            isEditable: false
                            backgroundColor: '#FFD635'
                        authorInfo:
                          __typename: Redditor
                          id: t2_1sle6w7w8n
                          name: MinotaurHorns1
                          isBlocked: false
                          isCakeDayNow: false
                          newIcon:
                            __typename: MediaSource
                            url: >-
                              https://www.redditstatic.com/avatars/defaults/v2/avatar_default_7.png
                            dimensions:
                              width: 256
                              height: 256
                          iconSmall:
                            __typename: MediaSource
                            url: >-
                              https://www.redditstatic.com/avatars/defaults/v2/avatar_default_7.png
                            dimensions:
                              width: 256
                              height: 256
                          snoovatarIcon: null
                          profile:
                            isNsfw: false
                          accountType: USER
                        isThumbnailEnabled: true
                        thumbnail:
                          __typename: MediaSource
                          url: >-
                            https://external-preview.redd.it/ODJvb2NlNzA0NW5nMT4rxgkwnyUtTgjfhrPDc_CnvnJ9xgAPKQiRorxP7CAs.png?width=140&height=140&crop=1%3A1%2Csmart&format=jpg&auto=webp&s=18f97246f09bbd31aed6d1d21e578460cfd57be9
                          dimensions:
                            width: 140
                            height: 140
                        media:
                          __typename: Media
                          previewMediaId: >-
                            ODJvb2NlNzA0NW5nMT4rxgkwnyUtTgjfhrPDc_CnvnJ9xgAPKQiRorxP7CAs
                          still:
                            __typename: StillMedia
                            source:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/ODJvb2NlNzA0NW5nMT4rxgkwnyUtTgjfhrPDc_CnvnJ9xgAPKQiRorxP7CAs.png?format=pjpg&auto=webp&s=7204bcd3a53d1033ab31be647279753c9bd069eb
                              dimensions:
                                width: 360
                                height: 640
                            small:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/ODJvb2NlNzA0NW5nMT4rxgkwnyUtTgjfhrPDc_CnvnJ9xgAPKQiRorxP7CAs.png?width=108&format=pjpg&auto=webp&s=8833de373fa79e2b976ec8ae08e5a084642782a6
                              dimensions:
                                width: 108
                                height: 192
                            medium:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/ODJvb2NlNzA0NW5nMT4rxgkwnyUtTgjfhrPDc_CnvnJ9xgAPKQiRorxP7CAs.png?width=216&format=pjpg&auto=webp&s=0d7234cf49c46427e7a54d0466d996ef1fbdb058
                              dimensions:
                                width: 216
                                height: 384
                            large:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/ODJvb2NlNzA0NW5nMT4rxgkwnyUtTgjfhrPDc_CnvnJ9xgAPKQiRorxP7CAs.png?width=320&format=pjpg&auto=webp&s=e3ee81c2fca822689f9f6b4c53180c8364264b57
                              dimensions:
                                width: 320
                                height: 568
                            xlarge: null
                            xxlarge: null
                            xxxlarge: null
                            altText: null
                          obfuscated_still:
                            __typename: StillMedia
                            source: null
                            small: null
                            medium: null
                            large: null
                            xlarge: null
                            xxlarge: null
                            xxxlarge: null
                          animated: null
                          streaming:
                            __typename: StreamingMedia
                            hlsUrl: >-
                              https://v.redd.it/v80k4s7045ng1/HLSPlaylist.m3u8?f=sd%2CsubsAll%2ChlsSpecOrder&v=1&a=1775292816%2CZTkyMDFmZjI2YTViMTM4YmM1M2EzOTU5NTc5MjExMTVhMWZiZDhhZDY0YTc2MDFkZjNhYzE4NjM0MjhiYjFiMw%3D%3D
                            dashUrl: >-
                              https://v.redd.it/v80k4s7045ng1/DASHPlaylist.mpd?f=sd%2CsubsAll%2ChlsSpecOrder&v=1&a=1775292816%2CZWY4ODZiODEwMjk1ZDFkY2U0ZWE5OWRlOWI0MDZkMGMzOWJhNjc0MDNmYmU1ZDFlOWUyMTNhMmNhZjgwMWYyOA%3D%3D
                            scrubberMediaUrl: https://v.redd.it/v80k4s7045ng1/CMAF_96.mp4
                            dimensions:
                              width: 360
                              height: 640
                            duration: 81
                            isGif: false
                          video: null
                          packagedMedia:
                            __typename: PackagedMedia
                            muxedMp4s: null
                          typeHint: VIDEO
                          download:
                            __typename: MediaDownload
                            url: >-
                              https://packaged-media.redd.it/v80k4s7045ng1/dl/m2-res_640p.mp4?m=DASHPlaylist.mpd&v=1&e=1772708400&s=65cee3fda4a32bd2466cee7649264cca697b27b5
                        moderationInfo: null
                        suggestedCommentSort: CONFIDENCE
                        permalink: >-
                          /r/interesting/comments/1rl5s0w/aw_have_joined_the_burger_wars/
                        isSelfPost: false
                        postHint: HOSTED_VIDEO
                        postEventInfo: null
                        gallery: null
                        devvit: null
                        outboundLink:
                          url: https://v.redd.it/v80k4s7045ng1
                          expiresAt: 2026-03-05T13:53:36.183516+0000
                        postStats:
                          viewCountTotal: null
                          shareAllTotal: 1908
                        postStatsPrivate:
                          viewCountTotals: null
                        isAuthorBlocked: false
                        upvoteRatio: 0.8911527416928757
                        reactedFrom: null
                        attributionInfo: null
                        crowdControlLevel: 'OFF'
                        isCrowdControlFilterEnabled: false
                        languageCode: en
                        isTranslatable: false
                        isTranslated: false
                        translatedLanguage: null
                        removedByCategory: null
                      - __typename: SubredditPost
                        authorCommunityBadge: null
                        subreddit:
                          __typename: Subreddit
                          id: t5_2qh0u
                          name: pics
                          prefixedName: r/pics
                          isQuarantined: false
                          title: Reddit Pics
                          type: PUBLIC
                          subscribersCount: 33300817
                          isNsfw: false
                          isSubscribed: false
                          isThumbnailsEnabled: true
                          styles:
                            icon: null
                            legacyIcon:
                              url: >-
                                https://b.thumbs.redditmedia.com/VZX_KQLnI1DPhlEZ07bIcLzwR1Win808RIt7zm49VIQ.png
                            primaryColor: '#553200'
                            bannerBackgroundImage: >-
                              https://styles.redditmedia.com/t5_2qh0u/styles/bannerBackgroundImage_if1cbgj4mc7b1.jpg?format=pjpg&s=531e105575a44022ba215e8d710b933eba3bbd70
                            legacyPrimaryColor: '#24A0ED'
                          modPermissions: null
                          communityStatus:
                            description:
                              markdown: >-
                                Earn double karma when you post non-political
                                content!
                              richtext: >-
                                {"document":[{"c":[{"e":"text","t":"Earn double
                                karma when you post non-political
                                content!"}],"e":"par"}]}
                            emoji:
                              name: upvote
                              url: >-
                                https://emoji.redditmedia.com/ad1td4bx9ezz_t5_3nqvj/upvote
                          isTitleSafe: true
                          isUserBanned: false
                          tippingStatus: null
                          whitelistStatus: SOME_ADS
                        crosspostRoot: null
                        id: t3_1rkscz4
                        createdAt: 2026-03-04T17:54:34.945000+0000
                        editedAt: null
                        postTitle: >-
                          Final moments of the Iranian Dena Warship near Sri
                          Lanka after being torpedoed by a US submarine
                        url: https://i.redd.it/doe90zh9h2ng1.jpeg
                        content: null
                        domain: i.redd.it
                        isSpoiler: false
                        isNsfw: false
                        isCommercialCommunication: false
                        isLocked: false
                        isSaved: false
                        isReactAllowed: false
                        isHidden: false
                        isGildable: true
                        isCrosspostable: true
                        isScoreHidden: false
                        isArchived: false
                        isStickied: false
                        isPollIncluded: false
                        poll: null
                        isFollowed: false
                        awardingsInfo:
                          promos: null
                        awardings:
                          - __typename: AwardingTotal
                            award:
                              __typename: Award
                              id: award_free_bravo
                              name: 精彩
                              tags:
                                - award:quick_give
                                - award:unlimited_free
                                - award:legacy
                                - award:sort:10
                              static_icon_16:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_16.png
                                dimensions:
                                  width: 16
                                  height: 16
                              static_icon_24:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_24.png
                                dimensions:
                                  width: 24
                                  height: 24
                              static_icon_32:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_32.png
                                dimensions:
                                  width: 32
                                  height: 32
                              static_icon_48:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_48.png
                                dimensions:
                                  width: 48
                                  height: 48
                              static_icon_64:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_64.png
                                dimensions:
                                  width: 64
                                  height: 64
                            total: 1
                        isContestMode: false
                        distinguishedAs: null
                        voteState: NONE
                        score: 17087
                        commentCount: 2121
                        viewCount: null
                        authorFlair: null
                        flair: null
                        authorInfo:
                          __typename: Redditor
                          id: t2_9fljo69v
                          name: Background-Ad-1210
                          isBlocked: false
                          isCakeDayNow: false
                          newIcon:
                            __typename: MediaSource
                            url: >-
                              https://styles.redditmedia.com/t5_3wxdrd/styles/profileIcon_snoo-nftv2_bmZ0X2VpcDE1NToxMzdfYmZkNjcwNjY3MDUzZTUxN2E5N2FmZTU2YzkxZTRmODNmMTE2MGJkM18yNDA5Mjc_rare_1ce7bc9e-29fd-4401-a565-b5d5c5fd4415-headshot.png?s=ed6db44cfb1a409f99da7ab5bf278ee5dca4f380
                            dimensions:
                              width: 256
                              height: 256
                          iconSmall:
                            __typename: MediaSource
                            url: >-
                              https://styles.redditmedia.com/t5_3wxdrd/styles/profileIcon_snoo-nftv2_bmZ0X2VpcDE1NToxMzdfYmZkNjcwNjY3MDUzZTUxN2E5N2FmZTU2YzkxZTRmODNmMTE2MGJkM18yNDA5Mjc_rare_1ce7bc9e-29fd-4401-a565-b5d5c5fd4415-headshot.png?width=50&height=50&frame=1&auto=webp&crop=50%3A50%2Csmart&s=a84e1298e205209a149cc6c97a8bf766d0f3f4f1
                            dimensions:
                              width: 50
                              height: 50
                          snoovatarIcon:
                            __typename: MediaSource
                            url: >-
                              https://i.redd.it/snoovatar/avatars/nftv2_bmZ0X2VpcDE1NToxMzdfYmZkNjcwNjY3MDUzZTUxN2E5N2FmZTU2YzkxZTRmODNmMTE2MGJkM18yNDA5Mjc_rare_1ce7bc9e-29fd-4401-a565-b5d5c5fd4415.png
                            dimensions:
                              width: 380
                              height: 600
                          profile:
                            isNsfw: false
                          accountType: USER
                        isThumbnailEnabled: true
                        thumbnail:
                          __typename: MediaSource
                          url: >-
                            https://preview.redd.it/doe90zh9h2ng1.jpeg?width=140&height=89&auto=webp&s=227dccbfba6f756cbbd6af34836eca5fa4742eb6
                          dimensions:
                            width: 140
                            height: 89
                        media:
                          __typename: Media
                          previewMediaId: doe90zh9h2ng1
                          still:
                            __typename: StillMedia
                            source:
                              __typename: MediaSource
                              url: >-
                                https://preview.redd.it/doe90zh9h2ng1.jpeg?auto=webp&s=5cdba5274a933b4ec8579701c07e845d538d4b94
                              dimensions:
                                width: 480
                                height: 307
                            small:
                              __typename: MediaSource
                              url: >-
                                https://preview.redd.it/doe90zh9h2ng1.jpeg?width=108&auto=webp&s=63fbd567e88bb06ee9c456155e6db5997d5d4dbf
                              dimensions:
                                width: 108
                                height: 69
                            medium:
                              __typename: MediaSource
                              url: >-
                                https://preview.redd.it/doe90zh9h2ng1.jpeg?width=216&auto=webp&s=e515fc7b397bd04b620aee485bb5e6df41241054
                              dimensions:
                                width: 216
                                height: 138
                            large:
                              __typename: MediaSource
                              url: >-
                                https://preview.redd.it/doe90zh9h2ng1.jpeg?width=320&auto=webp&s=108f6323d7fb3f97e107bca829352b945a34a77d
                              dimensions:
                                width: 320
                                height: 204
                            xlarge: null
                            xxlarge: null
                            xxxlarge: null
                            altText: null
                          obfuscated_still:
                            __typename: StillMedia
                            source: null
                            small: null
                            medium: null
                            large: null
                            xlarge: null
                            xxlarge: null
                            xxxlarge: null
                          animated: null
                          streaming: null
                          video: null
                          packagedMedia: null
                          typeHint: IMAGE
                          download: null
                        moderationInfo: null
                        suggestedCommentSort: null
                        permalink: >-
                          /r/pics/comments/1rkscz4/final_moments_of_the_iranian_dena_warship_near/
                        isSelfPost: false
                        postHint: IMAGE
                        postEventInfo: null
                        gallery: null
                        devvit: null
                        outboundLink:
                          url: https://i.redd.it/doe90zh9h2ng1.jpeg
                          expiresAt: 2026-03-05T13:53:36.183458+0000
                        postStats:
                          viewCountTotal: null
                          shareAllTotal: 3357
                        postStatsPrivate:
                          viewCountTotals: null
                        isAuthorBlocked: false
                        upvoteRatio: 0.9406232109266378
                        reactedFrom: null
                        attributionInfo: null
                        crowdControlLevel: 'OFF'
                        isCrowdControlFilterEnabled: false
                        languageCode: en
                        isTranslatable: false
                        isTranslated: false
                        translatedLanguage: null
                        removedByCategory: null
                      - __typename: SubredditPost
                        authorCommunityBadge: null
                        subreddit:
                          __typename: Subreddit
                          id: t5_2gpmw9
                          name: okbuddycinephile
                          prefixedName: r/okbuddycinephile
                          isQuarantined: false
                          title: okbuddycinephile
                          type: PUBLIC
                          subscribersCount: 577371
                          isNsfw: false
                          isSubscribed: false
                          isThumbnailsEnabled: true
                          styles:
                            icon: >-
                              https://styles.redditmedia.com/t5_2gpmw9/styles/communityIcon_hghv56s8ccq41.png?width=64&height=64&frame=1&auto=webp&crop=64:64,smart&s=bfb2d063f4c64c2859085443711c2b23b696e21a
                            legacyIcon: null
                            primaryColor: '#1A7FAA'
                            bannerBackgroundImage: >-
                              https://styles.redditmedia.com/t5_2gpmw9/styles/bannerBackgroundImage_oq70ney3e3k41.jpg?format=pjpg&s=430fcf1b469b91ba28b9263a6697380db5bcea1b
                            legacyPrimaryColor: null
                          modPermissions: null
                          communityStatus:
                            description:
                              markdown: Discussing Kino
                              richtext: >-
                                {"document":[{"c":[{"e":"text","t":"Discussing
                                Kino"}],"e":"par"}]}
                            emoji:
                              name: '1000022972'
                              url: >-
                                https://emoji.redditmedia.com/rc0lfttpp4he1_t5_2gpmw9/1000022972
                          isTitleSafe: true
                          isUserBanned: false
                          tippingStatus: null
                          whitelistStatus: ALL_ADS
                        crosspostRoot: null
                        id: t3_1rkxeuy
                        createdAt: 2026-03-04T21:00:01.113000+0000
                        editedAt: null
                        postTitle: Favorite actor that did not go to Epstein Island?
                        url: https://i.redd.it/4idnvzece3ng1.jpeg
                        content: null
                        domain: i.redd.it
                        isSpoiler: false
                        isNsfw: false
                        isCommercialCommunication: false
                        isLocked: false
                        isSaved: false
                        isReactAllowed: false
                        isHidden: false
                        isGildable: true
                        isCrosspostable: true
                        isScoreHidden: false
                        isArchived: false
                        isStickied: false
                        isPollIncluded: false
                        poll: null
                        isFollowed: false
                        awardingsInfo:
                          promos: null
                        awardings:
                          - __typename: AwardingTotal
                            award:
                              __typename: Award
                              id: award_free_bravo
                              name: 精彩
                              tags:
                                - award:quick_give
                                - award:unlimited_free
                                - award:legacy
                                - award:sort:10
                              static_icon_16:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_16.png
                                dimensions:
                                  width: 16
                                  height: 16
                              static_icon_24:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_24.png
                                dimensions:
                                  width: 24
                                  height: 24
                              static_icon_32:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_32.png
                                dimensions:
                                  width: 32
                                  height: 32
                              static_icon_48:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_48.png
                                dimensions:
                                  width: 48
                                  height: 48
                              static_icon_64:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_64.png
                                dimensions:
                                  width: 64
                                  height: 64
                            total: 1
                        isContestMode: false
                        distinguishedAs: null
                        voteState: NONE
                        score: 40797
                        commentCount: 2272
                        viewCount: null
                        authorFlair: null
                        flair: null
                        authorInfo:
                          __typename: Redditor
                          id: t2_947k2
                          name: beaglemaster
                          isBlocked: false
                          isCakeDayNow: false
                          newIcon:
                            __typename: MediaSource
                            url: >-
                              https://preview.redd.it/snoovatar/avatars/0530cdb6-474d-4e89-9ce7-69a0830766d8-headshot.png?auto=webp&s=2c57c97ef8be2f7a943b3145f69e3013187a6ccf
                            dimensions:
                              width: 256
                              height: 256
                          iconSmall:
                            __typename: MediaSource
                            url: >-
                              https://preview.redd.it/snoovatar/avatars/0530cdb6-474d-4e89-9ce7-69a0830766d8-headshot.png?width=50&height=50&auto=webp&s=edf593ac6951b4fe68f2928417cac2836038538d
                            dimensions:
                              width: 50
                              height: 50
                          snoovatarIcon:
                            __typename: MediaSource
                            url: >-
                              https://i.redd.it/snoovatar/avatars/0530cdb6-474d-4e89-9ce7-69a0830766d8.png
                            dimensions:
                              width: 380
                              height: 600
                          profile:
                            isNsfw: false
                          accountType: USER
                        isThumbnailEnabled: true
                        thumbnail:
                          __typename: MediaSource
                          url: >-
                            https://preview.redd.it/4idnvzece3ng1.jpeg?width=140&height=140&crop=1%3A1%2Csmart&auto=webp&s=b3ea32ef2a262bce6b7b0db180f4352ce589cae6
                          dimensions:
                            width: 140
                            height: 140
                        media:
                          __typename: Media
                          previewMediaId: 4idnvzece3ng1
                          still:
                            __typename: StillMedia
                            source:
                              __typename: MediaSource
                              url: >-
                                https://preview.redd.it/4idnvzece3ng1.jpeg?auto=webp&s=b6786b507e2a0984c05ac275b4211aeebfc89dcc
                              dimensions:
                                width: 989
                                height: 1241
                            small:
                              __typename: MediaSource
                              url: >-
                                https://preview.redd.it/4idnvzece3ng1.jpeg?width=108&auto=webp&s=2d4bde49dba83b90bdb30d1de3921a97090bf994
                              dimensions:
                                width: 108
                                height: 135
                            medium:
                              __typename: MediaSource
                              url: >-
                                https://preview.redd.it/4idnvzece3ng1.jpeg?width=216&auto=webp&s=c072ee0b8fcc849f28bc1034cce56d475a194dfa
                              dimensions:
                                width: 216
                                height: 271
                            large:
                              __typename: MediaSource
                              url: >-
                                https://preview.redd.it/4idnvzece3ng1.jpeg?width=320&auto=webp&s=119bd8ced50df29b96f1a00653e447a18054913c
                              dimensions:
                                width: 320
                                height: 401
                            xlarge:
                              __typename: MediaSource
                              url: >-
                                https://preview.redd.it/4idnvzece3ng1.jpeg?width=640&auto=webp&s=1beec6950d28c016bf92d93b3d925c5f92026fc1
                              dimensions:
                                width: 640
                                height: 803
                            xxlarge:
                              __typename: MediaSource
                              url: >-
                                https://preview.redd.it/4idnvzece3ng1.jpeg?width=960&auto=webp&s=7a244ec3ce2e5b3ac1a020f621a9c4ddb0ce756d
                              dimensions:
                                width: 960
                                height: 1204
                            xxxlarge: null
                            altText: null
                          obfuscated_still:
                            __typename: StillMedia
                            source: null
                            small: null
                            medium: null
                            large: null
                            xlarge: null
                            xxlarge: null
                            xxxlarge: null
                          animated: null
                          streaming: null
                          video: null
                          packagedMedia: null
                          typeHint: IMAGE
                          download: null
                        moderationInfo: null
                        suggestedCommentSort: null
                        permalink: >-
                          /r/okbuddycinephile/comments/1rkxeuy/favorite_actor_that_did_not_go_to_epstein_island/
                        isSelfPost: false
                        postHint: IMAGE
                        postEventInfo: null
                        gallery: null
                        devvit: null
                        outboundLink:
                          url: https://i.redd.it/4idnvzece3ng1.jpeg
                          expiresAt: 2026-03-05T13:53:36.183740+0000
                        postStats:
                          viewCountTotal: null
                          shareAllTotal: 5978
                        postStatsPrivate:
                          viewCountTotals: null
                        isAuthorBlocked: false
                        upvoteRatio: 0.9473578595317725
                        reactedFrom: null
                        attributionInfo: null
                        crowdControlLevel: 'OFF'
                        isCrowdControlFilterEnabled: false
                        languageCode: en
                        isTranslatable: false
                        isTranslated: false
                        translatedLanguage: null
                        removedByCategory: null
                      - __typename: SubredditPost
                        authorCommunityBadge: null
                        subreddit:
                          __typename: Subreddit
                          id: t5_2qh1i
                          name: AskReddit
                          prefixedName: r/AskReddit
                          isQuarantined: false
                          title: Ask Reddit...
                          type: PUBLIC
                          subscribersCount: 57898398
                          isNsfw: false
                          isSubscribed: false
                          isThumbnailsEnabled: false
                          styles:
                            icon: >-
                              https://styles.redditmedia.com/t5_2qh1i/styles/communityIcon_p6kb2m6b185b1.png?width=64&height=64&frame=1&auto=webp&crop=64:64,smart&s=6726c91bfc2dd09d0446650bb29b08232b835411
                            legacyIcon:
                              url: >-
                                https://b.thumbs.redditmedia.com/LSHrisQApf1H5F8nWShTx3_KjTOMc3R_ss3kx3XAyXQ.png
                            primaryColor: '#D4EAFF'
                            bannerBackgroundImage: >-
                              https://styles.redditmedia.com/t5_2qh1i/styles/bannerBackgroundImage_fs33xogq946f1.png
                            legacyPrimaryColor: '#222222'
                          modPermissions: null
                          communityStatus:
                            description:
                              markdown: ​Credit
                              richtext: >-
                                {"document":[{"c":[{"e":"text","t":"\u200bCredit"}],"e":"par"}]}
                            emoji:
                              name: donkey_right
                              url: >-
                                https://emoji.redditmedia.com/5atpv9pyenjf1_t5_2qh1i/donkey_right
                          isTitleSafe: true
                          isUserBanned: false
                          tippingStatus: null
                          whitelistStatus: ALL_ADS
                        crosspostRoot: null
                        id: t3_1rkmnxj
                        createdAt: 2026-03-04T14:21:01.518000+0000
                        editedAt: null
                        postTitle: >-
                          Poor people who have dated rich people, what did you
                          learn?
                        url: >-
                          https://www.reddit.com/r/AskReddit/comments/1rkmnxj/poor_people_who_have_dated_rich_people_what_did/
                        content: null
                        domain: self.AskReddit
                        isSpoiler: false
                        isNsfw: false
                        isCommercialCommunication: false
                        isLocked: false
                        isSaved: false
                        isReactAllowed: false
                        isHidden: false
                        isGildable: true
                        isCrosspostable: true
                        isScoreHidden: false
                        isArchived: false
                        isStickied: false
                        isPollIncluded: false
                        poll: null
                        isFollowed: false
                        awardingsInfo:
                          promos: null
                        awardings: []
                        isContestMode: false
                        distinguishedAs: null
                        voteState: NONE
                        score: 5864
                        commentCount: 2807
                        viewCount: null
                        authorFlair: null
                        flair: null
                        authorInfo:
                          __typename: Redditor
                          id: t2_dv4wszje
                          name: Angelus12345678
                          isBlocked: false
                          isCakeDayNow: false
                          newIcon:
                            __typename: MediaSource
                            url: >-
                              https://preview.redd.it/snoovatar/avatars/35b6b26d-5f48-43ed-8347-2a4a735ed92e-headshot.png?auto=webp&s=df46c367adfc954da297cca64e8db2987482adf1
                            dimensions:
                              width: 256
                              height: 256
                          iconSmall:
                            __typename: MediaSource
                            url: >-
                              https://preview.redd.it/snoovatar/avatars/35b6b26d-5f48-43ed-8347-2a4a735ed92e-headshot.png?width=50&height=50&auto=webp&s=512f2ae610c92e5e7bb8992feed7d43d94b2bbdb
                            dimensions:
                              width: 50
                              height: 50
                          snoovatarIcon:
                            __typename: MediaSource
                            url: >-
                              https://i.redd.it/snoovatar/avatars/35b6b26d-5f48-43ed-8347-2a4a735ed92e.png
                            dimensions:
                              width: 380
                              height: 600
                          profile:
                            isNsfw: false
                          accountType: USER
                        isThumbnailEnabled: false
                        thumbnail: null
                        media: null
                        moderationInfo: null
                        suggestedCommentSort: null
                        permalink: >-
                          /r/AskReddit/comments/1rkmnxj/poor_people_who_have_dated_rich_people_what_did/
                        isSelfPost: true
                        postHint: null
                        postEventInfo: null
                        gallery: null
                        devvit: null
                        outboundLink:
                          url: >-
                            https://www.reddit.com/r/AskReddit/comments/1rkmnxj/poor_people_who_have_dated_rich_people_what_did/
                          expiresAt: 2026-03-05T13:53:36.183515+0000
                        postStats:
                          viewCountTotal: null
                          shareAllTotal: 5897
                        postStatsPrivate:
                          viewCountTotals: null
                        isAuthorBlocked: false
                        upvoteRatio: 0.9232863549007047
                        reactedFrom: null
                        attributionInfo: null
                        crowdControlLevel: 'OFF'
                        isCrowdControlFilterEnabled: false
                        languageCode: en
                        isTranslatable: false
                        isTranslated: false
                        translatedLanguage: null
                        removedByCategory: null
                      - __typename: SubredditPost
                        authorCommunityBadge: null
                        subreddit:
                          __typename: Subreddit
                          id: t5_2vegg
                          name: me_irl
                          prefixedName: r/me_irl
                          isQuarantined: false
                          title: selfies of the soul
                          type: PUBLIC
                          subscribersCount: 7825932
                          isNsfw: false
                          isSubscribed: false
                          isThumbnailsEnabled: true
                          styles:
                            icon: null
                            legacyIcon:
                              url: >-
                                https://b.thumbs.redditmedia.com/ru_sDDfAXxeVzD5Ykiy5IqQeUG9KsoJs6wTzXlh1Llg.png
                            primaryColor: null
                            bannerBackgroundImage: >-
                              https://styles.redditmedia.com/t5_2vegg/styles/bannerBackgroundImage_9feahkmn2ry11.png
                            legacyPrimaryColor: '#FF66AC'
                          modPermissions: null
                          communityStatus:
                            description:
                              markdown: wtf is a community status lol
                              richtext: >-
                                {"document":[{"c":[{"e":"text","t":"wtf is a
                                community status lol"}],"e":"par"}]}
                            emoji:
                              name: cat_blep
                              url: >-
                                https://emoji.redditmedia.com/p9sxc1zh1guz_t5_3nqvj/cat_blep
                          isTitleSafe: true
                          isUserBanned: false
                          tippingStatus: null
                          whitelistStatus: ALL_ADS
                        crosspostRoot: null
                        id: t3_1rl7j63
                        createdAt: 2026-03-05T04:07:38.462000+0000
                        editedAt: null
                        postTitle: me_irl
                        url: https://i.redd.it/nq5az70ni5ng1.jpeg
                        content: null
                        domain: i.redd.it
                        isSpoiler: false
                        isNsfw: false
                        isCommercialCommunication: false
                        isLocked: false
                        isSaved: false
                        isReactAllowed: false
                        isHidden: false
                        isGildable: true
                        isCrosspostable: true
                        isScoreHidden: false
                        isArchived: false
                        isStickied: false
                        isPollIncluded: false
                        poll: null
                        isFollowed: false
                        awardingsInfo:
                          promos: null
                        awardings:
                          - __typename: AwardingTotal
                            award:
                              __typename: Award
                              id: award_sipping_tea_2
                              name: 喝茶
                              tags:
                                - award:sort:1110
                                - award:legacy
                              static_icon_16:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/Sipping_Tea_16.png
                                dimensions:
                                  width: 16
                                  height: 16
                              static_icon_24:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/Sipping_Tea_24.png
                                dimensions:
                                  width: 24
                                  height: 24
                              static_icon_32:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/Sipping_Tea_32.png
                                dimensions:
                                  width: 32
                                  height: 32
                              static_icon_48:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/Sipping_Tea_48.png
                                dimensions:
                                  width: 48
                                  height: 48
                              static_icon_64:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/Sipping_Tea_64.png
                                dimensions:
                                  width: 64
                                  height: 64
                            total: 1
                        isContestMode: false
                        distinguishedAs: null
                        voteState: NONE
                        score: 5399
                        commentCount: 288
                        viewCount: null
                        authorFlair: null
                        flair: null
                        authorInfo:
                          __typename: Redditor
                          id: t2_1y0kbqlkhu
                          name: iYessyyy
                          isBlocked: false
                          isCakeDayNow: false
                          newIcon:
                            __typename: MediaSource
                            url: >-
                              https://styles.redditmedia.com/t5_fgf1a5/styles/profileIcon_6mfaix8gmspf1.jpeg?s=b07c6a89f4acbb8e06e322ebf50bc2b10ed8ce80
                            dimensions:
                              width: 256
                              height: 256
                          iconSmall:
                            __typename: MediaSource
                            url: >-
                              https://styles.redditmedia.com/t5_fgf1a5/styles/profileIcon_6mfaix8gmspf1.jpeg?width=50&height=50&frame=1&auto=webp&crop=50%3A50%2Csmart&s=049419d2e3bf20e81b57d2325a3b8c38ca4dd31c
                            dimensions:
                              width: 50
                              height: 50
                          snoovatarIcon: null
                          profile:
                            isNsfw: false
                          accountType: USER
                        isThumbnailEnabled: true
                        thumbnail:
                          __typename: MediaSource
                          url: >-
                            https://preview.redd.it/nq5az70ni5ng1.jpeg?width=140&height=116&auto=webp&s=347b1b1d2fc7af15c6538226864680c2f132cb7f
                          dimensions:
                            width: 140
                            height: 116
                        media:
                          __typename: Media
                          previewMediaId: nq5az70ni5ng1
                          still:
                            __typename: StillMedia
                            source:
                              __typename: MediaSource
                              url: >-
                                https://preview.redd.it/nq5az70ni5ng1.jpeg?auto=webp&s=324356fb93a95a41b2b7f2a8c2d85ee6a71e27ae
                              dimensions:
                                width: 960
                                height: 801
                            small:
                              __typename: MediaSource
                              url: >-
                                https://preview.redd.it/nq5az70ni5ng1.jpeg?width=108&auto=webp&s=c3d1bea219861c0f0dcde014554ddff1a4214ce3
                              dimensions:
                                width: 108
                                height: 90
                            medium:
                              __typename: MediaSource
                              url: >-
                                https://preview.redd.it/nq5az70ni5ng1.jpeg?width=216&auto=webp&s=973cb74d3c997881d77dd584cd4349cf44cd5950
                              dimensions:
                                width: 216
                                height: 180
                            large:
                              __typename: MediaSource
                              url: >-
                                https://preview.redd.it/nq5az70ni5ng1.jpeg?width=320&auto=webp&s=e4482d2f1c6923e4d7c05892947b86b75743dbfc
                              dimensions:
                                width: 320
                                height: 267
                            xlarge:
                              __typename: MediaSource
                              url: >-
                                https://preview.redd.it/nq5az70ni5ng1.jpeg?width=640&auto=webp&s=ba6b245a949efc9418d56dd23078fcbb8f377673
                              dimensions:
                                width: 640
                                height: 534
                            xxlarge:
                              __typename: MediaSource
                              url: >-
                                https://preview.redd.it/nq5az70ni5ng1.jpeg?width=960&auto=webp&s=86e284c6c112c3c3914fcb2122a5b2e7edb3b962
                              dimensions:
                                width: 960
                                height: 801
                            xxxlarge: null
                            altText: null
                          obfuscated_still:
                            __typename: StillMedia
                            source: null
                            small: null
                            medium: null
                            large: null
                            xlarge: null
                            xxlarge: null
                            xxxlarge: null
                          animated: null
                          streaming: null
                          video: null
                          packagedMedia: null
                          typeHint: IMAGE
                          download: null
                        moderationInfo: null
                        suggestedCommentSort: null
                        permalink: /r/me_irl/comments/1rl7j63/me_irl/
                        isSelfPost: false
                        postHint: IMAGE
                        postEventInfo: null
                        gallery: null
                        devvit: null
                        outboundLink:
                          url: https://i.redd.it/nq5az70ni5ng1.jpeg
                          expiresAt: 2026-03-05T13:53:36.183699+0000
                        postStats:
                          viewCountTotal: null
                          shareAllTotal: 1959
                        postStatsPrivate:
                          viewCountTotals: null
                        isAuthorBlocked: false
                        upvoteRatio: 0.88908707637425
                        reactedFrom: null
                        attributionInfo: null
                        crowdControlLevel: 'OFF'
                        isCrowdControlFilterEnabled: false
                        languageCode: und
                        isTranslatable: false
                        isTranslated: false
                        translatedLanguage: null
                        removedByCategory: null
                      - __typename: SubredditPost
                        authorCommunityBadge: null
                        subreddit:
                          __typename: Subreddit
                          id: t5_2cneq
                          name: politics
                          prefixedName: r/politics
                          isQuarantined: false
                          title: Politics
                          type: PUBLIC
                          subscribersCount: 9069157
                          isNsfw: false
                          isSubscribed: false
                          isThumbnailsEnabled: true
                          styles:
                            icon: >-
                              https://styles.redditmedia.com/t5_2cneq/styles/communityIcon_fy84mdgh75201.jpg?width=64&height=64&frame=1&auto=webp&crop=64:64,smart&s=a75debdd9efb82114f0e6b13ea17a1eae429e004
                            legacyIcon:
                              url: >-
                                https://a.thumbs.redditmedia.com/ZaSYxoONdAREm1_u_sid_fjcgvBTNeFQV--8tz6fZC0.png
                            primaryColor: '#205493'
                            bannerBackgroundImage: >-
                              https://styles.redditmedia.com/t5_2cneq/styles/bannerBackgroundImage_4vvj1k5ldn671.png
                            legacyPrimaryColor: '#A5A4A4'
                          modPermissions: null
                          communityStatus: null
                          isTitleSafe: true
                          isUserBanned: false
                          tippingStatus: null
                          whitelistStatus: ALL_ADS
                        crosspostRoot: null
                        id: t3_1rl58eu
                        createdAt: 2026-03-05T02:21:23.360000+0000
                        editedAt: null
                        postTitle: >-
                          GOP senator allegedly breaks Marine’s hand during
                          protest against Iran war
                        url: >-
                          https://www.lgbtqnation.com/2026/03/quick-hit-gop-senator-allegedly-breaks-marines-hand-for-protesting-against-the/
                        content: null
                        domain: lgbtqnation.com
                        isSpoiler: false
                        isNsfw: false
                        isCommercialCommunication: false
                        isLocked: false
                        isSaved: false
                        isReactAllowed: false
                        isHidden: false
                        isGildable: true
                        isCrosspostable: true
                        isScoreHidden: false
                        isArchived: false
                        isStickied: false
                        isPollIncluded: false
                        poll: null
                        isFollowed: false
                        awardingsInfo:
                          promos: null
                        awardings:
                          - __typename: AwardingTotal
                            award:
                              __typename: Award
                              id: award_all_seeing_upvote
                              name: All Seeing Upvote
                              tags:
                                - award:legacy
                                - award:sort:1170
                              static_icon_16:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/All_Seeing_Upvote_16.png
                                dimensions:
                                  width: 16
                                  height: 16
                              static_icon_24:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/All_Seeing_Upvote_24.png
                                dimensions:
                                  width: 24
                                  height: 24
                              static_icon_32:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/All_Seeing_Upvote_32.png
                                dimensions:
                                  width: 32
                                  height: 32
                              static_icon_48:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/All_Seeing_Upvote_48.png
                                dimensions:
                                  width: 48
                                  height: 48
                              static_icon_64:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/All_Seeing_Upvote_64.png
                                dimensions:
                                  width: 64
                                  height: 64
                            total: 1
                          - __typename: AwardingTotal
                            award:
                              __typename: Award
                              id: award_furious_2
                              name: Furious
                              tags:
                                - award:sort:1190
                                - award:legacy
                              static_icon_16:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/furious_16.png
                                dimensions:
                                  width: 16
                                  height: 16
                              static_icon_24:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/furious_24.png
                                dimensions:
                                  width: 24
                                  height: 24
                              static_icon_32:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/furious_32.png
                                dimensions:
                                  width: 32
                                  height: 32
                              static_icon_48:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/furious_48.png
                                dimensions:
                                  width: 48
                                  height: 48
                              static_icon_64:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/furious_64.png
                                dimensions:
                                  width: 64
                                  height: 64
                            total: 1
                          - __typename: AwardingTotal
                            award:
                              __typename: Award
                              id: award_free_mindblown
                              name: Mindblown
                              tags:
                                - award:sort:30
                                - award:legacy
                                - award:unlimited_free
                                - award:quick_give
                              static_icon_16:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/mindblown_16.png
                                dimensions:
                                  width: 16
                                  height: 16
                              static_icon_24:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/mindblown_24.png
                                dimensions:
                                  width: 24
                                  height: 24
                              static_icon_32:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/mindblown_32.png
                                dimensions:
                                  width: 32
                                  height: 32
                              static_icon_48:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/mindblown_48.png
                                dimensions:
                                  width: 48
                                  height: 48
                              static_icon_64:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/mindblown_64.png
                                dimensions:
                                  width: 64
                                  height: 64
                            total: 9
                          - __typename: AwardingTotal
                            award:
                              __typename: Award
                              id: award_free_regret_2
                              name: Regret
                              tags:
                                - award:quick_give
                                - award:unlimited_free
                                - award:legacy
                                - award:sort:40
                              static_icon_16:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/regret_16.png
                                dimensions:
                                  width: 16
                                  height: 16
                              static_icon_24:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/regret_24.png
                                dimensions:
                                  width: 24
                                  height: 24
                              static_icon_32:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/regret_32.png
                                dimensions:
                                  width: 32
                                  height: 32
                              static_icon_48:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/regret_48.png
                                dimensions:
                                  width: 48
                                  height: 48
                              static_icon_64:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/regret_64.png
                                dimensions:
                                  width: 64
                                  height: 64
                            total: 2
                          - __typename: AwardingTotal
                            award:
                              __typename: Award
                              id: award_free_bravo
                              name: 精彩
                              tags:
                                - award:quick_give
                                - award:unlimited_free
                                - award:legacy
                                - award:sort:10
                              static_icon_16:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_16.png
                                dimensions:
                                  width: 16
                                  height: 16
                              static_icon_24:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_24.png
                                dimensions:
                                  width: 24
                                  height: 24
                              static_icon_32:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_32.png
                                dimensions:
                                  width: 32
                                  height: 32
                              static_icon_48:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_48.png
                                dimensions:
                                  width: 48
                                  height: 48
                              static_icon_64:
                                __typename: MediaSource
                                url: >-
                                  https://i.redd.it/snoovatar/snoo_assets/marketing/bravo_64.png
                                dimensions:
                                  width: 64
                                  height: 64
                            total: 1
                        isContestMode: false
                        distinguishedAs: null
                        voteState: NONE
                        score: 18857
                        commentCount: 1222
                        viewCount: null
                        authorFlair: null
                        flair:
                          __typename: PostFlair
                          type: richtext
                          text: No Paywall
                          richtext: '[{"e":"text","t":"No Paywall"}]'
                          textColor: DARK
                          template:
                            id: ff393144-9e39-11f0-acf2-f27090aab25c
                            isEditable: false
                            backgroundColor: '#34CB5C'
                        authorInfo:
                          __typename: Redditor
                          id: t2_abtvgasu
                          name: Background_Level67
                          isBlocked: false
                          isCakeDayNow: false
                          newIcon:
                            __typename: MediaSource
                            url: >-
                              https://www.redditstatic.com/avatars/defaults/v2/avatar_default_6.png
                            dimensions:
                              width: 256
                              height: 256
                          iconSmall:
                            __typename: MediaSource
                            url: >-
                              https://www.redditstatic.com/avatars/defaults/v2/avatar_default_6.png
                            dimensions:
                              width: 256
                              height: 256
                          snoovatarIcon: null
                          profile:
                            isNsfw: false
                          accountType: USER
                        isThumbnailEnabled: true
                        thumbnail:
                          __typename: MediaSource
                          url: >-
                            https://external-preview.redd.it/6bulO7y02WAMBHC0WF5lx1I7HI8TcdORhRAXWlto9VY.jpeg?width=140&height=73&auto=webp&s=df24ef6ecc812ebecbffd30bb6b86c0dae3e63bb
                          dimensions:
                            width: 140
                            height: 73
                        media:
                          __typename: Media
                          previewMediaId: 6bulO7y02WAMBHC0WF5lx1I7HI8TcdORhRAXWlto9VY
                          still:
                            __typename: StillMedia
                            source:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/6bulO7y02WAMBHC0WF5lx1I7HI8TcdORhRAXWlto9VY.jpeg?auto=webp&s=ee0e38a9a21f72bfd18be735edd6be3a61647d47
                              dimensions:
                                width: 1196
                                height: 630
                            small:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/6bulO7y02WAMBHC0WF5lx1I7HI8TcdORhRAXWlto9VY.jpeg?width=108&auto=webp&s=9c0426b707171abb31a1cde461519c06c503493c
                              dimensions:
                                width: 108
                                height: 56
                            medium:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/6bulO7y02WAMBHC0WF5lx1I7HI8TcdORhRAXWlto9VY.jpeg?width=216&auto=webp&s=b1a6aa03250846e932b2db8b3b2f47287107490b
                              dimensions:
                                width: 216
                                height: 113
                            large:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/6bulO7y02WAMBHC0WF5lx1I7HI8TcdORhRAXWlto9VY.jpeg?width=320&auto=webp&s=587d31f0fc2032b6d6500ec093e6b2fd7c8e1c77
                              dimensions:
                                width: 320
                                height: 168
                            xlarge:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/6bulO7y02WAMBHC0WF5lx1I7HI8TcdORhRAXWlto9VY.jpeg?width=640&auto=webp&s=4aa37402510f92432d67e4512851f91c4f339945
                              dimensions:
                                width: 640
                                height: 337
                            xxlarge:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/6bulO7y02WAMBHC0WF5lx1I7HI8TcdORhRAXWlto9VY.jpeg?width=960&auto=webp&s=d702ad48f3bf65a4d6e716450077b37712893588
                              dimensions:
                                width: 960
                                height: 505
                            xxxlarge:
                              __typename: MediaSource
                              url: >-
                                https://external-preview.redd.it/6bulO7y02WAMBHC0WF5lx1I7HI8TcdORhRAXWlto9VY.jpeg?width=1080&auto=webp&s=d08bfc55f3615e687e3335c7f0b221b77beb3041
                              dimensions:
                                width: 1080
                                height: 568
                            altText: null
                          obfuscated_still:
                            __typename: StillMedia
                            source: null
                            small: null
                            medium: null
                            large: null
                            xlarge: null
                            xxlarge: null
                            xxxlarge: null
                          animated: null
                          streaming: null
                          video: null
                          packagedMedia: null
                          typeHint: null
                          download: null
                        moderationInfo: null
                        suggestedCommentSort: null
                        permalink: >-
                          /r/politics/comments/1rl58eu/gop_senator_allegedly_breaks_marines_hand_during/
                        isSelfPost: false
                        postHint: LINK
                        postEventInfo: null
                        gallery: null
                        devvit: null
                        outboundLink:
                          url: >-
                            https://out.reddit.com/t3_1rl58eu?app_name=android&token=AQAA4IqpaY4hYbTkYGKXFOSNBbg-IeaI_5MvJ8egXy-dZfAiO8V3&url=https%3A%2F%2Fwww.lgbtqnation.com%2F2026%2F03%2Fquick-hit-gop-senator-allegedly-breaks-marines-hand-for-protesting-against-the%2F
                          expiresAt: 2026-03-05T13:53:36.183341+0000
                        postStats:
                          viewCountTotal: null
                          shareAllTotal: 1136
                        postStatsPrivate:
                          viewCountTotals: null
                        isAuthorBlocked: false
                        upvoteRatio: 0.9697208642170004
                        reactedFrom: null
                        attributionInfo: null
                        crowdControlLevel: 'OFF'
                        isCrowdControlFilterEnabled: false
                        languageCode: en
                        isTranslatable: false
                        isTranslated: false
                        translatedLanguage: null
                        removedByCategory: null
                  after: dDNfMXJsNThldQ==
                requestId: 4335528c-9793-45a0-bc72-74df2e69d8f5
          headers: {}
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 400
                  data: null
                  message: 'Missing required parameter: handle'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 401
                  data: null
                  message: apiKey is null
        '402':
          description: Payment Required
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 402
                  data: null
                  message: apiKey quota is not enough
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 429
                  data: null
                  message: qps limit exceeded
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 500
                  data: null
                  message: Internal server error
      deprecated: false
      security:
        - JWT Bearer: []
      x-codeSamples:
        - lang: curl
          label: cURL
          source: |-
            curl --request GET \
              --url 'https://api.keyapi.ai/v1/reddit/fetch_popular_feed?sort=BEST&time=ALL&need_format=false' \
              --header 'Authorization: Bearer <YOUR_API_KEY>'
        - lang: python
          label: Python
          source: |-
            import requests

            response = requests.get(
                'https://api.keyapi.ai/v1/reddit/fetch_popular_feed',
                params={"sort": "BEST", "time": "ALL", "need_format": "false"},
                headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
            )
            print(response.json())
        - lang: javascript
          label: JavaScript
          source: >-
            const params = new URLSearchParams({"sort": "BEST", "time": "ALL",
            "need_format": "false"});


            const response = await
            fetch(`https://api.keyapi.ai/v1/reddit/fetch_popular_feed?${params}`,
            {
              method: 'GET',
              headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
            });

            const data = await response.json();

            console.log(data);
components:
  securitySchemes:
    JWT Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |-
        API key for authentication. Format: `sk_live_xxxxxxxxxxxxx`
        Get your API key from the [Dashboard](http://keyapi.ai/app/dashboard).

````