> **For coding agents and LLMs:** This is one page from the Social Fetch docs (markdown export). The sections below mirror the orientation block in [`/llms.txt`](https://www.socialfetch.dev/llms.txt); use [`/llms.json`](https://www.socialfetch.dev/llms.json) when you need a structured operation inventory. The catalog covers documented operations with on-site reference pages.

## This page

- **On-site (HTML):** [https://www.socialfetch.dev/docs/api/v1/reddit/posts/comments/get](https://www.socialfetch.dev/docs/api/v1/reddit/posts/comments/get)
- **Markdown (.mdx) URL:** [https://www.socialfetch.dev/docs/api/v1/reddit/posts/comments/get.mdx](https://www.socialfetch.dev/docs/api/v1/reddit/posts/comments/get.mdx)

## API base URL and authentication

- **API origin (from OpenAPI `servers`):** `https://api.socialfetch.dev`
- **Authentication:** send `x-api-key: sfk_...` on `/v1/**` routes unless the operation is explicitly anonymous (check OpenAPI `security`, the [API reference hub](https://www.socialfetch.dev/docs/api.mdx), [`/llms.txt`](https://www.socialfetch.dev/llms.txt), or [`/llms.json`](https://www.socialfetch.dev/llms.json) for each route).
- **OpenAPI JSON:** [https://www.socialfetch.dev/openapi.json](https://www.socialfetch.dev/openapi.json)

## Recommended docs entrypoints (this site)

- [Documentation overview](https://www.socialfetch.dev/docs.mdx) — top-level orientation (markdown).
- [Quickstart](https://www.socialfetch.dev/docs/quickstart.mdx) — authenticate with `x-api-key`, validate auth with `whoami`, and understand the JSON envelope.
- [SDK](https://www.socialfetch.dev/docs/sdk.mdx) — official TypeScript SDK guide, including `SocialFetchClient`, `Result`, and `unwrap()`.
- [SDK reference](https://www.socialfetch.dev/docs/sdk-reference.mdx) — exhaustive SDK method inventory and route mapping for agents, tooling, and power users.
- [Choose the right endpoint](https://www.socialfetch.dev/docs/choose-endpoint.mdx) — task-oriented route selection for smoke tests, profiles, list endpoints, and single-item lookups.
- [Capability matrix](https://www.socialfetch.dev/docs/capability-matrix.mdx) — fast comparison of identifiers, pagination, outcomes, media download, and SDK coverage.
- [`/llms.json`](https://www.socialfetch.dev/llms.json) — structured machine-readable operation inventory with parameter names, pagination, outcomes, credits, and SDK mapping.
- [API reference hub](https://www.socialfetch.dev/docs/api.mdx) — human-friendly index of operations with links into generated pages.
- [Errors](https://www.socialfetch.dev/docs/errors.mdx) — shared error envelope and HTTP status guidance.
- [Credits](https://www.socialfetch.dev/docs/credits.mdx) — metering, `402`, and planning batch jobs.
- Outcome semantics such as `found`, `not_found`, and `private` are documented in [Errors](https://www.socialfetch.dev/docs/errors.mdx) and on operation pages when present in the OpenAPI contract.

## Markdown docs convention

- Every docs page has a markdown twin: append **`.mdx`** to the docs pathname (for example `/docs/quickstart` → `/docs/quickstart.mdx`).
- Agents that send `Accept: text/markdown` on `/docs/**` HTML URLs may receive markdown directly (same URL, `Vary: Accept`).

---
# List Reddit post comments (https://www.socialfetch.dev/docs/api/v1/reddit/posts/comments/get)

## Summary

Get comments on a Reddit post.

**Tags:** `Reddit`

## HTTP

- **Method:** GET
- **Path:** `/v1/reddit/posts/comments`
- **Base URL:** `https://api.socialfetch.dev`

## Capability summary

- **SDK mapping:** `client.reddit.listPostComments({ url, cursor?, trim? })`
- **Accepted identifiers:** `url` (query)
- **Pagination:** cursor via `cursor`, next cursor: `data.page.nextCursor`, has more: `data.page.hasMore`
- **Business outcome field:** `data.lookupStatus` with values `found`, `not_found`
- **Trimmed response mode:** supported via `trim=true`

## Credits

- **Base:** 1 credit per successful lookup.
- **Maximum on success (200):** 1 credit.
- **Normalization failure (502):** 1 credit charged.
- **Authoritative field:** `meta.creditsCharged`.

## Authentication

- **`x-api-key`**: API key (`sfk_...`)

## Parameters

### `url` (query)

- **Required:** yes
- **Constraints:** type `string`; minLength: 1; maxLength: 4096
- **Description:** Link to the Reddit post whose comments should be listed.

### `cursor` (query)

- **Required:** no
- **Constraints:** type `string`; minLength: 1
- **Description:** Opaque cursor from a previous response to fetch another page of comments or replies.

### `trim` (query)

- **Required:** no
- **Constraints:** type `boolean`
- **Description:** When true, requests a lighter response shape when available.

## Behavior notes

- **`trim`**: When true, requests a lighter response shape when available.

## Pagination

This endpoint uses **cursor-based pagination** via the `cursor` query parameter.

- Read **hasMore** from `data.page.hasMore`.
- When that value is `true`, read **nextCursor** from `data.page.nextCursor` and pass it as the `cursor` query parameter on the **next** request (URL-encode when building a query string).
- Omit `cursor` on the **first** request.
- Stop when **hasMore** is `false` or **nextCursor** is null (end of list).

## Responses (status codes)

- **200**: Comment listing result. Check `data.lookupStatus` for `found` or `not_found`.
- **400**: Invalid request
- **401**: Missing or invalid API key
- **402**: Insufficient credits
- **500**: Unexpected or billing error
- **502**: Lookup could not be completed from the response (unexpected or invalid data).
- **503**: Service temporarily unavailable; safe to retry with backoff.

## Response body (200)

Comment listing result. Check `data.lookupStatus` for `found` or `not_found`.

### Field outline

- **data** (required) — type `object`. Endpoint-specific response payload.
  - **lookupStatus** (required) — type `string`; enum: found, not_found. Whether the post was resolved for this request.
  - **post** (required) — type `object`; nullable. Post details when available on this page.
    - **id** (required) — type `string`; minLength: 1. Stable post identifier.
    - **title** (required) — type `string`. Post title.
    - **url** (required) — type `string`; minLength: 1. Canonical public post URL when available.
    - **permalink** (required) — type `string`; nullable. Relative permalink path when available.
    - **subreddit** (required) — type `string`; nullable. Subreddit name without a leading r/.
    - **subredditNamePrefixed** (required) — type `string`; nullable. Prefixed subreddit name when available.
    - **author** (required) — type `string`; nullable. Post author username when available.
    - **score** (required) — type `integer`; minimum: 0; nullable. Post score when available.
    - **upvoteRatio** (required) — type `number`; nullable. Upvote ratio when available.
    - **commentCount** (required) — type `integer`; minimum: 0; nullable. Reported comment count when available.
    - **createdAt** (required) — type `string`; nullable. ISO-8601 timestamp when the post was created.
    - **createdUtc** (required) — type `integer`; minimum: 0; nullable. Unix timestamp in seconds when the post was created.
    - **over18** (required) — type `boolean`. Whether the post is marked over-18.
    - **locked** (required) — type `boolean`. Whether the post is locked.
    - **stickied** (required) — type `boolean`. Whether the post is stickied.
  - **page** (required) — type `object`. Pagination information for this response.
    - **nextCursor** (required) — type `string`; nullable. Cursor to pass in the next request when more pages exist.
    - **hasMore** (required) — type `boolean`. Whether another page of comments or replies is available.
  - **comments** (required) — type `array`. Comments returned for this page.
    - _items:_
      - **id** (required) — type `string`; minLength: 1. Stable identifier for the comment.
      - **url** (required) — type `string`; nullable. Public comment URL when available.
      - **permalink** (required) — type `string`; nullable. Relative permalink path when available.
      - **parentId** (required) — type `string`; nullable. Parent comment or post identifier when available.
      - **author** (required) — type `string`; nullable. Comment author username when available.
      - **text** (required) — type `string`. Comment text.
      - **renderedHtml** (required) — type `string`; nullable. Rendered HTML for the comment when available.
      - **score** (required) — type `integer`; nullable. Comment score when available.
      - **upvotes** (required) — type `integer`; minimum: 0; nullable. Upvote count when available.
      - **createdAt** (required) — type `string`; nullable. ISO-8601 timestamp when the comment was created.
      - **createdUtc** (required) — type `integer`; minimum: 0; nullable. Unix timestamp in seconds when the comment was created.
      - **depth** (required) — type `integer`; minimum: 0. Nesting depth of the comment in the thread.
      - **isSubmitter** (required) — type `boolean`. Whether the comment author is the post author.
      - **stickied** (required) — type `boolean`. Whether the comment is stickied.
      - **locked** (required) — type `boolean`. Whether the comment is locked.
      - **distinguished** (required) — type `string`; nullable. Distinguished comment label when available.
      - **replies** (required) — type `object`. Nested replies attached to this comment.
        - **items** (required) — type `array`. Nested replies for this comment.
          - _items:_
        - **page** (required) — type `object`. Pagination state for nested replies.
          - **nextCursor** (required) — type `string`; nullable. Cursor to pass in the next request when more pages exist.
          - **hasMore** (required) — type `boolean`. Whether another page of comments or replies is available.
- **meta** (required) — type `object`. Metadata describing the request and billing outcome.
  - **requestId** (required) — type `string`; minLength: 1. Unique request identifier for tracing this API call.
  - **creditsCharged** (required) — type `integer`; minimum: 0. Credits charged for this request.
  - **version** (required) — type `string`; enum: v1. Public API version that served the response.

### Example JSON (found)

```json
{
  "data": {
    "lookupStatus": "found",
    "post": {
      "id": "ablzuq",
      "title": "People who haven't pooped in 2019 yet, why are you still holding on to last years shit?",
      "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/",
      "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/",
      "subreddit": "AskReddit",
      "subredditNamePrefixed": "r/AskReddit",
      "author": "ShoddySubstance",
      "score": 221998,
      "upvoteRatio": 0.91,
      "commentCount": 7901,
      "createdAt": "2019-01-01T21:06:27.000Z",
      "createdUtc": 1546376787,
      "over18": false,
      "locked": false,
      "stickied": false
    },
    "page": {
      "nextCursor": "ed1jhoi,ed1f3kw,ed1qgjh,ed1e4vd,ed1benx,ed1e6rw,ed1k3ad,ed1eak1,eet1405,ed2bf3m,ef74u7f,ed1j20m,ed1mq5i,ed1khi5,ed1m0ya,ed1olpa,ed1kil6,ed1ii4u,ed1ebwf,ed1pqb2,ed1ikg8,eemwre4,ejf16yu,ed1enmh,ept7g6w,en5htox,edq39af,ed1pg5s,ed1r2sh,egdyif2,ed229d8,ed1e43h,ektwphx,eejlgxi,epi5726,ekizds1,eg6l6r4,ed1i91r,ed1dws1,ed1iixz,ed1i9ot,ed1ixsf,ei0zic1,ejuyeud,ed1dt0g,ekobrqp,ed1ik91,ed1dje4,efaiw3g,ed1x5pz,ed1lsfb,eegd26z,ed1l4gf,eq8omco,ed1d93t,ed1ielq,ed1e8bv,ed1dmn6,ee1pvnc,ed22f4h,edhi0jh,ed1q3nt,eihmpi6,ep0e7ux,en5ta39,ehacon4,ed2fqtv,ed22pkg,ejwmkok,ed1iy9d,emfn0c7,ed1objx,ed1qyz8,ed1nn2e,epzqcd4,ed1q21p,ed1e53z,efranpz,ed1qvr0,ed22gli,ed1dgey,egm2dzm,ejygb43,hgqxxcp,eeg1bod,emk3wji,ed1iajm,hgq0wpy,eq1p8om,ej7lrpc,ed1cnmm,ejaoh0u,ed1lzg3,ed1j7qq,ed1lwq1,ed1k3po,ej2bypz,ed1md7j,ed1j3vl,ed1i8e5",
      "hasMore": true
    },
    "comments": [
      {
        "id": "ed1czme",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1czme/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1czme/",
        "parentId": "t3_ablzuq",
        "author": "sweatybeard",
        "text": "But when I finally do, it'll be the years biggest shit ^^^^^so ^^^^^far",
        "renderedHtml": "<div class=\"md\"><p>But when I finally do, it&#39;ll be the years biggest shit <sup><sup><sup><sup><sup>so</sup></sup></sup></sup></sup> <sup><sup><sup><sup><sup>far</sup></sup></sup></sup></sup></p>\n</div>",
        "score": 12201,
        "upvotes": 12201,
        "createdAt": "2019-01-01T21:35:24.000Z",
        "createdUtc": 1546378524,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1su6t",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1su6t/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1su6t/",
              "parentId": "t1_ed1czme",
              "author": "jofwu",
              "text": "Somewhere out there, somebody has made the biggest poop of the year. And they don't even know it. ",
              "renderedHtml": "<div class=\"md\"><p>Somewhere out there, somebody has made the biggest poop of the year. And they don&#39;t even know it. </p>\n</div>",
              "score": 2424,
              "upvotes": 2424,
              "createdAt": "2019-01-02T01:13:09.000Z",
              "createdUtc": 1546391589,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1ye8p",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ye8p/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ye8p/",
                    "parentId": "t1_ed1su6t",
                    "author": "[deleted]",
                    "text": "I made my biggest poop of last year right in between Christmas and New year's- first time I could say that I filled the bowl to the waterline",
                    "renderedHtml": "<div class=\"md\"><p>I made my biggest poop of last year right in between Christmas and New year&#39;s- first time I could say that I filled the bowl to the waterline</p>\n</div>",
                    "score": 780,
                    "upvotes": 780,
                    "createdAt": "2019-01-02T02:34:28.000Z",
                    "createdUtc": 1546396468,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed2xsuk",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed2xsuk/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed2xsuk/",
                          "parentId": "t1_ed1ye8p",
                          "author": "minjabinja",
                          "text": "goals",
                          "renderedHtml": "<div class=\"md\"><p>goals</p>\n</div>",
                          "score": 333,
                          "upvotes": 333,
                          "createdAt": "2019-01-02T15:19:39.000Z",
                          "createdUtc": 1546442379,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [],
                            "page": {
                              "nextCursor": null,
                              "hasMore": false
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "eduy6f3,ejxami8,eegd7xa,ef29a32,ehq4puw,eqb5cnr,edhhwh5,ei3p2wr,ej851tk,el4yhl2,epc5qyk",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "egos1bd,ef1lv5d,el1tr5b",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1lvsa,ed3fnpq,ed25l2w,ed2bzid,ed2do8g,eda7sqp,es4scjk,edjv4rx,efp5ww0,eh8q0ke,em7lhme,epkr3k2,epu6jcz,er6c3si,errghbq,ef687ye",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1d2z7",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1d2z7/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1d2z7/",
        "parentId": "t3_ablzuq",
        "author": "ButtholeLinoleum",
        "text": "I've been pissing out my ass all fuckin day.",
        "renderedHtml": "<div class=\"md\"><p>I&#39;ve been pissing out my ass all fuckin day.</p>\n</div>",
        "score": 14264,
        "upvotes": 14264,
        "createdAt": "2019-01-01T21:36:36.000Z",
        "createdUtc": 1546378596,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1kaog",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kaog/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kaog/",
              "parentId": "t1_ed1d2z7",
              "author": "AtaxyQuiver",
              "text": "You have had this account for 4 years and the only posts on it are fairly disturbing....",
              "renderedHtml": "<div class=\"md\"><p>You have had this account for 4 years and the only posts on it are fairly disturbing....</p>\n</div>",
              "score": 1257,
              "upvotes": 1257,
              "createdAt": "2019-01-01T23:14:03.000Z",
              "createdUtc": 1546384443,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1nf5s",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1nf5s/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1nf5s/",
                    "parentId": "t1_ed1kaog",
                    "author": "[deleted]",
                    "text": "It has intruged me oh what the fuck",
                    "renderedHtml": "<div class=\"md\"><p>It has intruged me oh what the fuck</p>\n</div>",
                    "score": 357,
                    "upvotes": 357,
                    "createdAt": "2019-01-01T23:56:56.000Z",
                    "createdUtc": 1546387016,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1q3oe",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1q3oe/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1q3oe/",
                          "parentId": "t1_ed1nf5s",
                          "author": "Silneit",
                          "text": "'To attach my scrotum to my sister's face, should I use staples or glue?'",
                          "renderedHtml": "<div class=\"md\"><p>&#39;To attach my scrotum to my sister&#39;s face, should I use staples or glue?&#39;</p>\n</div>",
                          "score": 469,
                          "upvotes": 469,
                          "createdAt": "2019-01-02T00:34:02.000Z",
                          "createdUtc": 1546389242,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "eegnz76",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/eegnz76/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/eegnz76/",
                                "parentId": "t1_ed1q3oe",
                                "author": "jergin_therlax",
                                "text": "Also, \"What the fuck is wrong with people? Is your life truly so empty that sitting on a frozen lake in a tent is considered a good time? I just wiped my diarrhea butt with my sister's panties.\" in r/Minnesota lmfao. Glad I followed my curiosity.\n\n",
                                "renderedHtml": "<div class=\"md\"><p>Also, &quot;What the fuck is wrong with people? Is your life truly so empty that sitting on a frozen lake in a tent is considered a good time? I just wiped my diarrhea butt with my sister&#39;s panties.&quot; in <a href=\"/r/Minnesota\">r/Minnesota</a> lmfao. Glad I followed my curiosity.</p>\n</div>",
                                "score": 147,
                                "upvotes": 147,
                                "createdAt": "2019-01-19T19:22:12.000Z",
                                "createdUtc": 1547925732,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [],
                                  "page": {
                                    "nextCursor": "ehrrj4q,ejfgyp7",
                                    "hasMore": true
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": "ed2jhz9,eddbbs8,edxsm5y,egy6ilp,egy6gxt",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": null,
                        "hasMore": false
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "edwrt28,eo0ndgv,efej09r,ejb270z,ekoqf09,elwsp59",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1jlq7",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jlq7/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jlq7/",
              "parentId": "t1_ed1d2z7",
              "author": "flesh0racle",
              "text": "Same. Shitting through the eye of a needle.",
              "renderedHtml": "<div class=\"md\"><p>Same. Shitting through the eye of a needle.</p>\n</div>",
              "score": 1488,
              "upvotes": 1488,
              "createdAt": "2019-01-01T23:04:38.000Z",
              "createdUtc": 1546383878,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed1p3rs,ed27ysd,ed29rco,ed2a1kf,ed2fdru,edo6b7u,eewpa2x,edb5cb5,ees8vwm",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1iwf0",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iwf0/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iwf0/",
              "parentId": "t1_ed1d2z7",
              "author": "mrsuns10",
              "text": "Username checks out ",
              "renderedHtml": "<div class=\"md\"><p>Username checks out </p>\n</div>",
              "score": 540,
              "upvotes": 540,
              "createdAt": "2019-01-01T22:54:51.000Z",
              "createdUtc": 1546383291,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed2b291,eduzuvt",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1qtm8,ed1k8jy,ed25u8z,ed2a7jk,ed1qito,ed1rruv,ed1prak,ed1r8jq,ed27jpz,ed2azfg,ed280mp,ed28f31,ed2elqi,ed1nowd,ed1om1c,es7x9vv,ed1yuqa,ed29rkq,ed2hn7r,ed2hv0y,ed2hv5e,ed2i5my,ed2k5sd,ed2kirv,ed2mzar,ed2p49f,ed2vyzd,ed47uda,ed7211m,eddhezv,eeh1z1g,ef2a2el,ehox6lm,ehrfb4d,ejetrfc,ele0tyg,em05zgz,eptur3d,eqkog7n,erdsif9,ery32uz",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1emmi",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1emmi/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1emmi/",
        "parentId": "t3_ablzuq",
        "author": "abksploder",
        "text": "Bold of you to assume I'm going to take a shit this year.",
        "renderedHtml": "<div class=\"md\"><p>Bold of you to assume I&#39;m going to take a shit this year.</p>\n</div>",
        "score": 34856,
        "upvotes": 34856,
        "createdAt": "2019-01-01T21:56:33.000Z",
        "createdUtc": 1546379793,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1erpi",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1erpi/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1erpi/",
              "parentId": "t1_ed1emmi",
              "author": "ShoddySubstance",
              "text": "bottling it up is not healthy!",
              "renderedHtml": "<div class=\"md\"><p>bottling it up is not healthy!</p>\n</div>",
              "score": 7607,
              "upvotes": 7607,
              "createdAt": "2019-01-01T21:58:25.000Z",
              "createdUtc": 1546379905,
              "depth": 1,
              "isSubmitter": true,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1lm2g",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lm2g/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lm2g/",
                    "parentId": "t1_ed1erpi",
                    "author": "Joris2627",
                    "text": "Bold of you to think i am botteling it up",
                    "renderedHtml": "<div class=\"md\"><p>Bold of you to think i am botteling it up</p>\n</div>",
                    "score": 2947,
                    "upvotes": 2947,
                    "createdAt": "2019-01-01T23:32:09.000Z",
                    "createdUtc": 1546385529,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1nizp",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1nizp/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1nizp/",
                          "parentId": "t1_ed1lm2g",
                          "author": "Yarxing",
                          "text": "Are you keeping it in a bag? ",
                          "renderedHtml": "<div class=\"md\"><p>Are you keeping it in a bag? </p>\n</div>",
                          "score": 1325,
                          "upvotes": 1325,
                          "createdAt": "2019-01-01T23:58:22.000Z",
                          "createdUtc": 1546387102,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "ed1o8nq",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1o8nq/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1o8nq/",
                                "parentId": "t1_ed1nizp",
                                "author": "NotTRYINGtobeLame",
                                "text": "The full term is *colostomy bag*",
                                "renderedHtml": "<div class=\"md\"><p>The full term is <em>colostomy bag</em></p>\n</div>",
                                "score": 1101,
                                "upvotes": 1101,
                                "createdAt": "2019-01-02T00:07:53.000Z",
                                "createdUtc": 1546387673,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [
                                    {
                                      "id": "ed1od4p",
                                      "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1od4p/",
                                      "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1od4p/",
                                      "parentId": "t1_ed1o8nq",
                                      "author": "ThatTechnician",
                                      "text": "I'm definitely holding this full term. ",
                                      "renderedHtml": "<div class=\"md\"><p>I&#39;m definitely holding this full term. </p>\n</div>",
                                      "score": 285,
                                      "upvotes": 285,
                                      "createdAt": "2019-01-02T00:09:36.000Z",
                                      "createdUtc": 1546387776,
                                      "depth": 5,
                                      "isSubmitter": false,
                                      "stickied": false,
                                      "locked": false,
                                      "distinguished": null,
                                      "replies": {
                                        "items": [],
                                        "page": {
                                          "nextCursor": "ed2air6",
                                          "hasMore": true
                                        }
                                      }
                                    }
                                  ],
                                  "page": {
                                    "nextCursor": "ed1qmkq,ed1qoxs,ed1qpor,ed1riau,edtpfq5,ed1qzy6",
                                    "hasMore": true
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": "ed1polt,ed1osw8,ed1plah,ed1q5jd,ed1r8ie,ed1sq12,ed1ste6,ed1oifv,ed1pyvh,ed1q0tw,ergayx8,ed1waxv,ed2ou1i,ed31x1n",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1nj6g,ed1orev,en8zmq0",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1tnly,ed1oofm,ed23t1n,ed2ae3n,ed1om1m,ed1ovvz,ed1o6bx,ed1o87w,ed1ooa4,ed1owk7,ed1qu8u,ed241r2,ed24n97,ed25stw,ed277td,ed2i189,ed2o2no,ed2ovbv,ed2reb8,ed2va12,eqz5jg8",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1o9id",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1o9id/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1o9id/",
              "parentId": "t1_ed1emmi",
              "author": "jld2k6",
              "text": "Fun fact, If you don't poop for long enough it will literally back up into your stomach and you will throw up shit and become septic. I knew a woman on methadone who became so constipated she stopped pooping and didn't do anything about it until she started vomiting up shit and almost died. I can't even imagine what the process of clearing 28ft (8.53m) of mostly hard dried up shit from your intestines is like after that if you survive",
              "renderedHtml": "<div class=\"md\"><p>Fun fact, If you don&#39;t poop for long enough it will literally back up into your stomach and you will throw up shit and become septic. I knew a woman on methadone who became so constipated she stopped pooping and didn&#39;t do anything about it until she started vomiting up shit and almost died. I can&#39;t even imagine what the process of clearing 28ft (8.53m) of mostly hard dried up shit from your intestines is like after that if you survive</p>\n</div>",
              "score": 2566,
              "upvotes": 2566,
              "createdAt": "2019-01-02T00:08:13.000Z",
              "createdUtc": 1546387693,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1pj99",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1pj99/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1pj99/",
                    "parentId": "t1_ed1o9id",
                    "author": "prinzklaus",
                    "text": "That was not a fun fact at all.",
                    "renderedHtml": "<div class=\"md\"><p>That was not a fun fact at all.</p>\n</div>",
                    "score": 3852,
                    "upvotes": 3852,
                    "createdAt": "2019-01-02T00:26:07.000Z",
                    "createdUtc": 1546388767,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1pzqm",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1pzqm/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1pzqm/",
                          "parentId": "t1_ed1pj99",
                          "author": "bradlees",
                          "text": "UNSUBSCRIBE \n\nUNSUBSCRIBE ",
                          "renderedHtml": "<div class=\"md\"><p>UNSUBSCRIBE </p>\n\n<p>UNSUBSCRIBE </p>\n</div>",
                          "score": 1890,
                          "upvotes": 1890,
                          "createdAt": "2019-01-02T00:32:33.000Z",
                          "createdUtc": 1546389153,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "ed1sap6",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1sap6/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1sap6/",
                                "parentId": "t1_ed1pzqm",
                                "author": "[deleted]",
                                "text": "[deleted]",
                                "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
                                "score": 757,
                                "upvotes": 757,
                                "createdAt": "2019-01-02T01:05:24.000Z",
                                "createdUtc": 1546391124,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [
                                    {
                                      "id": "ed1sy6m",
                                      "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1sy6m/",
                                      "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1sy6m/",
                                      "parentId": "t1_ed1sap6",
                                      "author": "booger_sculptor",
                                      "text": "Poo Trivia: do the farts push the shit out, or does the shit push the farts out?",
                                      "renderedHtml": "<div class=\"md\"><p>Poo Trivia: do the farts push the shit out, or does the shit push the farts out?</p>\n</div>",
                                      "score": 337,
                                      "upvotes": 337,
                                      "createdAt": "2019-01-02T01:14:45.000Z",
                                      "createdUtc": 1546391685,
                                      "depth": 5,
                                      "isSubmitter": false,
                                      "stickied": false,
                                      "locked": false,
                                      "distinguished": null,
                                      "replies": {
                                        "items": [
                                          {
                                            "id": "ed1t4jm",
                                            "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1t4jm/",
                                            "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1t4jm/",
                                            "parentId": "t1_ed1sy6m",
                                            "author": "[deleted]",
                                            "text": "[deleted]",
                                            "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
                                            "score": 272,
                                            "upvotes": 272,
                                            "createdAt": "2019-01-02T01:17:20.000Z",
                                            "createdUtc": 1546391840,
                                            "depth": 6,
                                            "isSubmitter": false,
                                            "stickied": false,
                                            "locked": false,
                                            "distinguished": null,
                                            "replies": {
                                              "items": [
                                                {
                                                  "id": "ed1tvvc",
                                                  "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1tvvc/",
                                                  "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1tvvc/",
                                                  "parentId": "t1_ed1t4jm",
                                                  "author": "[deleted]",
                                                  "text": "This username KNOWS. ",
                                                  "renderedHtml": "<div class=\"md\"><p>This username KNOWS. </p>\n</div>",
                                                  "score": 85,
                                                  "upvotes": 85,
                                                  "createdAt": "2019-01-02T01:28:17.000Z",
                                                  "createdUtc": 1546392497,
                                                  "depth": 7,
                                                  "isSubmitter": false,
                                                  "stickied": false,
                                                  "locked": false,
                                                  "distinguished": null,
                                                  "replies": {
                                                    "items": [
                                                      {
                                                        "id": "ed1uef1",
                                                        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1uef1/",
                                                        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1uef1/",
                                                        "parentId": "t1_ed1tvvc",
                                                        "author": "[deleted]",
                                                        "text": "[deleted]",
                                                        "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
                                                        "score": 67,
                                                        "upvotes": 67,
                                                        "createdAt": "2019-01-02T01:35:50.000Z",
                                                        "createdUtc": 1546392950,
                                                        "depth": 8,
                                                        "isSubmitter": false,
                                                        "stickied": false,
                                                        "locked": false,
                                                        "distinguished": null,
                                                        "replies": {
                                                          "items": [],
                                                          "page": {
                                                            "nextCursor": "ef2557t,ef3lkap,edqcb39,edv20iq",
                                                            "hasMore": true
                                                          }
                                                        }
                                                      }
                                                    ],
                                                    "page": {
                                                      "nextCursor": "emphkse",
                                                      "hasMore": true
                                                    }
                                                  }
                                                }
                                              ],
                                              "page": {
                                                "nextCursor": "ed1tjtd,edu82zx",
                                                "hasMore": true
                                              }
                                            }
                                          }
                                        ],
                                        "page": {
                                          "nextCursor": "ed3pmjc,ed2pfro,ef2bubp,ed2jrxs,ed1vncu,eit4ltc,ed2kwcg,ef2b0z4",
                                          "hasMore": true
                                        }
                                      }
                                    }
                                  ],
                                  "page": {
                                    "nextCursor": "ed1smho,ehe4wb6",
                                    "hasMore": true
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": "ed1xt6j,ed1xac3,ed1qi8j",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1snx5,ed1ql04,ed1sc2l,ed1sr56,ed25wyh,eiv6x5z,ed1sb09,ed2zoon",
                        "hasMore": true
                      }
                    }
                  },
                  {
                    "id": "ed1piqc",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1piqc/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1piqc/",
                    "parentId": "t1_ed1o9id",
                    "author": "Royer26",
                    "text": "I didn’t poop for a couple weeks a few months back. When I finally went to the hospital they gave me a pill to put up my butt and a jug of cherry flavoured laxative to chug. I lost 15 lbs",
                    "renderedHtml": "<div class=\"md\"><p>I didn’t poop for a couple weeks a few months back. When I finally went to the hospital they gave me a pill to put up my butt and a jug of cherry flavoured laxative to chug. I lost 15 lbs</p>\n</div>",
                    "score": 741,
                    "upvotes": 741,
                    "createdAt": "2019-01-02T00:25:55.000Z",
                    "createdUtc": 1546388755,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1ri7e",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ri7e/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ri7e/",
                          "parentId": "t1_ed1piqc",
                          "author": "Hhwwhat",
                          "text": "15 lbs = 6 Courics. You still have a long way to go to beat Randy Marsh.",
                          "renderedHtml": "<div class=\"md\"><p>15 lbs = 6 Courics. You still have a long way to go to beat Randy Marsh.</p>\n</div>",
                          "score": 534,
                          "upvotes": 534,
                          "createdAt": "2019-01-02T00:54:06.000Z",
                          "createdUtc": 1546390446,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "ed1rksh",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1rksh/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1rksh/",
                                "parentId": "t1_ed1ri7e",
                                "author": "Royer26",
                                "text": "Everyone needs goals",
                                "renderedHtml": "<div class=\"md\"><p>Everyone needs goals</p>\n</div>",
                                "score": 57,
                                "upvotes": 57,
                                "createdAt": "2019-01-02T00:55:07.000Z",
                                "createdUtc": 1546390507,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [],
                                  "page": {
                                    "nextCursor": null,
                                    "hasMore": false
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": "ed1u0co,ed24swd,ed2gakk,ed1u3j3",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1prvu,ed1rfd4,ed1w8dv,ed1rrag,ed1rq77,ed1ycrh,ed25fos,ed296ax,ed28166,ed2b5wh",
                        "hasMore": true
                      }
                    }
                  },
                  {
                    "id": "ed1of6q",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1of6q/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1of6q/",
                    "parentId": "t1_ed1o9id",
                    "author": "mrkruk",
                    "text": "That’s legit horrifying.",
                    "renderedHtml": "<div class=\"md\"><p>That’s legit horrifying.</p>\n</div>",
                    "score": 286,
                    "upvotes": 286,
                    "createdAt": "2019-01-02T00:10:21.000Z",
                    "createdUtc": 1546387821,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [],
                      "page": {
                        "nextCursor": "ed1rhhd",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1q40v,ed1pt4k,ed1q0ze,ed1pf36,ed1rpl2,ed1pkq1,ed1qw52,ed1xc7j,ed2stwt,ed1p6vm,ed1polf,ed1qb9g,ed1rd1g,ed1rz6d,ed1sq3x,ed1tljp,ed1uhfk,ed1xzf9,ed21iwb,ed2l5nv,eiwheps,ed1ouue,ed1p5kg,ed1r9a8,ed1sgws,ed2981w,ed1p4mc,ed1psoe,eryz5m0,ed1qpv9,ed1s7lz,ed1sj31,ed1sp0m,ed1t740,ed1t94u,ed1thuk,ed1tivo,ed1tjg7,ed1ts8a,ed1uy0i,ed1vmkh,ed1vyhv,ed1wwmj,ed20rmn,ed23zmm,ed24asn,ed25y3e,ed26231,ed26x9l,ed27qj8,ed299n6,ed2bga7,ed2cqwz,ed2jwyv,ed2k4f8,ed2nqkl,ed2nw6f,ed2p5pi,ed2q2b4,ed2s3gf,ed33sgk,ed3itih,edc7sov,edgqear,edtojeu,epz8vqe",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1olmq,ed1p6w6,ed1p4zm,eftzcn5,ed1omi7,ed1u80c,eg6u1i2,ed1nz7a,ed1ozqk,ed1s4ta,ed2bpp3,ed1o6xe,ed1ogxw,erde34x,ed1otg2,ed1p4cj,ed1p96i,ed1q6kp,ed1qrin,ed1qwlw,ed1qx1o,ed1rcbc,ed1rq5x,ed1s0lg,ed1s60h,ed1s7fp,ed1sgnn,ed1swiu,ed1tndh,ed1u5kj,ed1vgxy,ed1x7v6,ed1xtuf,ed1zatl,ed1zidc,ed23s7c,ed23xix,ed28505,ed2u2f6,ed3mi4w,ed73h81,ehd9d7f,ehjbskb,eiqvea8,eixkfyz,ejfhkms,eo6oeel,eo6x8nk,eoa62fu,eog50yn,eqrqzy3,eraxx4a",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1dhh6",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dhh6/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dhh6/",
        "parentId": "t3_ablzuq",
        "author": "adsadsadsadsads",
        "text": "We have guests and I literally can't relax.",
        "renderedHtml": "<div class=\"md\"><p>We have guests and I literally can&#39;t relax.</p>\n</div>",
        "score": 19265,
        "upvotes": 19265,
        "createdAt": "2019-01-01T21:41:49.000Z",
        "createdUtc": 1546378909,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1jt1s",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jt1s/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jt1s/",
              "parentId": "t1_ed1dhh6",
              "author": "[deleted]",
              "text": "Ahhh, I see I'm not the only one with poop anxiety ",
              "renderedHtml": "<div class=\"md\"><p>Ahhh, I see I&#39;m not the only one with poop anxiety </p>\n</div>",
              "score": 5625,
              "upvotes": 5625,
              "createdAt": "2019-01-01T23:07:24.000Z",
              "createdUtc": 1546384044,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1wghe",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1wghe/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1wghe/",
                    "parentId": "t1_ed1jt1s",
                    "author": "TEFL_job_seeker",
                    "text": "I consider wolves to be stronger and deadlier than coyotes",
                    "renderedHtml": "<div class=\"md\"><p>I consider wolves to be stronger and deadlier than coyotes</p>\n</div>",
                    "score": 967,
                    "upvotes": 967,
                    "createdAt": "2019-01-02T02:06:09.000Z",
                    "createdUtc": 1546394769,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed2258f",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed2258f/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed2258f/",
                          "parentId": "t1_ed1wghe",
                          "author": "urbanflow27",
                          "text": "Good to know im not the only one. I get poop anxiety as well especially at work!",
                          "renderedHtml": "<div class=\"md\"><p>Good to know im not the only one. I get poop anxiety as well especially at work!</p>\n</div>",
                          "score": 351,
                          "upvotes": 351,
                          "createdAt": "2019-01-02T03:30:55.000Z",
                          "createdUtc": 1546399855,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "ed22ln2",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed22ln2/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed22ln2/",
                                "parentId": "t1_ed2258f",
                                "author": "[deleted]",
                                "text": "Me too! And it always seems like nobody will be near the bathroom until I sit down for 'Ol Deucie...then they're having conversations 2 ft away on the other side of the door 😖",
                                "renderedHtml": "<div class=\"md\"><p>Me too! And it always seems like nobody will be near the bathroom until I sit down for &#39;Ol Deucie...then they&#39;re having conversations 2 ft away on the other side of the door 😖</p>\n</div>",
                                "score": 280,
                                "upvotes": 280,
                                "createdAt": "2019-01-02T03:38:04.000Z",
                                "createdUtc": 1546400284,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [],
                                  "page": {
                                    "nextCursor": "ed24xp4,erav0e2,ed27s7d,eixq8mm",
                                    "hasMore": true
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": "ed22tax,ed29ff5,ed25mo0,ed25chh,ed25v40,ed2lzbk",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed25ddu,ed24xga,ed25hb2,eeqzczq,ed23026,ed23ths,ed25yxz,ed2qkke,ed2h214,ed258ai,ed29wz4,ed2ca17,ed2f6ix,ed2ohyh,ed2uvj0",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed26s5e,ed24ob8,ed253i7,ed2gjs7,ed24ak3,ed26ae1,ed2aqem,ed2a3vx,ed2atz6,ed2v357",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1odlw",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1odlw/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1odlw/",
              "parentId": "t1_ed1dhh6",
              "author": "igotmyliverpierced",
              "text": "While friends were here today for football, I snuck away for my own bowl game.",
              "renderedHtml": "<div class=\"md\"><p>While friends were here today for football, I snuck away for my own bowl game.</p>\n</div>",
              "score": 293,
              "upvotes": 293,
              "createdAt": "2019-01-02T00:09:46.000Z",
              "createdUtc": 1546387786,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed25fj1,ed26auy",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1l36q,ed1z173,ed24h77,ed2459m,ed1ix6k,ed22qz5,ed27eev,ed31oys,ed22j9r,ed251xk,ed27tlm,ed2cle4,ed22mop,ed27ow9,ed4b1c3,edd0syu,ed23tbk,ed24fjc,ed255y6,ed25lum,ed277cl,ed27zq5,ed28loy,ed29uh9,ed2cms2,ed2efuq,ed2eiry,ed2n0kl,ed2obos,ed2yjb4,ed2ykuy,ed5x81a",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1dqvy",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dqvy/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dqvy/",
        "parentId": "t3_ablzuq",
        "author": "[deleted]",
        "text": "[deleted]",
        "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
        "score": 11065,
        "upvotes": 11065,
        "createdAt": "2019-01-01T21:45:09.000Z",
        "createdUtc": 1546379109,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1j7is",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j7is/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j7is/",
              "parentId": "t1_ed1dqvy",
              "author": "[deleted]",
              "text": "Aw man what a terrible way to spend NYE! I hope you feel better soon bud!",
              "renderedHtml": "<div class=\"md\"><p>Aw man what a terrible way to spend NYE! I hope you feel better soon bud!</p>\n</div>",
              "score": 4692,
              "upvotes": 4692,
              "createdAt": "2019-01-01T22:59:09.000Z",
              "createdUtc": 1546383549,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1jebk",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jebk/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jebk/",
                    "parentId": "t1_ed1j7is",
                    "author": "[deleted]",
                    "text": "[deleted]",
                    "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
                    "score": 1195,
                    "upvotes": 1195,
                    "createdAt": "2019-01-01T23:01:48.000Z",
                    "createdUtc": 1546383708,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1m58u",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1m58u/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1m58u/",
                          "parentId": "t1_ed1jebk",
                          "author": "xjeeper",
                          "text": "There's nothing worse than when it's coming out both ends, I've had actual food poisoning once and think I would rather die than deal with that again. ",
                          "renderedHtml": "<div class=\"md\"><p>There&#39;s nothing worse than when it&#39;s coming out both ends, I&#39;ve had actual food poisoning once and think I would rather die than deal with that again. </p>\n</div>",
                          "score": 498,
                          "upvotes": 498,
                          "createdAt": "2019-01-01T23:39:31.000Z",
                          "createdUtc": 1546385971,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "ed1njye",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1njye/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1njye/",
                                "parentId": "t1_ed1m58u",
                                "author": "[deleted]",
                                "text": "That was me last night into today. Both ends violently. Lost ten pounds thought so I'm way ahead on my new years weight loss goals!",
                                "renderedHtml": "<div class=\"md\"><p>That was me last night into today. Both ends violently. Lost ten pounds thought so I&#39;m way ahead on my new years weight loss goals!</p>\n</div>",
                                "score": 502,
                                "upvotes": 502,
                                "createdAt": "2019-01-01T23:58:43.000Z",
                                "createdUtc": 1546387123,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [
                                    {
                                      "id": "ed1r5gs",
                                      "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1r5gs/",
                                      "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1r5gs/",
                                      "parentId": "t1_ed1njye",
                                      "author": "gr8uddini",
                                      "text": "Haha.  I lost 5 and was thinking the exact same thing until I saw your 10.  Now I have a new 2020 resolution. ",
                                      "renderedHtml": "<div class=\"md\"><p>Haha.  I lost 5 and was thinking the exact same thing until I saw your 10.  Now I have a new 2020 resolution. </p>\n</div>",
                                      "score": 126,
                                      "upvotes": 126,
                                      "createdAt": "2019-01-02T00:49:02.000Z",
                                      "createdUtc": 1546390142,
                                      "depth": 5,
                                      "isSubmitter": false,
                                      "stickied": false,
                                      "locked": false,
                                      "distinguished": null,
                                      "replies": {
                                        "items": [],
                                        "page": {
                                          "nextCursor": "ed3ftb9",
                                          "hasMore": true
                                        }
                                      }
                                    },
                                    {
                                      "id": "ed1os57",
                                      "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1os57/",
                                      "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1os57/",
                                      "parentId": "t1_ed1njye",
                                      "author": "xjeeper",
                                      "text": "Stay hydrated! Hope you feel better soon.",
                                      "renderedHtml": "<div class=\"md\"><p>Stay hydrated! Hope you feel better soon.</p>\n</div>",
                                      "score": 145,
                                      "upvotes": 145,
                                      "createdAt": "2019-01-02T00:15:30.000Z",
                                      "createdUtc": 1546388130,
                                      "depth": 5,
                                      "isSubmitter": false,
                                      "stickied": false,
                                      "locked": false,
                                      "distinguished": null,
                                      "replies": {
                                        "items": [],
                                        "page": {
                                          "nextCursor": "ed2d0tj,ed1y3nt",
                                          "hasMore": true
                                        }
                                      }
                                    }
                                  ],
                                  "page": {
                                    "nextCursor": "ed1rdsq,ed21op8,ed1xv96,ed1urjx,ed25c83,ed2ra2a,ed1vbg9,ed1wv8y,ed2bb9s",
                                    "hasMore": true
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": "ed1ta48,ed1qea8,ed1oftm,ed1rel6,ed1qssv,ed1tn4u,ed261l7,ed1rjfm,ed1uuzn,ed22rxr,ed2661f,ed22z27,ed1tils,ed1zni8,ed20ydb,ed237ur,ed26t1g,ed28ikk,ed257lb,ed746zr,ed1w2zf,ed1x8i8,ed2cbgf,ed2qfoi,ed2usyr,ed2v332",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1oy4p,ed1rid8,ed1yx3n,ed1op7m,ed1pm3w,ed27k20,ed1pgc1,ed1t87f,ed1unp0,ed20zrr",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1msgf,ed1pnfi,ed1p8db,ed2h5f8,ed2h4m2",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1loin",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1loin/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1loin/",
              "parentId": "t1_ed1dqvy",
              "author": "diff2",
              "text": "Where at? I was puking all day saturday..I couldn't keep down even water and thought my skin looked a strange color so I thought I should go to the doctor..Was extremely weak too. Some anti-vomit/nausea medicine and an IV and I felt better in a few hours.\n\nI kinda wonder if I actually should have gone or if I should have toughened it out for 24 hours and hoped to get better.. I have no one to take care of me while I'm sick and I was worried of becoming \"too sick\" too..\n\n-edit.. I live in socal seems to be going around the US?..Weird thing is that I hardly go out and get in contact with people. Like I can pinpoint exactly where I got it from and when.. Which was when I went out for some fast food on friday night..It was my favorite place so maybe one of the employees got sick a few days earlier and didn't wash enough? or a customer got sick and their sick germs were all over the place.. I do know the norovirus is extremely contagious..\n\nWas also wondering if I should call them and tell them I got the stomach flu from their place or not..",
              "renderedHtml": "<div class=\"md\"><p>Where at? I was puking all day saturday..I couldn&#39;t keep down even water and thought my skin looked a strange color so I thought I should go to the doctor..Was extremely weak too. Some anti-vomit/nausea medicine and an IV and I felt better in a few hours.</p>\n\n<p>I kinda wonder if I actually should have gone or if I should have toughened it out for 24 hours and hoped to get better.. I have no one to take care of me while I&#39;m sick and I was worried of becoming &quot;too sick&quot; too..</p>\n\n<p>-edit.. I live in socal seems to be going around the US?..Weird thing is that I hardly go out and get in contact with people. Like I can pinpoint exactly where I got it from and when.. Which was when I went out for some fast food on friday night..It was my favorite place so maybe one of the employees got sick a few days earlier and didn&#39;t wash enough? or a customer got sick and their sick germs were all over the place.. I do know the norovirus is extremely contagious..</p>\n\n<p>Was also wondering if I should call them and tell them I got the stomach flu from their place or not..</p>\n</div>",
              "score": 184,
              "upvotes": 184,
              "createdAt": "2019-01-01T23:33:06.000Z",
              "createdUtc": 1546385586,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1ofvc",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ofvc/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ofvc/",
                    "parentId": "t1_ed1loin",
                    "author": "melindu",
                    "text": "If you're already feeling better it sounds like you made the right choice by going. Don't ever underestimate the power of dehydration. I'm glad you're doing better already! Happy New Year :)",
                    "renderedHtml": "<div class=\"md\"><p>If you&#39;re already feeling better it sounds like you made the right choice by going. Don&#39;t ever underestimate the power of dehydration. I&#39;m glad you&#39;re doing better already! Happy New Year :)</p>\n</div>",
                    "score": 152,
                    "upvotes": 152,
                    "createdAt": "2019-01-02T00:10:36.000Z",
                    "createdUtc": 1546387836,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [],
                      "page": {
                        "nextCursor": "ed1rzw7,ed2e9qe,ed1tbum",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1r6td,ed1q13h,ed1wst5,ed23025,ed1ptgv,ed20vts,ed21iwi,ed267ic,ed1q4go,ed1vyxr,ed4ziii,ed20xv7,ed21zl3,ed22no2,ed242ie,ed2cb9m,ed2docu,ed2f1vi,ed2hd69,ed2q0bn,ed2tufq",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1k0s1,ed1lsof,ed1m6yy,ed1nmr9,ed1p98w,ed1m289,ed1n69d,ed1kedb,ed1r4er,ed1myx4,ed1onw8,ed1pd95,ed1jzy7,ed1otz5,ed1nmx2,ed20u0p,ed1murr,ed2hgi4,ed1lew2,ed1nlkr,ed1oxpy,ed1puww,ed1k5bg,ed1oizj,ed1n033,ed2goh7,ed1r3ey,ed1lbbe,ed1q9ma,ed1pgwm,ed1oylh,ed1mcef,ed1oquv,ed1qdkf,ed25knb,ed1s158,ed23m8g,ed1sghv,ed1xoak,ed1texo,ed1us03,ed1sln2,ed279qr,ed1x7ky,ed1yehy,ed1pxfx,ed1vbmw,ed6bfh9,ed21uk4,ed1uqo5,ed1polz,ed1uli7,ed1rgyr,ed2xzmn,ed1q7uk,ed1oght,ed210t3,ed1wfvz,ed1sv8s,ed2940o,ed2rpj7,ed1qf1q,ed1phob,ed2g38d,ed28m4z,ed1sqcj,ed1rdx0,eddw635,ed1l8qf,ed27eqm,ed1o638,ed1sb32,ed2ca7s,ed1ujtn,ed1rwhi,ed1tj1k,ed203ek,ed1w0p8,ed26mag,ed1uxil,ed2dr2l,ed2hqly,ed1ry5p,ed2bs7i,ed1zv7a,ed23aac,ed1tjso,ed1ozqh,ed2xfp8,ed23jbn,ed34eau,ed252ua,ed2n529,ed2tku9,ed1src4,ed1sx75,ed1ygny,ed1mcu4,ed2un7d,ed1uwma",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1ap8n",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ap8n/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ap8n/",
        "parentId": "t3_ablzuq",
        "author": "NaziGazpacho",
        "text": "It's all I have",
        "renderedHtml": "<div class=\"md\"><p>It&#39;s all I have</p>\n</div>",
        "score": 46489,
        "upvotes": 46489,
        "createdAt": "2019-01-01T21:07:31.000Z",
        "createdUtc": 1546376851,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1atyq",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1atyq/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1atyq/",
              "parentId": "t1_ed1ap8n",
              "author": "ShoddySubstance",
              "text": "it's time to [let go](https://youtu.be/L0MK7qz13bU?t=67)\n\n**edit** reddit silver for a 2013 meme, what a time to be alive",
              "renderedHtml": "<div class=\"md\"><p>it&#39;s time to <a href=\"https://youtu.be/L0MK7qz13bU?t=67\">let go</a></p>\n\n<p><strong>edit</strong> reddit silver for a 2013 meme, what a time to be alive</p>\n</div>",
              "score": 11616,
              "upvotes": 11616,
              "createdAt": "2019-01-01T21:09:11.000Z",
              "createdUtc": 1546376951,
              "depth": 1,
              "isSubmitter": true,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1bxue",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1bxue/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1bxue/",
                    "parentId": "t1_ed1atyq",
                    "author": "NaziGazpacho",
                    "text": "Will you pay me for it?",
                    "renderedHtml": "<div class=\"md\"><p>Will you pay me for it?</p>\n</div>",
                    "score": 2597,
                    "upvotes": 2597,
                    "createdAt": "2019-01-01T21:22:42.000Z",
                    "createdUtc": 1546377762,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1cano",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cano/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cano/",
                          "parentId": "t1_ed1bxue",
                          "author": "Ollybringmemysword",
                          "text": "I don't do pay per poo.",
                          "renderedHtml": "<div class=\"md\"><p>I don&#39;t do pay per poo.</p>\n</div>",
                          "score": 2777,
                          "upvotes": 2777,
                          "createdAt": "2019-01-01T21:26:58.000Z",
                          "createdUtc": 1546378018,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "ed1jyd7",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jyd7/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jyd7/",
                                "parentId": "t1_ed1cano",
                                "author": "Poem_for_your_sprog",
                                "text": "I will not give.  \nI will not go.  \nI will not drop the bait below.  \nI will not dump.  \nI will not do.  \nI will not force a number two.  \n\nI will not press.  \nI will not push.  \nI will not lay my puckered tush.   \nI will not pop  \na squat, to wit:  \nI will not shart.  \nI will not shit.\n\nMy stool is cool.  \nMy deuce is dear.  \nIt's all that's left of yesteryear.  \nYou think I will,  \nbut I will not.\n\nI must not poop.  \n\nIt's all I've got. ",
                                "renderedHtml": "<div class=\"md\"><p>I will not give.<br/>\nI will not go.<br/>\nI will not drop the bait below.<br/>\nI will not dump.<br/>\nI will not do.<br/>\nI will not force a number two.  </p>\n\n<p>I will not press.<br/>\nI will not push.<br/>\nI will not lay my puckered tush.<br/>\nI will not pop<br/>\na squat, to wit:<br/>\nI will not shart.<br/>\nI will not shit.</p>\n\n<p>My stool is cool.<br/>\nMy deuce is dear.<br/>\nIt&#39;s all that&#39;s left of yesteryear.<br/>\nYou think I will,<br/>\nbut I will not.</p>\n\n<p>I must not poop.  </p>\n\n<p>It&#39;s all I&#39;ve got. </p>\n</div>",
                                "score": 7184,
                                "upvotes": 7184,
                                "createdAt": "2019-01-01T23:09:23.000Z",
                                "createdUtc": 1546384163,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [
                                    {
                                      "id": "ed1kj0l",
                                      "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kj0l/",
                                      "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kj0l/",
                                      "parentId": "t1_ed1jyd7",
                                      "author": "cuzman",
                                      "text": "Someone give this guy a record deal. ",
                                      "renderedHtml": "<div class=\"md\"><p>Someone give this guy a record deal. </p>\n</div>",
                                      "score": 942,
                                      "upvotes": 942,
                                      "createdAt": "2019-01-01T23:17:13.000Z",
                                      "createdUtc": 1546384633,
                                      "depth": 5,
                                      "isSubmitter": false,
                                      "stickied": false,
                                      "locked": false,
                                      "distinguished": null,
                                      "replies": {
                                        "items": [
                                          {
                                            "id": "ed1lte0",
                                            "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lte0/",
                                            "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lte0/",
                                            "parentId": "t1_ed1kj0l",
                                            "author": "space-wizard",
                                            "text": "Trust me, sprog is gonna get a nice book deal out of this once he/she gives up the pen name. ",
                                            "renderedHtml": "<div class=\"md\"><p>Trust me, sprog is gonna get a nice book deal out of this once he/she gives up the pen name. </p>\n</div>",
                                            "score": 360,
                                            "upvotes": 360,
                                            "createdAt": "2019-01-01T23:34:59.000Z",
                                            "createdUtc": 1546385699,
                                            "depth": 6,
                                            "isSubmitter": false,
                                            "stickied": false,
                                            "locked": false,
                                            "distinguished": null,
                                            "replies": {
                                              "items": [
                                                {
                                                  "id": "ed1m0zz",
                                                  "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1m0zz/",
                                                  "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1m0zz/",
                                                  "parentId": "t1_ed1lte0",
                                                  "author": "[deleted]",
                                                  "text": "[removed]",
                                                  "renderedHtml": "<div class=\"md\"><p>[removed]</p>\n</div>",
                                                  "score": 154,
                                                  "upvotes": 154,
                                                  "createdAt": "2019-01-01T23:37:53.000Z",
                                                  "createdUtc": 1546385873,
                                                  "depth": 7,
                                                  "isSubmitter": false,
                                                  "stickied": false,
                                                  "locked": false,
                                                  "distinguished": null,
                                                  "replies": {
                                                    "items": [
                                                      {
                                                        "id": "ed1oqos",
                                                        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1oqos/",
                                                        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1oqos/",
                                                        "parentId": "t1_ed1m0zz",
                                                        "author": "[deleted]",
                                                        "text": "[deleted]",
                                                        "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
                                                        "score": 90,
                                                        "upvotes": 90,
                                                        "createdAt": "2019-01-02T00:14:55.000Z",
                                                        "createdUtc": 1546388095,
                                                        "depth": 8,
                                                        "isSubmitter": false,
                                                        "stickied": false,
                                                        "locked": false,
                                                        "distinguished": null,
                                                        "replies": {
                                                          "items": [],
                                                          "page": {
                                                            "nextCursor": "ed1q11x,ed1pwij,ed1t47a,ed1pfwt,ed1pm5o,ed1pxwv,ed1qh1c,ed1sqxk",
                                                            "hasMore": true
                                                          }
                                                        }
                                                      }
                                                    ],
                                                    "page": {
                                                      "nextCursor": "ed1qh7q,ed1mcjx,ed20v4r,ed1vrql",
                                                      "hasMore": true
                                                    }
                                                  }
                                                }
                                              ],
                                              "page": {
                                                "nextCursor": "ed1pw3j,ehtquwo,ed1thnf",
                                                "hasMore": true
                                              }
                                            }
                                          }
                                        ],
                                        "page": {
                                          "nextCursor": "ed1mhxp,ed1mcxx,elnwdqi,ed1lw1j,ed1msee,ed1oes2,ed22is0,eeoate7",
                                          "hasMore": true
                                        }
                                      }
                                    }
                                  ],
                                  "page": {
                                    "nextCursor": "ed1kn18,ed1ks4v,ed1l8tb,ed1kpmx,ed1mlcs,ed1kyfv,ed1o2xz,ed1k8gw,ed1kyp8,ed1l217,ed1lwxx,ed1q89i,ed1qafr,ed1vn9r,ed1k3no,ed1kqgn,ed1kty4,ed1kzzb,ed1l47j,ed1l93i,ed1ldw4,ed1lfur,ed1llpf,ed1loen,ed1lweb,ed1lxed,ed1m4kv,ed1mcig,ed1mmca,ed1mxbh,ed1ne1p,ed1qkwc,ed1sh5m,ed1xhk7,ed22663,ed2jknf,edb6y79,ed1ko5e,ed1knwb,ed1kt67,ed1lckc,ed1leka,ed1lhh9,ed1lj2k,ed1lo9v,ed1lpb4,ed1lwnv,ed1m5kr,ed1mjrl,ed1mqmk,ed1mr2i,ed1n0qc,ed1n3p6,ed1nfpc,ed1nlxl,ed223ae,ed26wjb,ed287qd,ed2tb10,ei7090q,ee3bdb6,ed1ku4r,ed1kueb,ed1l2ji,ed1l48s,ed1l5yq,ed1l6u0,ed1l7de,ed1l8jh,ed1ld1c,ed1le1v,ed1lfbb,ed1lhwv,ed1lkcl,ed1ln99,ed1lpad,ed1lpes,ed1lpyd,ed1lwbm,ed1lwzy,ed1lymq,ed1m4tp,ed1m82f,ed1mloh,ed1mr8u,ed1n625,ed1noq9,ed1o4sj,ed1p40u,ed1p6ge,ed1pm6k,ed1pz8l,ed1q7tn,ed1qwi3,ed1r163,ed1stdr,ed1sxp3,ed1tgpo,ed1uh1y,ed299cy",
                                    "hasMore": true
                                  }
                                }
                              },
                              {
                                "id": "ed1do23",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1do23/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1do23/",
                                "parentId": "t1_ed1cano",
                                "author": "NaziGazpacho",
                                "text": "Don't worry, I run on a subshitscion model",
                                "renderedHtml": "<div class=\"md\"><p>Don&#39;t worry, I run on a subshitscion model</p>\n</div>",
                                "score": 264,
                                "upvotes": 264,
                                "createdAt": "2019-01-01T21:44:08.000Z",
                                "createdUtc": 1546379048,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [
                                    {
                                      "id": "ed1dtnk",
                                      "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dtnk/",
                                      "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dtnk/",
                                      "parentId": "t1_ed1do23",
                                      "author": "CSThr0waway123",
                                      "text": "Sounds like a pretty shitty deal",
                                      "renderedHtml": "<div class=\"md\"><p>Sounds like a pretty shitty deal</p>\n</div>",
                                      "score": 156,
                                      "upvotes": 156,
                                      "createdAt": "2019-01-01T21:46:09.000Z",
                                      "createdUtc": 1546379169,
                                      "depth": 5,
                                      "isSubmitter": false,
                                      "stickied": false,
                                      "locked": false,
                                      "distinguished": null,
                                      "replies": {
                                        "items": [
                                          {
                                            "id": "ed1dzti",
                                            "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dzti/",
                                            "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dzti/",
                                            "parentId": "t1_ed1dtnk",
                                            "author": "ShoddySubstance",
                                            "text": "there's a shitflix deal being made right now",
                                            "renderedHtml": "<div class=\"md\"><p>there&#39;s a shitflix deal being made right now</p>\n</div>",
                                            "score": 195,
                                            "upvotes": 195,
                                            "createdAt": "2019-01-01T21:48:24.000Z",
                                            "createdUtc": 1546379304,
                                            "depth": 6,
                                            "isSubmitter": true,
                                            "stickied": false,
                                            "locked": false,
                                            "distinguished": null,
                                            "replies": {
                                              "items": [
                                                {
                                                  "id": "ed1e4n5",
                                                  "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e4n5/",
                                                  "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e4n5/",
                                                  "parentId": "t1_ed1dzti",
                                                  "author": "CSThr0waway123",
                                                  "text": "This is the turd time i've heard this joke",
                                                  "renderedHtml": "<div class=\"md\"><p>This is the turd time i&#39;ve heard this joke</p>\n</div>",
                                                  "score": 111,
                                                  "upvotes": 111,
                                                  "createdAt": "2019-01-01T21:50:11.000Z",
                                                  "createdUtc": 1546379411,
                                                  "depth": 7,
                                                  "isSubmitter": false,
                                                  "stickied": false,
                                                  "locked": false,
                                                  "distinguished": null,
                                                  "replies": {
                                                    "items": [],
                                                    "page": {
                                                      "nextCursor": "ed1io0r,ed1k85i,ed1xxzq,ed1i18e",
                                                      "hasMore": true
                                                    }
                                                  }
                                                }
                                              ],
                                              "page": {
                                                "nextCursor": "ed1kbw7,ed1im4l,ed1jssz,ed1kmq3",
                                                "hasMore": true
                                              }
                                            }
                                          }
                                        ],
                                        "page": {
                                          "nextCursor": "ed1e19y",
                                          "hasMore": true
                                        }
                                      }
                                    }
                                  ],
                                  "page": {
                                    "nextCursor": "ed1i1yn,ed1l0av,ed1jah2,ed1jq67",
                                    "hasMore": true
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": "ed1iu2f,ed1dsd0,ed1ko6b,eh3z14l",
                              "hasMore": true
                            }
                          }
                        },
                        {
                          "id": "ed1cbyc",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cbyc/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cbyc/",
                          "parentId": "t1_ed1bxue",
                          "author": "ShoddySubstance",
                          "text": "the feeling of letting it go should be worth more to you than any monetary value that I could offer",
                          "renderedHtml": "<div class=\"md\"><p>the feeling of letting it go should be worth more to you than any monetary value that I could offer</p>\n</div>",
                          "score": 86,
                          "upvotes": 86,
                          "createdAt": "2019-01-01T21:27:23.000Z",
                          "createdUtc": 1546378043,
                          "depth": 3,
                          "isSubmitter": true,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [],
                            "page": {
                              "nextCursor": "ed1dj80",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1i5ej,ed1j4a4,ed1ok3c,ed1iyrq,ed1jn8m,ed1jvqj,ed1kpc6,ed1m13n,ed1mgna",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1ij8i,ed1iedy,ed1qdae,ed1kcpc,ed1mhz6,ed1r1ok,ed1kgl3,ed1m566,ed1mchm,ed1pe5d,ed1nji5,ed1i6vy,ed1jvza,ed1kp1z,ed1l2yt,ed1l6aa,ed1lc92,ed1n0u4,ed1qeky,ed2327a,eq90mxd,ed1j13l,ed1jk20,ed1jl39,ed1jrad,ed1jzat,ed1kgk9,ed1kn8x,ed1kucy,ed1kyvd,ed1l80d,ed1meux,ed1mjag,ed1mjvg,ed1mkfd,ed1n1vx,ed1tqrv,ed1vgwv,ed1zbw6,ed1zu8z,ed20s7i,ed20vnu,ed21dvk,ed21ski,ed223tt,ed22oci,ed22zlp,ed25eqs,ed27wlx,ed2k2aq,edrr38l,eezquun,eoufjn8",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1iodi,ed1kwf6,ed1kofn,ed1zi0c,ed1k3eh,ed1ka5j,ed1kjzb,ed1izr3,hgqwfyr,ed1j8ou,ed1lp25,ed1lvu5,ed1musg,ed1ot8g,ed1vzq9,ed1xepr,ed1xwyo",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1e9gm",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e9gm/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e9gm/",
        "parentId": "t3_ablzuq",
        "author": "[deleted]",
        "text": "Quality shitpost ",
        "renderedHtml": "<div class=\"md\"><p>Quality shitpost </p>\n</div>",
        "score": 25200,
        "upvotes": 25200,
        "createdAt": "2019-01-01T21:51:55.000Z",
        "createdUtc": 1546379515,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1i9rb",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i9rb/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i9rb/",
              "parentId": "t1_ed1e9gm",
              "author": "Quinthyll",
              "text": "I don't know, the content is really only about crap from last year.",
              "renderedHtml": "<div class=\"md\"><p>I don&#39;t know, the content is really only about crap from last year.</p>\n</div>",
              "score": 4644,
              "upvotes": 4644,
              "createdAt": "2019-01-01T22:46:13.000Z",
              "createdUtc": 1546382773,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1jp43",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jp43/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jp43/",
                    "parentId": "t1_ed1i9rb",
                    "author": "CatchingRays",
                    "text": "Better than having the front page clogged with reposts. ",
                    "renderedHtml": "<div class=\"md\"><p>Better than having the front page clogged with reposts. </p>\n</div>",
                    "score": 1158,
                    "upvotes": 1158,
                    "createdAt": "2019-01-01T23:05:55.000Z",
                    "createdUtc": 1546383955,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1ktyw",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ktyw/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ktyw/",
                          "parentId": "t1_ed1jp43",
                          "author": "xenoguy1313",
                          "text": "This too shall pass. ",
                          "renderedHtml": "<div class=\"md\"><p>This too shall pass. </p>\n</div>",
                          "score": 575,
                          "upvotes": 575,
                          "createdAt": "2019-01-01T23:21:30.000Z",
                          "createdUtc": 1546384890,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [],
                            "page": {
                              "nextCursor": "ed1nzp3,ed1xbh2,ed1mg8z,ed1plpm,ed1pz4b,ed1m2n2,ed1z6ci,ed1xu8i,ed2pt89",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1kuij,ed1khqy,ed280pi,ed1m0bp,ed1ne8g,ed1ouq8,ed1pt3j,ed1tfpu",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1nfu3,ed1q3z3,ed1rk3p,ed2rw89,ed1o7fo,ed1ogmf,ed1ooqn,ed1xszl,ed2o8i7",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1lp8u,edexrk4,ed1jvdg,ed1kt1w,ed1lwpv,ed1m4a7,ed1p2hx,ed1ptv1,ed25za1,ed27ahu",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1cm3u",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cm3u/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cm3u/",
        "parentId": "t3_ablzuq",
        "author": "PrinceofallRabbits",
        "text": "I’m letting go right now as I type. ",
        "renderedHtml": "<div class=\"md\"><p>I’m letting go right now as I type. </p>\n</div>",
        "score": 26559,
        "upvotes": 26559,
        "createdAt": "2019-01-01T21:30:46.000Z",
        "createdUtc": 1546378246,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1crr7",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1crr7/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1crr7/",
              "parentId": "t1_ed1cm3u",
              "author": "ShoddySubstance",
              "text": "Good, time to take that 2019 air in",
              "renderedHtml": "<div class=\"md\"><p>Good, time to take that 2019 air in</p>\n</div>",
              "score": 12218,
              "upvotes": 12218,
              "createdAt": "2019-01-01T21:32:37.000Z",
              "createdUtc": 1546378357,
              "depth": 1,
              "isSubmitter": true,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1ehha",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ehha/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ehha/",
                    "parentId": "t1_ed1crr7",
                    "author": "[deleted]",
                    "text": "[deleted]",
                    "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
                    "score": 2242,
                    "upvotes": 2242,
                    "createdAt": "2019-01-01T21:54:44.000Z",
                    "createdUtc": 1546379684,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1i754",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i754/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i754/",
                          "parentId": "t1_ed1ehha",
                          "author": "MorningredTimetravel",
                          "text": "You don't breathe through your butt?",
                          "renderedHtml": "<div class=\"md\"><p>You don&#39;t breathe through your butt?</p>\n</div>",
                          "score": 1409,
                          "upvotes": 1409,
                          "createdAt": "2019-01-01T22:45:12.000Z",
                          "createdUtc": 1546382712,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "ed1ild4",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ild4/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ild4/",
                                "parentId": "t1_ed1i754",
                                "author": "[deleted]",
                                "text": "[deleted]",
                                "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
                                "score": 671,
                                "upvotes": 671,
                                "createdAt": "2019-01-01T22:50:39.000Z",
                                "createdUtc": 1546383039,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [],
                                  "page": {
                                    "nextCursor": "ed1k762",
                                    "hasMore": true
                                  }
                                }
                              },
                              {
                                "id": "ed1ill4",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ill4/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ill4/",
                                "parentId": "t1_ed1i754",
                                "author": "ElBroet",
                                "text": "I dunno, I have the exhaling part pretty down ",
                                "renderedHtml": "<div class=\"md\"><p>I dunno, I have the exhaling part pretty down </p>\n</div>",
                                "score": 193,
                                "upvotes": 193,
                                "createdAt": "2019-01-01T22:50:44.000Z",
                                "createdUtc": 1546383044,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [
                                    {
                                      "id": "ed1iqfl",
                                      "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iqfl/",
                                      "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iqfl/",
                                      "parentId": "t1_ed1ill4",
                                      "author": "[deleted]",
                                      "text": "More like a sneeze on my end. ",
                                      "renderedHtml": "<div class=\"md\"><p>More like a sneeze on my end. </p>\n</div>",
                                      "score": 129,
                                      "upvotes": 129,
                                      "createdAt": "2019-01-01T22:52:33.000Z",
                                      "createdUtc": 1546383153,
                                      "depth": 5,
                                      "isSubmitter": false,
                                      "stickied": false,
                                      "locked": false,
                                      "distinguished": null,
                                      "replies": {
                                        "items": [
                                          {
                                            "id": "ed1iwkx",
                                            "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iwkx/",
                                            "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iwkx/",
                                            "parentId": "t1_ed1iqfl",
                                            "author": "ElBroet",
                                            "text": "Here a sort of liquid cough, tuberculoshits if you will",
                                            "renderedHtml": "<div class=\"md\"><p>Here a sort of liquid cough, tuberculoshits if you will</p>\n</div>",
                                            "score": 174,
                                            "upvotes": 174,
                                            "createdAt": "2019-01-01T22:54:55.000Z",
                                            "createdUtc": 1546383295,
                                            "depth": 6,
                                            "isSubmitter": false,
                                            "stickied": false,
                                            "locked": false,
                                            "distinguished": null,
                                            "replies": {
                                              "items": [],
                                              "page": {
                                                "nextCursor": "ed1lcn4,ed1p245,ed2hzhk",
                                                "hasMore": true
                                              }
                                            }
                                          }
                                        ],
                                        "page": {
                                          "nextCursor": null,
                                          "hasMore": false
                                        }
                                      }
                                    }
                                  ],
                                  "page": {
                                    "nextCursor": null,
                                    "hasMore": false
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": "ed1in2t,ed1sp1i,ed1ooun,ed1lsku,ed228k4,ed1id1q,ed3pprb,ed1itjn,ed1ovjg,ed1pv74,ed1qshm,ed1s61r,ed1tm61,ed20ovg,ed262xc,ed29o67,ed2uwts",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1jbm0,ed1jpq8,ed38qhi,ed1ly6s,ed1m5i4,ed1so3l,ed2q8oz",
                        "hasMore": true
                      }
                    }
                  },
                  {
                    "id": "ed1ivp5",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ivp5/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ivp5/",
                    "parentId": "t1_ed1crr7",
                    "author": "[deleted]",
                    "text": "[deleted]",
                    "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
                    "score": 267,
                    "upvotes": 267,
                    "createdAt": "2019-01-01T22:54:35.000Z",
                    "createdUtc": 1546383275,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [],
                      "page": {
                        "nextCursor": "ed1modo,ed1pxep,ed2v155,ed1p5qf",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1o5he,ed1keie,ed1klb4,ed1qw9l,ed1odpw,ed1po0h,ed1pv94,ed1uhm3",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1imbh",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1imbh/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1imbh/",
              "parentId": "t1_ed1cm3u",
              "author": "swo30",
              "text": "Yo same",
              "renderedHtml": "<div class=\"md\"><p>Yo same</p>\n</div>",
              "score": 48,
              "upvotes": 48,
              "createdAt": "2019-01-01T22:51:00.000Z",
              "createdUtc": 1546383060,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed1umk6",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1iixa",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iixa/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iixa/",
              "parentId": "t1_ed1cm3u",
              "author": "Maldetete",
              "text": "Happy Cake & Poop Day!",
              "renderedHtml": "<div class=\"md\"><p>Happy Cake &amp; Poop Day!</p>\n</div>",
              "score": 85,
              "upvotes": 85,
              "createdAt": "2019-01-01T22:49:44.000Z",
              "createdUtc": 1546382984,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed2axw7",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1ihg1,ed1irj8,ed1iua0,ed1lm16,ed1j68i,ed1kxhy,ed1ltu3,ed1mvax,ed1pk8u,ed2czhx,ed1iv3e,ed1j8ok,ed1jrpy,ed1m7wu,ed1myzf,ed1n3y8,ed1nqws,ed1oc6i,ed1pqm8,ed1qp74,ed1rait,ed1uo73,ed22ath,ed24you,ed2epsv,ed2oqsl,ed1ikk2,ed1iyk4,ed1jbva,ed1jder,ed1l5hh,ed1lwsg,ed1mh4n,ed1n08k,ed1nggs,ed1nnny,ed1nszp,ed1ntqx,ed1ohf0,ed1om16,ed1osnl,ed1oxvb,ed1p2jz,ed1ozo5,ed1pxfi,ed1q2xy,ed1qa01,ed1qkv3,ed1r8cr,ed1r8lv,ed1rb1x,ed1rn57,ed1sagc,ed1sd31,ed1sm3z,ed1t0h6,ed1uqxw,ed1vqqx,ed1yjoi,ed1zupz,ed242ss,ed2445x,ed26n4f,ed279dn,ed2glj5,ed2r9y5,ed2s6se,ed1jgyv,ed1jo6z,ed1jyij,ed1k4yd,ed1k70a,ed1kbuu,ed1l5bm,ed1lul4,ed1mrb6,ed1n0hf,ed1nnv9,ed1o5ih,ed1on51,ed1ovvo,ed1ozcg,ed1poca,ed1q3h7,ed1qj17,ed1qmg4,ed1r8ou,ed1rs91,ed1saxn,ed1sf3x,ed1sqk9,ed1sumv,ed1xru3,ed1z7zt,ed205xk,ed249ci,ed29dtt,ed2i9cm,ed3c588,eeoapb9",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1e8bh",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e8bh/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e8bh/",
        "parentId": "t3_ablzuq",
        "author": "ThreeSheetzToTheWind",
        "text": "\"Fuck you, I won't poo when you tell me\"",
        "renderedHtml": "<div class=\"md\"><p>&quot;Fuck you, I won&#39;t poo when you tell me&quot;</p>\n</div>",
        "score": 28368,
        "upvotes": 28368,
        "createdAt": "2019-01-01T21:51:31.000Z",
        "createdUtc": 1546379491,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1k6a1",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k6a1/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k6a1/",
              "parentId": "t1_ed1e8bh",
              "author": "Krazekami",
              "text": "Rage Against The Latrine\n\nEdit: I cant believe my first gold is a shitty pun. Thanks everyone and Happy New Year!",
              "renderedHtml": "<div class=\"md\"><p>Rage Against The Latrine</p>\n\n<p>Edit: I cant believe my first gold is a shitty pun. Thanks everyone and Happy New Year!</p>\n</div>",
              "score": 16542,
              "upvotes": 16542,
              "createdAt": "2019-01-01T23:12:23.000Z",
              "createdUtc": 1546384343,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1lft1",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lft1/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lft1/",
                    "parentId": "t1_ed1k6a1",
                    "author": "FreakyRik",
                    "text": "That made me fucking laugh so hard. Why is this shit so funny, fuck I am such a manchild.\n\nedit: thanks for my first gold kind stranger, Happy new year!",
                    "renderedHtml": "<div class=\"md\"><p>That made me fucking laugh so hard. Why is this shit so funny, fuck I am such a manchild.</p>\n\n<p>edit: thanks for my first gold kind stranger, Happy new year!</p>\n</div>",
                    "score": 5052,
                    "upvotes": 5052,
                    "createdAt": "2019-01-01T23:29:48.000Z",
                    "createdUtc": 1546385388,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1mack",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1mack/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1mack/",
                          "parentId": "t1_ed1lft1",
                          "author": "snerz",
                          "text": "I logged in just so could upvote it",
                          "renderedHtml": "<div class=\"md\"><p>I logged in just so could upvote it</p>\n</div>",
                          "score": 763,
                          "upvotes": 763,
                          "createdAt": "2019-01-01T23:41:29.000Z",
                          "createdUtc": 1546386089,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "ed1ngre",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ngre/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ngre/",
                                "parentId": "t1_ed1mack",
                                "author": "Annoy_Occult_Vet",
                                "text": "I've been trying to logout since this morning.",
                                "renderedHtml": "<div class=\"md\"><p>I&#39;ve been trying to logout since this morning.</p>\n</div>",
                                "score": 410,
                                "upvotes": 410,
                                "createdAt": "2019-01-01T23:57:32.000Z",
                                "createdUtc": 1546387052,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [
                                    {
                                      "id": "ed1nqgg",
                                      "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1nqgg/",
                                      "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1nqgg/",
                                      "parentId": "t1_ed1ngre",
                                      "author": "commie_heathen",
                                      "text": "So you're saying you haven't gotten a log out this year? ",
                                      "renderedHtml": "<div class=\"md\"><p>So you&#39;re saying you haven&#39;t gotten a log out this year? </p>\n</div>",
                                      "score": 470,
                                      "upvotes": 470,
                                      "createdAt": "2019-01-02T00:01:04.000Z",
                                      "createdUtc": 1546387264,
                                      "depth": 5,
                                      "isSubmitter": false,
                                      "stickied": false,
                                      "locked": false,
                                      "distinguished": null,
                                      "replies": {
                                        "items": [],
                                        "page": {
                                          "nextCursor": "ed1s8h7,ed1rw8r,ed1num1,ed1o051,ed1ttux,ed1qozb",
                                          "hasMore": true
                                        }
                                      }
                                    }
                                  ],
                                  "page": {
                                    "nextCursor": "ed1nqhs,ed1tqkc,er90x5a,ed1p40n,ed23dsl,er90tsi",
                                    "hasMore": true
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": "ed1q57e,ed1w7k3,ed1qshz",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1rg8e,ed1s2av,ed1te9p,ed2mjfz,ejb2xrq,ed1paxo,ed1v5af,ed1w15d,ed1x5ir,ed24gyy,ed28tk8,ed2qpkx,eh2yj1e",
                        "hasMore": true
                      }
                    }
                  },
                  {
                    "id": "ed1sqk2",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1sqk2/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1sqk2/",
                    "parentId": "t1_ed1k6a1",
                    "author": "majtommm",
                    "text": "Shitting in the Name Of",
                    "renderedHtml": "<div class=\"md\"><p>Shitting in the Name Of</p>\n</div>",
                    "score": 84,
                    "upvotes": 84,
                    "createdAt": "2019-01-02T01:11:42.000Z",
                    "createdUtc": 1546391502,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [],
                      "page": {
                        "nextCursor": null,
                        "hasMore": false
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1n8s7,ed1nk9q,ed1njf0,ed1rs0y,ed1o6g3,ed1r3ps,ed1nkum,ed2bbso,ed1nr98,ed1o0nw,ed1oiln,ed1skm7,ed1srar,ed1szl5,ed2bia5,eoufo85,ed1nkp0,ed1nssv,ed1o4ds,ed1r34d,ed1sdrj,ed1ycoa,ed1zsqc,ed23tv5",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1jbzl",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jbzl/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jbzl/",
              "parentId": "t1_ed1e8bh",
              "author": "4apalehorse",
              "text": "Bowels on Parade.",
              "renderedHtml": "<div class=\"md\"><p>Bowels on Parade.</p>\n</div>",
              "score": 730,
              "upvotes": 730,
              "createdAt": "2019-01-01T23:00:54.000Z",
              "createdUtc": 1546383654,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed272tf,ed1s3za,ed1ztir,ed1zz2z,ed1klva,ed1lsgl,ed24klm",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1izvc",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1izvc/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1izvc/",
              "parentId": "t1_ed1e8bh",
              "author": "Samikotu",
              "text": "\"And now you poop when they tell ya!\"",
              "renderedHtml": "<div class=\"md\"><p>&quot;And now you poop when they tell ya!&quot;</p>\n</div>",
              "score": 1932,
              "upvotes": 1932,
              "createdAt": "2019-01-01T22:56:11.000Z",
              "createdUtc": 1546383371,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1j2tx",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j2tx/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j2tx/",
                    "parentId": "t1_ed1izvc",
                    "author": "thehybridview",
                    "text": "THOSE WHO DIED",
                    "renderedHtml": "<div class=\"md\"><p>THOSE WHO DIED</p>\n</div>",
                    "score": 988,
                    "upvotes": 988,
                    "createdAt": "2019-01-01T22:57:21.000Z",
                    "createdUtc": 1546383441,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1jfsg",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jfsg/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jfsg/",
                          "parentId": "t1_ed1j2tx",
                          "author": "bman7653",
                          "text": "THEIR GUTS ARE FRIED",
                          "renderedHtml": "<div class=\"md\"><p>THEIR GUTS ARE FRIED</p>\n</div>",
                          "score": 1020,
                          "upvotes": 1020,
                          "createdAt": "2019-01-01T23:02:22.000Z",
                          "createdUtc": 1546383742,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "ed1jpkl",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jpkl/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jpkl/",
                                "parentId": "t1_ed1jfsg",
                                "author": "NinetyArmhole",
                                "text": "THEIR BELLIES FEEL BAD AND THEIR CLOTHES AIN'T WHITE!",
                                "renderedHtml": "<div class=\"md\"><p>THEIR BELLIES FEEL BAD AND THEIR CLOTHES AIN&#39;T WHITE!</p>\n</div>",
                                "score": 963,
                                "upvotes": 963,
                                "createdAt": "2019-01-01T23:06:05.000Z",
                                "createdUtc": 1546383965,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [
                                    {
                                      "id": "ed1k1k8",
                                      "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k1k8/",
                                      "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k1k8/",
                                      "parentId": "t1_ed1jpkl",
                                      "author": "turtlevader",
                                      "text": "THEY JUSTIFY, THE EXTRA WIPE",
                                      "renderedHtml": "<div class=\"md\"><p>THEY JUSTIFY, THE EXTRA WIPE</p>\n</div>",
                                      "score": 1015,
                                      "upvotes": 1015,
                                      "createdAt": "2019-01-01T23:10:34.000Z",
                                      "createdUtc": 1546384234,
                                      "depth": 5,
                                      "isSubmitter": false,
                                      "stickied": false,
                                      "locked": false,
                                      "distinguished": null,
                                      "replies": {
                                        "items": [
                                          {
                                            "id": "ed1kj1k",
                                            "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kj1k/",
                                            "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kj1k/",
                                            "parentId": "t1_ed1k1k8",
                                            "author": "[deleted]",
                                            "text": "THEIR BELLIES FEEL BAD AND THEIR CLOTHES AIN'T WHITE, COME ON!\n\n**HUNGH!**",
                                            "renderedHtml": "<div class=\"md\"><p>THEIR BELLIES FEEL BAD AND THEIR CLOTHES AIN&#39;T WHITE, COME ON!</p>\n\n<p><strong>HUNGH!</strong></p>\n</div>",
                                            "score": 768,
                                            "upvotes": 768,
                                            "createdAt": "2019-01-01T23:17:14.000Z",
                                            "createdUtc": 1546384634,
                                            "depth": 6,
                                            "isSubmitter": false,
                                            "stickied": false,
                                            "locked": false,
                                            "distinguished": null,
                                            "replies": {
                                              "items": [
                                                {
                                                  "id": "ed1ko6r",
                                                  "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ko6r/",
                                                  "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ko6r/",
                                                  "parentId": "t1_ed1kj1k",
                                                  "author": "seazer818",
                                                  "text": "POOPING IN THE NAME OF!!",
                                                  "renderedHtml": "<div class=\"md\"><p>POOPING IN THE NAME OF!!</p>\n</div>",
                                                  "score": 701,
                                                  "upvotes": 701,
                                                  "createdAt": "2019-01-01T23:19:16.000Z",
                                                  "createdUtc": 1546384756,
                                                  "depth": 7,
                                                  "isSubmitter": false,
                                                  "stickied": false,
                                                  "locked": false,
                                                  "distinguished": null,
                                                  "replies": {
                                                    "items": [
                                                      {
                                                        "id": "ed1lewr",
                                                        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lewr/",
                                                        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lewr/",
                                                        "parentId": "t1_ed1ko6r",
                                                        "author": "InfinityIsAnIllusion",
                                                        "text": "POOPING IN THE NAME OF!!\n\n",
                                                        "renderedHtml": "<div class=\"md\"><p>POOPING IN THE NAME OF!!</p>\n</div>",
                                                        "score": 533,
                                                        "upvotes": 533,
                                                        "createdAt": "2019-01-01T23:29:27.000Z",
                                                        "createdUtc": 1546385367,
                                                        "depth": 8,
                                                        "isSubmitter": false,
                                                        "stickied": false,
                                                        "locked": false,
                                                        "distinguished": null,
                                                        "replies": {
                                                          "items": [
                                                            {
                                                              "id": "ed1lot4",
                                                              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lot4/",
                                                              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lot4/",
                                                              "parentId": "t1_ed1lewr",
                                                              "author": "xjeeper",
                                                              "text": "/r/rageagainstthetoilet",
                                                              "renderedHtml": "<div class=\"md\"><p><a href=\"/r/rageagainstthetoilet\">/r/rageagainstthetoilet</a></p>\n</div>",
                                                              "score": 234,
                                                              "upvotes": 234,
                                                              "createdAt": "2019-01-01T23:33:13.000Z",
                                                              "createdUtc": 1546385593,
                                                              "depth": 9,
                                                              "isSubmitter": false,
                                                              "stickied": false,
                                                              "locked": false,
                                                              "distinguished": null,
                                                              "replies": {
                                                                "items": [],
                                                                "page": {
                                                                  "nextCursor": null,
                                                                  "hasMore": false
                                                                }
                                                              }
                                                            }
                                                          ],
                                                          "page": {
                                                            "nextCursor": "ed1nghx,ed1z6nb,ed21chs,ed1mfb1,ed23y1c,ed1n5ed",
                                                            "hasMore": true
                                                          }
                                                        }
                                                      }
                                                    ],
                                                    "page": {
                                                      "nextCursor": null,
                                                      "hasMore": false
                                                    }
                                                  }
                                                }
                                              ],
                                              "page": {
                                                "nextCursor": "ed1ltw8",
                                                "hasMore": true
                                              }
                                            }
                                          },
                                          {
                                            "id": "ed1kmq8",
                                            "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kmq8/",
                                            "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kmq8/",
                                            "parentId": "t1_ed1k1k8",
                                            "author": "RazgrizS57",
                                            "text": "BY CHECKING THE PLY TO SEE IT'S WHITE",
                                            "renderedHtml": "<div class=\"md\"><p>BY CHECKING THE PLY TO SEE IT&#39;S WHITE</p>\n</div>",
                                            "score": 102,
                                            "upvotes": 102,
                                            "createdAt": "2019-01-01T23:18:41.000Z",
                                            "createdUtc": 1546384721,
                                            "depth": 6,
                                            "isSubmitter": false,
                                            "stickied": false,
                                            "locked": false,
                                            "distinguished": null,
                                            "replies": {
                                              "items": [],
                                              "page": {
                                                "nextCursor": null,
                                                "hasMore": false
                                              }
                                            }
                                          }
                                        ],
                                        "page": {
                                          "nextCursor": null,
                                          "hasMore": false
                                        }
                                      }
                                    },
                                    {
                                      "id": "ed1k1sv",
                                      "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k1sv/",
                                      "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k1sv/",
                                      "parentId": "t1_ed1jpkl",
                                      "author": "tomatoaway",
                                      "text": "THOSE WHO TRIED",
                                      "renderedHtml": "<div class=\"md\"><p>THOSE WHO TRIED</p>\n</div>",
                                      "score": 68,
                                      "upvotes": 68,
                                      "createdAt": "2019-01-01T23:10:40.000Z",
                                      "createdUtc": 1546384240,
                                      "depth": 5,
                                      "isSubmitter": false,
                                      "stickied": false,
                                      "locked": false,
                                      "distinguished": null,
                                      "replies": {
                                        "items": [],
                                        "page": {
                                          "nextCursor": "ed1kxqc",
                                          "hasMore": true
                                        }
                                      }
                                    }
                                  ],
                                  "page": {
                                    "nextCursor": "ed1p884",
                                    "hasMore": true
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": "ed1ldc9,ed1jtsc",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1ji3t,ed1jlwc",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": null,
                  "hasMore": false
                }
              }
            },
            {
              "id": "ed1j6cu",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j6cu/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j6cu/",
              "parentId": "t1_ed1e8bh",
              "author": "[deleted]",
              "text": "Ahh, everyone's favorite RATM song, Pooping in the Name",
              "renderedHtml": "<div class=\"md\"><p>Ahh, everyone&#39;s favorite RATM song, Pooping in the Name</p>\n</div>",
              "score": 273,
              "upvotes": 273,
              "createdAt": "2019-01-01T22:58:43.000Z",
              "createdUtc": 1546383523,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed1n12a,ed1lopn,ed1l8mx",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1iyzx",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iyzx/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iyzx/",
              "parentId": "t1_ed1e8bh",
              "author": "[deleted]",
              "text": "MOTHER FUCKER!",
              "renderedHtml": "<div class=\"md\"><p>MOTHER FUCKER!</p>\n</div>",
              "score": 132,
              "upvotes": 132,
              "createdAt": "2019-01-01T22:55:51.000Z",
              "createdUtc": 1546383351,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed1pg4z,ed1jvon",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1fet1,ed1jvvo,ed1j2tm,ed1j7n4,ed1jfi1,ed1kita,ed1jbsc,ed1jthm,ed1q2r6,ed1necp,ed1jd2g,ed1jjyc,ed1leuo,ed1nf6v,ed1v1u9,ed2n54p,ed1p43v,ed1jz3x,ed1mzbq,ed1nkbj,ed1ol9m,ed1s40v,ed1zt41,ed1jg0i,ed1js02,ed1jz06,ed1l3n0,ed1lsrf,ed1lt2z,ed1lva4,ed1lze1,ed1muek,ed1mulp,ed1q330,ed20hqy,ed20z4q,ejb2wj6,ejztpcg",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1c2wr",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1c2wr/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1c2wr/",
        "parentId": "t3_ablzuq",
        "author": "Lady_Minuit",
        "text": "Everyone now thinking about the last time they pooped. Nicely played. ",
        "renderedHtml": "<div class=\"md\"><p>Everyone now thinking about the last time they pooped. Nicely played. </p>\n</div>",
        "score": 26825,
        "upvotes": 26825,
        "createdAt": "2019-01-01T21:24:24.000Z",
        "createdUtc": 1546377864,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1iu15",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iu15/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iu15/",
              "parentId": "t1_ed1c2wr",
              "author": "[deleted]",
              "text": "[deleted]",
              "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
              "score": 3029,
              "upvotes": 3029,
              "createdAt": "2019-01-01T22:53:56.000Z",
              "createdUtc": 1546383236,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1jeos",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jeos/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jeos/",
                    "parentId": "t1_ed1iu15",
                    "author": "SWGlassPit",
                    "text": "The old spicy twicey.",
                    "renderedHtml": "<div class=\"md\"><p>The old spicy twicey.</p>\n</div>",
                    "score": 2640,
                    "upvotes": 2640,
                    "createdAt": "2019-01-01T23:01:56.000Z",
                    "createdUtc": 1546383716,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1jnqy",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jnqy/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jnqy/",
                          "parentId": "t1_ed1jeos",
                          "author": "high_on_eucalyptus",
                          "text": "I now know my new favorite phrase for Thai. Thank you stranger ",
                          "renderedHtml": "<div class=\"md\"><p>I now know my new favorite phrase for Thai. Thank you stranger </p>\n</div>",
                          "score": 552,
                          "upvotes": 552,
                          "createdAt": "2019-01-01T23:05:24.000Z",
                          "createdUtc": 1546383924,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "ed1k1eg",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k1eg/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k1eg/",
                                "parentId": "t1_ed1jnqy",
                                "author": "a_fish_out_of_water",
                                "text": "God I love this site ",
                                "renderedHtml": "<div class=\"md\"><p>God I love this site </p>\n</div>",
                                "score": 183,
                                "upvotes": 183,
                                "createdAt": "2019-01-01T23:10:30.000Z",
                                "createdUtc": 1546384230,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [],
                                  "page": {
                                    "nextCursor": "ed1z7x1,ed21lsc,ed1ll7t",
                                    "hasMore": true
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": "ed1q0cs",
                              "hasMore": true
                            }
                          }
                        },
                        {
                          "id": "ed1jte2",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jte2/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jte2/",
                          "parentId": "t1_ed1jeos",
                          "author": "OjamaBoy",
                          "text": "And to think that if I decided to start scrolling through reddit just 5 minutes earlier, I may never have read this absolute glorious phrase.",
                          "renderedHtml": "<div class=\"md\"><p>And to think that if I decided to start scrolling through reddit just 5 minutes earlier, I may never have read this absolute glorious phrase.</p>\n</div>",
                          "score": 278,
                          "upvotes": 278,
                          "createdAt": "2019-01-01T23:07:32.000Z",
                          "createdUtc": 1546384052,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [],
                            "page": {
                              "nextCursor": "ed1q4wc",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1ka0c,ed1ns7t,ed1knpb,ed29jy0,ed1jtd6,ed1o0sy,ed1o3xi,ed1p3xb,ed1purv,ed1qct0,ed1tjcw,ed1xe0u,ed22ttj",
                        "hasMore": true
                      }
                    }
                  },
                  {
                    "id": "ed1jryu",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jryu/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jryu/",
                    "parentId": "t1_ed1iu15",
                    "author": "Judazzz",
                    "text": "\"*And it burns, burns, burns! The ring of fire, the ring of fire.*\"",
                    "renderedHtml": "<div class=\"md\"><p>&quot;<em>And it burns, burns, burns! The ring of fire, the ring of fire.</em>&quot;</p>\n</div>",
                    "score": 249,
                    "upvotes": 249,
                    "createdAt": "2019-01-01T23:07:00.000Z",
                    "createdUtc": 1546384020,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [],
                      "page": {
                        "nextCursor": null,
                        "hasMore": false
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1k3g1,ed1l7rs,ed1jmor,ed1ka2s,ed1kb3i,ed1kbnl,ed1nqm4,ed1osyl,ed1k8kk,ed1kmxs,ed1kn1p,ed1unyi,ed1jndm,ed1k0rj,ed77k97,ed1k79j,ed1k7hj,ed1kn9j,ed1kqbl,ed1m0yz,ed1meh5,ed1myz6,ed1nsvg,ed1o1je,ed1plqp,ed1q0y5,ed1q3b5,ed1qy53,ed1teb1,ed1zg9b,ed1zjlb,ed21t58,ed2cxn6,ed2lgvq,ed2qkcu,ed39683",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1dihq",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dihq/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dihq/",
              "parentId": "t1_ed1c2wr",
              "author": "ffs_fml",
              "text": "What a shitty thought ",
              "renderedHtml": "<div class=\"md\"><p>What a shitty thought </p>\n</div>",
              "score": 3788,
              "upvotes": 3788,
              "createdAt": "2019-01-01T21:42:10.000Z",
              "createdUtc": 1546378930,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed1isrc,ed1j5yg,ed1otrx,ed1is9g,ed1isdf,ed1jb59,ed1lg5u,ed1nfa8",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1idhu",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1idhu/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1idhu/",
              "parentId": "t1_ed1c2wr",
              "author": "dcristo",
              "text": "When you have a caffeine addiction you don't need to think that far back.",
              "renderedHtml": "<div class=\"md\"><p>When you have a caffeine addiction you don&#39;t need to think that far back.</p>\n</div>",
              "score": 399,
              "upvotes": 399,
              "createdAt": "2019-01-01T22:47:37.000Z",
              "createdUtc": 1546382857,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1jcse",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jcse/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jcse/",
                    "parentId": "t1_ed1idhu",
                    "author": "tokomini",
                    "text": "Is it all caffeine, or just coffee? Because I don't think that pop or energy drinks have the same effect on me. I definitely pee a lot more. But I think it's just coffee that makes me punish the porcelain. That and throwing in a chew. Why am I typing all this out. ",
                    "renderedHtml": "<div class=\"md\"><p>Is it all caffeine, or just coffee? Because I don&#39;t think that pop or energy drinks have the same effect on me. I definitely pee a lot more. But I think it&#39;s just coffee that makes me punish the porcelain. That and throwing in a chew. Why am I typing all this out. </p>\n</div>",
                    "score": 234,
                    "upvotes": 234,
                    "createdAt": "2019-01-01T23:01:13.000Z",
                    "createdUtc": 1546383673,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1jx9i",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jx9i/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jx9i/",
                          "parentId": "t1_ed1jcse",
                          "author": "winner_in_life",
                          "text": "Some types of coffee makes me poop almost immediately. But not all.",
                          "renderedHtml": "<div class=\"md\"><p>Some types of coffee makes me poop almost immediately. But not all.</p>\n</div>",
                          "score": 52,
                          "upvotes": 52,
                          "createdAt": "2019-01-01T23:08:59.000Z",
                          "createdUtc": 1546384139,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "ed1ou07",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ou07/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ou07/",
                                "parentId": "t1_ed1jx9i",
                                "author": "breadstickfever",
                                "text": "Hot drip coffee is like this for me. A single cup makes me poop like 4 times a day when I normally poop about once every other day. Therefore I tend to avoid it unless I need a good thorough clean out (which, granted, can be very satisfying if I have a free day for it).",
                                "renderedHtml": "<div class=\"md\"><p>Hot drip coffee is like this for me. A single cup makes me poop like 4 times a day when I normally poop about once every other day. Therefore I tend to avoid it unless I need a good thorough clean out (which, granted, can be very satisfying if I have a free day for it).</p>\n</div>",
                                "score": 35,
                                "upvotes": 35,
                                "createdAt": "2019-01-02T00:16:15.000Z",
                                "createdUtc": 1546388175,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [],
                                  "page": {
                                    "nextCursor": "ed1vw9c,ed333bk",
                                    "hasMore": true
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": "ed2spry",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1ko47,ed1k28r,ed1jvux,ed1nsbq,ed1ko5c,ed1qls7,ed28ge7,ed1k4d6,ed1k7y4,ed1kijg,ef5apor,ed1ty1f,ed1ulmw,ed22307,ed26ftk,ed3djax",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1izhy,ed1j2qe,ed24wh9,ed1ljr8",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1ih2x",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ih2x/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ih2x/",
              "parentId": "t1_ed1c2wr",
              "author": "[deleted]",
              "text": "[deleted]",
              "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
              "score": 63,
              "upvotes": 63,
              "createdAt": "2019-01-01T22:49:01.000Z",
              "createdUtc": 1546382941,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed1k28n,ed2gnhq,ed1jjwd,ed21pss",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1iw3g,ed1o8i7,ed1iws1,ed1koab,ed1j6gx,ed1jyx6,ed1izet,ed1kqd8,ed1w4kd,ed1isrp,ed1j5ng,ed1ol5h,ed235tq,ed1ipnj,eiiduhd,ed1jbsw,ed1jiwc,ed1juw5,ed1jx45,ed1k0s2,ed1k1jt,ed1k206,ed1k349,ed1k3vl,ed1k44p,ed1k599,ed1kcdp,ed1kqxi,ed1kwsz,ed1kwyd,ed1l1ei,ed1lfm8,ed1lwd3,ed1m30x,ed1m3sj,ed1n411,ed1np60,ed1o60w,ed1olon,ed1oqy8,ed1ps6x,ed1pzti,ed1qddy,ed1qhds,ed1r3dt,ed1rtpq,ed1swem,ed1upys,ed1ut7t,ed1v6de,ed1w0uy,ed22ei8,ed23com,ed23wb4,ed27n9q,ed28dy5,ed2nkhz,ed2rwwf",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1b3m0",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1b3m0/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1b3m0/",
        "parentId": "t3_ablzuq",
        "author": "TitanicByMyself",
        "text": "I do what I want, buddy.",
        "renderedHtml": "<div class=\"md\"><p>I do what I want, buddy.</p>\n</div>",
        "score": 1361,
        "upvotes": 1361,
        "createdAt": "2019-01-01T21:12:15.000Z",
        "createdUtc": 1546377135,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1bijh",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1bijh/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1bijh/",
              "parentId": "t1_ed1b3m0",
              "author": "ShoddySubstance",
              "text": "it's not good to hold on to things for too long",
              "renderedHtml": "<div class=\"md\"><p>it&#39;s not good to hold on to things for too long</p>\n</div>",
              "score": 654,
              "upvotes": 654,
              "createdAt": "2019-01-01T21:17:22.000Z",
              "createdUtc": 1546377442,
              "depth": 1,
              "isSubmitter": true,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1ilji",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ilji/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ilji/",
                    "parentId": "t1_ed1bijh",
                    "author": "thrattatarsha",
                    "text": "Tell that to my Les Paul in 60 years.",
                    "renderedHtml": "<div class=\"md\"><p>Tell that to my Les Paul in 60 years.</p>\n</div>",
                    "score": 168,
                    "upvotes": 168,
                    "createdAt": "2019-01-01T22:50:43.000Z",
                    "createdUtc": 1546383043,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1k799",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k799/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k799/",
                          "parentId": "t1_ed1ilji",
                          "author": "tomatoaway",
                          "text": "> Les Paul\n\nFor those who don't know: A Les Paul is a type of lesbian guitar",
                          "renderedHtml": "<div class=\"md\"><blockquote>\n<p>Les Paul</p>\n</blockquote>\n\n<p>For those who don&#39;t know: A Les Paul is a type of lesbian guitar</p>\n</div>",
                          "score": 250,
                          "upvotes": 250,
                          "createdAt": "2019-01-01T23:12:46.000Z",
                          "createdUtc": 1546384366,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [],
                            "page": {
                              "nextCursor": "ed1mbfz,ed1m206,ed1xur1,ed3xxi9",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1jxh4,ed1k31x,ed1m0io",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1l7fc,ed1x0fr",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1bquc,ed1vlbu,ed1l5gd",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1dcgu",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dcgu/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dcgu/",
        "parentId": "t3_ablzuq",
        "author": "DadAsFuck",
        "text": "i’m constipated \n\nEdit: Free Bobby Shmurda",
        "renderedHtml": "<div class=\"md\"><p>i’m constipated </p>\n\n<p>Edit: Free Bobby Shmurda</p>\n</div>",
        "score": 20413,
        "upvotes": 20413,
        "createdAt": "2019-01-01T21:40:00.000Z",
        "createdUtc": 1546378800,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1dfds",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dfds/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dfds/",
              "parentId": "t1_ed1dcgu",
              "author": "ShoddySubstance",
              "text": "**F**",
              "renderedHtml": "<div class=\"md\"><p><strong>F</strong></p>\n</div>",
              "score": 5280,
              "upvotes": 5280,
              "createdAt": "2019-01-01T21:41:04.000Z",
              "createdUtc": 1546378864,
              "depth": 1,
              "isSubmitter": true,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1dle6",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dle6/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dle6/",
                    "parentId": "t1_ed1dfds",
                    "author": "DadAsFuck",
                    "text": "F",
                    "renderedHtml": "<div class=\"md\"><p>F</p>\n</div>",
                    "score": 1527,
                    "upvotes": 1527,
                    "createdAt": "2019-01-01T21:43:12.000Z",
                    "createdUtc": 1546378992,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1ek7p",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ek7p/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ek7p/",
                          "parentId": "t1_ed1dle6",
                          "author": "[deleted]",
                          "text": "F",
                          "renderedHtml": "<div class=\"md\"><p>F</p>\n</div>",
                          "score": 1005,
                          "upvotes": 1005,
                          "createdAt": "2019-01-01T21:55:42.000Z",
                          "createdUtc": 1546379742,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "ed1f8wx",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1f8wx/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1f8wx/",
                                "parentId": "t1_ed1ek7p",
                                "author": "[deleted]",
                                "text": "[deleted]",
                                "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
                                "score": 840,
                                "upvotes": 840,
                                "createdAt": "2019-01-01T22:04:42.000Z",
                                "createdUtc": 1546380282,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [],
                                  "page": {
                                    "nextCursor": "ed1j5ac,ed1n2rl,ed1r7dq,ed1nier,ed1i7an,ed1ky76",
                                    "hasMore": true
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": null,
                              "hasMore": false
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed2akf3,ed1jij9",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1l72j,ed1n5io,ed1jjf9,ed1q5ck,ed1k1eh,ed1k40n,ed1ljqv,ed1lo7t,ed1looa",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1j0f9",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j0f9/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j0f9/",
              "parentId": "t1_ed1dcgu",
              "author": "IceePirate1",
              "text": "Just down a big bottle of tobacco, should clear ya right up. Or these brownies my roommate made, they are really delicious\n\nEdit: Yes I know, I'm not changing it though",
              "renderedHtml": "<div class=\"md\"><p>Just down a big bottle of tobacco, should clear ya right up. Or these brownies my roommate made, they are really delicious</p>\n\n<p>Edit: Yes I know, I&#39;m not changing it though</p>\n</div>",
              "score": 677,
              "upvotes": 677,
              "createdAt": "2019-01-01T22:56:24.000Z",
              "createdUtc": 1546383384,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1jjqr",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jjqr/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jjqr/",
                    "parentId": "t1_ed1j0f9",
                    "author": "LerxstFan",
                    "text": "Did you mean Tabasco? I’m choking trying to swallow this tobacco. ",
                    "renderedHtml": "<div class=\"md\"><p>Did you mean Tabasco? I’m choking trying to swallow this tobacco. </p>\n</div>",
                    "score": 927,
                    "upvotes": 927,
                    "createdAt": "2019-01-01T23:03:52.000Z",
                    "createdUtc": 1546383832,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1jku2",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jku2/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jku2/",
                          "parentId": "t1_ed1jjqr",
                          "author": "IceePirate1",
                          "text": "Both should work",
                          "renderedHtml": "<div class=\"md\"><p>Both should work</p>\n</div>",
                          "score": 319,
                          "upvotes": 319,
                          "createdAt": "2019-01-01T23:04:16.000Z",
                          "createdUtc": 1546383856,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "ed1k4lu",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k4lu/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k4lu/",
                                "parentId": "t1_ed1jku2",
                                "author": "a_fish_out_of_water",
                                "text": "Either one is gonna hurt on the way out ",
                                "renderedHtml": "<div class=\"md\"><p>Either one is gonna hurt on the way out </p>\n</div>",
                                "score": 143,
                                "upvotes": 143,
                                "createdAt": "2019-01-01T23:11:44.000Z",
                                "createdUtc": 1546384304,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [],
                                  "page": {
                                    "nextCursor": "ed1lvr5,ed1m5fk,ed1mu7d",
                                    "hasMore": true
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": "ed1lids,ed1t5up",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1kvsl,ed1s0lo,ed1k1mq,ed1lvrd,ed1mi83,ed1ofhu,ed1ovzl,ed1yauo",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1jp57,ed1kb01,ed1melc,ed1lliw,ed2nkkr,ed1m54r,ed1qnd5",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1jdgx",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jdgx/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jdgx/",
              "parentId": "t1_ed1dcgu",
              "author": "[deleted]",
              "text": "[deleted]",
              "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
              "score": 72,
              "upvotes": 72,
              "createdAt": "2019-01-01T23:01:28.000Z",
              "createdUtc": 1546383688,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed1xppo,ed20ax8",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1j9xv",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j9xv/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j9xv/",
              "parentId": "t1_ed1dcgu",
              "author": "ofteno",
              "text": "I'm the same, it fucking sucks, couldn't enjoy last night party because of it",
              "renderedHtml": "<div class=\"md\"><p>I&#39;m the same, it fucking sucks, couldn&#39;t enjoy last night party because of it</p>\n</div>",
              "score": 150,
              "upvotes": 150,
              "createdAt": "2019-01-01T23:00:06.000Z",
              "createdUtc": 1546383606,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1lco7",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lco7/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1lco7/",
                    "parentId": "t1_ed1j9xv",
                    "author": "PartTimeVelociraptor",
                    "text": "Same here. 😖 There's dozens of us!",
                    "renderedHtml": "<div class=\"md\"><p>Same here. 😖 There&#39;s dozens of us!</p>\n</div>",
                    "score": 27,
                    "upvotes": 27,
                    "createdAt": "2019-01-01T23:28:37.000Z",
                    "createdUtc": 1546385317,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [],
                      "page": {
                        "nextCursor": "ed1llv6",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1mvr0,ed1lqie,ed1nll3,ed1mo2y,ed1lxdj",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1jda5",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jda5/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jda5/",
              "parentId": "t1_ed1dcgu",
              "author": "Shitty_poop_stain",
              "text": "Fiber, coffee, laxatives, repeat.",
              "renderedHtml": "<div class=\"md\"><p>Fiber, coffee, laxatives, repeat.</p>\n</div>",
              "score": 133,
              "upvotes": 133,
              "createdAt": "2019-01-01T23:01:24.000Z",
              "createdUtc": 1546383684,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed1jm9j,ed1q24a,ed1wb8z,ed1rst6,ed1ok2m,ed20xqv",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1jqll,ed1lzah,ed1j4lx,ed1n6c3,ed1jsih,ed1l4dj,ed1nbvt,ed1zzba,ed1k2a9,ed1l39y,ed1l9rv,ed1nr0s,ed1uxlr,ed29aur,ed1ijlm,ed1jssa,ed1jx4f,ed1kumd,ed1l4ou,ed1m715,ed1npsk,ed1nvs7,ed1ke3c,ed1l1oc,ed1md9l,ed1ns2e,ed2lkk6,ed2ck3c,edahih0,ed1in8e,ed1jdxb,ed1k266,ed1ki6s,ed1kmzd,ed1kvzx,ed1kzhh,ed1l413,ed1l43o,ed1l5pm,ed1l7z7,ed1ljkc,ed1lmbi,ed1lpvu,ed1lq2h,ed1lq90,ed1lr2q,ed1ltuo,ed1lvf1,ed1ly0h,ed1lybc,ed1m0pe,ed1m59q,ed1m5sl,ed1mbxx,ed1mhnc,ed1mj9g,ed1mjjk,ed1mkqe,ed1n378,ed1nb5y,ed1ndnh,ed1ne1m,ed1npk5,ed1nqli,ed1nuz3,ed1nw8a,ed1o14j,ed1oc5b,ed1omz4,ed1ozq2,ed1p2gb,ed1ppoo,ed1ptif,ed1ptws,ed1py8p,ed1q0d9,ed1q6h9,ed1r2qr,ed1rdlu,ed1rvks,ed1s76n,ed1svnc,ed1t42j,ed1tpg5,ed1tw7b,ed1vvld,ed1xbtk,ed1xvtx,ed248ph,ed27vyd,ed29cyi,ed2ljml,ed2objz",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1cmb8",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cmb8/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cmb8/",
        "parentId": "t3_ablzuq",
        "author": "_iPood_",
        "text": "Waiting for the Apple Store to open",
        "renderedHtml": "<div class=\"md\"><p>Waiting for the Apple Store to open</p>\n</div>",
        "score": 2989,
        "upvotes": 2989,
        "createdAt": "2019-01-01T21:30:50.000Z",
        "createdUtc": 1546378250,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1cyes",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cyes/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cyes/",
              "parentId": "t1_ed1cmb8",
              "author": "[deleted]",
              "text": "[removed]",
              "renderedHtml": "<div class=\"md\"><p>[removed]</p>\n</div>",
              "score": 1304,
              "upvotes": 1304,
              "createdAt": "2019-01-01T21:34:57.000Z",
              "createdUtc": 1546378497,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed1j8zn,ed1kehe",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1cvap",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cvap/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cvap/",
              "parentId": "t1_ed1cmb8",
              "author": "ShoddySubstance",
              "text": "going to be waiting for a while, want me to send a care package?",
              "renderedHtml": "<div class=\"md\"><p>going to be waiting for a while, want me to send a care package?</p>\n</div>",
              "score": 409,
              "upvotes": 409,
              "createdAt": "2019-01-01T21:33:51.000Z",
              "createdUtc": 1546378431,
              "depth": 1,
              "isSubmitter": true,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed21rzp",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1jnka,ed1jbie,ed1lblx,ed1lc34",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1dp7k",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dp7k/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dp7k/",
        "parentId": "t3_ablzuq",
        "author": "Fushigibama",
        "text": "Let’s see who can go the longest in 2019 without taking a shit\n\nEdit: This blew up..",
        "renderedHtml": "<div class=\"md\"><p>Let’s see who can go the longest in 2019 without taking a shit</p>\n\n<p>Edit: This blew up..</p>\n</div>",
        "score": 15839,
        "upvotes": 15839,
        "createdAt": "2019-01-01T21:44:32.000Z",
        "createdUtc": 1546379072,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1j1yj",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j1yj/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j1yj/",
              "parentId": "t1_ed1dp7k",
              "author": "[deleted]",
              "text": "r/opiates is probably gonna win that one. ",
              "renderedHtml": "<div class=\"md\"><p><a href=\"/r/opiates\">r/opiates</a> is probably gonna win that one. </p>\n</div>",
              "score": 13722,
              "upvotes": 13722,
              "createdAt": "2019-01-01T22:57:00.000Z",
              "createdUtc": 1546383420,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1p3mm",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1p3mm/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1p3mm/",
                    "parentId": "t1_ed1j1yj",
                    "author": "Mermaidfishbitch",
                    "text": "Yeah... I'm on Oxycodone because I had my tonsils taken out. Haven't pooped in 7 days... I don't feel constipated though. I've been on mostly a liquid diet.",
                    "renderedHtml": "<div class=\"md\"><p>Yeah... I&#39;m on Oxycodone because I had my tonsils taken out. Haven&#39;t pooped in 7 days... I don&#39;t feel constipated though. I&#39;ve been on mostly a liquid diet.</p>\n</div>",
                    "score": 3797,
                    "upvotes": 3797,
                    "createdAt": "2019-01-02T00:20:06.000Z",
                    "createdUtc": 1546388406,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1qmkp",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1qmkp/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1qmkp/",
                          "parentId": "t1_ed1p3mm",
                          "author": "porky2468",
                          "text": "I was on morphine (after breaking my leg and having surgery) for a week without any laxatives. I think it was 7-10 days before I pooped and it was horrible!!! At one point I couldn't push anymore and my butt tried sucking it back up. Had to break that shit off because I'd gone through so much trying to get it out. \n\nFor my following surgery I was on oxy and made sure I was given laxatives. I did not want to go through that again. ",
                          "renderedHtml": "<div class=\"md\"><p>I was on morphine (after breaking my leg and having surgery) for a week without any laxatives. I think it was 7-10 days before I pooped and it was horrible!!! At one point I couldn&#39;t push anymore and my butt tried sucking it back up. Had to break that shit off because I&#39;d gone through so much trying to get it out. </p>\n\n<p>For my following surgery I was on oxy and made sure I was given laxatives. I did not want to go through that again. </p>\n</div>",
                          "score": 1865,
                          "upvotes": 1865,
                          "createdAt": "2019-01-02T00:41:27.000Z",
                          "createdUtc": 1546389687,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "ed1rqvd",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1rqvd/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1rqvd/",
                                "parentId": "t1_ed1qmkp",
                                "author": "[deleted]",
                                "text": "[removed]",
                                "renderedHtml": "<div class=\"md\"><p>[removed]</p>\n</div>",
                                "score": 1820,
                                "upvotes": 1820,
                                "createdAt": "2019-01-02T00:57:29.000Z",
                                "createdUtc": 1546390649,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [
                                    {
                                      "id": "ed1rs6p",
                                      "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1rs6p/",
                                      "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1rs6p/",
                                      "parentId": "t1_ed1rqvd",
                                      "author": "porky2468",
                                      "text": "Man, I wish I'd had a poop knife!",
                                      "renderedHtml": "<div class=\"md\"><p>Man, I wish I&#39;d had a poop knife!</p>\n</div>",
                                      "score": 752,
                                      "upvotes": 752,
                                      "createdAt": "2019-01-02T00:58:01.000Z",
                                      "createdUtc": 1546390681,
                                      "depth": 5,
                                      "isSubmitter": false,
                                      "stickied": false,
                                      "locked": false,
                                      "distinguished": null,
                                      "replies": {
                                        "items": [
                                          {
                                            "id": "ed1sq2a",
                                            "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1sq2a/",
                                            "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1sq2a/",
                                            "parentId": "t1_ed1rs6p",
                                            "author": "scatTURDaye",
                                            "text": "Since it's still inside I would recommend a poop spoon.  You have less chance of damaging your poop hole.",
                                            "renderedHtml": "<div class=\"md\"><p>Since it&#39;s still inside I would recommend a poop spoon.  You have less chance of damaging your poop hole.</p>\n</div>",
                                            "score": 685,
                                            "upvotes": 685,
                                            "createdAt": "2019-01-02T01:11:31.000Z",
                                            "createdUtc": 1546391491,
                                            "depth": 6,
                                            "isSubmitter": false,
                                            "stickied": false,
                                            "locked": false,
                                            "distinguished": null,
                                            "replies": {
                                              "items": [
                                                {
                                                  "id": "ed1t704",
                                                  "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1t704/",
                                                  "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1t704/",
                                                  "parentId": "t1_ed1sq2a",
                                                  "author": "somecow",
                                                  "text": "Or just a shop vac. Go hard or go home.",
                                                  "renderedHtml": "<div class=\"md\"><p>Or just a shop vac. Go hard or go home.</p>\n</div>",
                                                  "score": 655,
                                                  "upvotes": 655,
                                                  "createdAt": "2019-01-02T01:18:20.000Z",
                                                  "createdUtc": 1546391900,
                                                  "depth": 7,
                                                  "isSubmitter": false,
                                                  "stickied": false,
                                                  "locked": false,
                                                  "distinguished": null,
                                                  "replies": {
                                                    "items": [
                                                      {
                                                        "id": "ed1w27i",
                                                        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1w27i/",
                                                        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1w27i/",
                                                        "parentId": "t1_ed1t704",
                                                        "author": "Arkose07",
                                                        "text": "You’re just one shop vac accident away from anal prolapse.",
                                                        "renderedHtml": "<div class=\"md\"><p>You’re just one shop vac accident away from anal prolapse.</p>\n</div>",
                                                        "score": 349,
                                                        "upvotes": 349,
                                                        "createdAt": "2019-01-02T02:00:14.000Z",
                                                        "createdUtc": 1546394414,
                                                        "depth": 8,
                                                        "isSubmitter": false,
                                                        "stickied": false,
                                                        "locked": false,
                                                        "distinguished": null,
                                                        "replies": {
                                                          "items": [
                                                            {
                                                              "id": "ed1wdg0",
                                                              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1wdg0/",
                                                              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1wdg0/",
                                                              "parentId": "t1_ed1w27i",
                                                              "author": "Painting_Agency",
                                                              "text": "I saw a video once where this... no, never mind.",
                                                              "renderedHtml": "<div class=\"md\"><p>I saw a video once where this... no, never mind.</p>\n</div>",
                                                              "score": 171,
                                                              "upvotes": 171,
                                                              "createdAt": "2019-01-02T02:04:53.000Z",
                                                              "createdUtc": 1546394693,
                                                              "depth": 9,
                                                              "isSubmitter": false,
                                                              "stickied": false,
                                                              "locked": false,
                                                              "distinguished": null,
                                                              "replies": {
                                                                "items": [],
                                                                "page": {
                                                                  "nextCursor": null,
                                                                  "hasMore": false
                                                                }
                                                              }
                                                            },
                                                            {
                                                              "id": "ed1xfw5",
                                                              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1xfw5/",
                                                              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1xfw5/",
                                                              "parentId": "t1_ed1w27i",
                                                              "author": "[deleted]",
                                                              "text": "Who said it was an accident? ",
                                                              "renderedHtml": "<div class=\"md\"><p>Who said it was an accident? </p>\n</div>",
                                                              "score": 35,
                                                              "upvotes": 35,
                                                              "createdAt": "2019-01-02T02:20:31.000Z",
                                                              "createdUtc": 1546395631,
                                                              "depth": 9,
                                                              "isSubmitter": false,
                                                              "stickied": false,
                                                              "locked": false,
                                                              "distinguished": null,
                                                              "replies": {
                                                                "items": [],
                                                                "page": {
                                                                  "nextCursor": null,
                                                                  "hasMore": false
                                                                }
                                                              }
                                                            }
                                                          ],
                                                          "page": {
                                                            "nextCursor": "ed1yath,ed2cu1p",
                                                            "hasMore": true
                                                          }
                                                        }
                                                      }
                                                    ],
                                                    "page": {
                                                      "nextCursor": "ed1x5yv,ed1ww4d,ed21nfj,ed1zlu5,ed2che3,ed25hu1",
                                                      "hasMore": true
                                                    }
                                                  }
                                                }
                                              ],
                                              "page": {
                                                "nextCursor": "ed1tqd0,ed1srw0,ed1wb3f,ed1vnrw,ed1wc3n,ed1wr63,ed1xqb5,ed1x52f,ed1z7v8,ed2na3o,ed1ycnx,ed1zr87,ed1zwhk,ed22jf5,ed24c02",
                                                "hasMore": true
                                              }
                                            }
                                          }
                                        ],
                                        "page": {
                                          "nextCursor": "ed1y41k,ed1xtoc,ed2006k,ed1tz92,ed26rh6,ed270d5,ed29gfr",
                                          "hasMore": true
                                        }
                                      }
                                    }
                                  ],
                                  "page": {
                                    "nextCursor": "ed1w6l3,ed1w7ok,ed1tj6u,ed1wg7o,ed1u4d4,ed1wjz0,ed1wzf1,ed20giv,ed21pxu,ed1szpz,ed1xgrj,ed1xnz6,ed2187a,ed222kn,ed22tzj,ed28o39,ed2ckat,ed1u2e4,ed20frc,ed20hu7,ed20trh,ed2475g,ed24gie,ed27kna,ed27le9,ed2893q",
                                    "hasMore": true
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": "ed1u588,ed1tn9r,ed1ukek,ed1tgef,ed1vqma,ed224oc,ed1z5zu,ed1wsa7,ed21l7s,ed22dtq,ed1u1aq,ed1wtyj,ed1ylp4,ed20bp8,ed23dc4,ed243sh,ed26fqd,ed1uzhx,ed2a3o4,ed1xuw6,ed1yq45,ed1yvkc,ed1zbge,ed25ndt,ed282yf,ed2942a",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1qtcb,ed1tl3i,ed1xtg8,ed1shzg,ed20g4g,ed1q1yy,ed1uwq0,ed1va4v,ed1w1f6,ed1tp8a,ed1x0fu,ed1zgp3,ed1sufg,ed2bfig,ed1tyah,ed1ue1r,ed1vsi3,ed1vu8p,ed1w74u,ed1wdl8,ed1wvy7,ed1yof2,ed1ywpn,ed20ji1,ed20wbe,ed210mp,ed212is,ed218l9,ed21df3,ed21e0n,ed21egs,ed21plj,ed223gf,ed224i7,ed2268e,ed227fr,ed22d07,ed23len,ed23m22,ed23qjb,ed24ftu,ed253xh,ed254i5,ed25unh,ed28cn3,ed28cov,ed28qkb,ed29kla,ed29vpi,ed2a8fu,ed2bcc0,ed2be4p,ed2bf64",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1qgvt,ed1wo4n,ed1qny5,ed1urnw,ed1uq5h,ed1vre3,ed21o2f,ed21u4f,ed25wmt,ed1mlp0,ed1uayu,ed1vxow,ed2200b,ed26s7h,ed1u4j0,ed1u98l,ed1urg4,ed1wfv7,ed1rx36,ed1tz0i,ed1u2qz,ed1v0ho,ed1v50h,ed1wnoi,ed2tk4u,ed1x0pf,ed1xdad,ed1ymfz,ed1yt5s,ed1z3i7,ed1zg7x,ed1zx72,ed21p08,ed21p60,ed2226p,ed22hnm,ed243q6,ed24ogn,ed253ak,ed26evy,ed27mik,ed29832,ed2b6e8,ed2tjpn",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1in4r",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1in4r/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1in4r/",
              "parentId": "t1_ed1dp7k",
              "author": "HillarysDoubleChin",
              "text": "I remember when I went to camp as a kid, I didn't poop the entire time. 1 full week. I didn't even know that was possible, but I just didn't have to go.",
              "renderedHtml": "<div class=\"md\"><p>I remember when I went to camp as a kid, I didn&#39;t poop the entire time. 1 full week. I didn&#39;t even know that was possible, but I just didn&#39;t have to go.</p>\n</div>",
              "score": 1145,
              "upvotes": 1145,
              "createdAt": "2019-01-01T22:51:18.000Z",
              "createdUtc": 1546383078,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1iz35",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iz35/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iz35/",
                    "parentId": "t1_ed1in4r",
                    "author": "PM_ME_GOOD_FEELS",
                    "text": "Ive been there chief. Took a 9 day trip to NYC including travel time. Didnt poop once, ate three meals a day. Just didn't need to go. ",
                    "renderedHtml": "<div class=\"md\"><p>Ive been there chief. Took a 9 day trip to NYC including travel time. Didnt poop once, ate three meals a day. Just didn&#39;t need to go. </p>\n</div>",
                    "score": 787,
                    "upvotes": 787,
                    "createdAt": "2019-01-01T22:55:52.000Z",
                    "createdUtc": 1546383352,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1j73t",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j73t/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j73t/",
                          "parentId": "t1_ed1iz35",
                          "author": "HellInOurHearts",
                          "text": "Did you drop a 50lb log after getting home, or was it spread out over several quick shits in one day?",
                          "renderedHtml": "<div class=\"md\"><p>Did you drop a 50lb log after getting home, or was it spread out over several quick shits in one day?</p>\n</div>",
                          "score": 658,
                          "upvotes": 658,
                          "createdAt": "2019-01-01T22:59:00.000Z",
                          "createdUtc": 1546383540,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "ed1joy6",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1joy6/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1joy6/",
                                "parentId": "t1_ed1j73t",
                                "author": "PM_ME_GOOD_FEELS",
                                "text": "I didnt deuce for a day or two after I got back, then it was two of em like fat man & little boy. Then back to normal",
                                "renderedHtml": "<div class=\"md\"><p>I didnt deuce for a day or two after I got back, then it was two of em like fat man &amp; little boy. Then back to normal</p>\n</div>",
                                "score": 1263,
                                "upvotes": 1263,
                                "createdAt": "2019-01-01T23:05:51.000Z",
                                "createdUtc": 1546383951,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [
                                    {
                                      "id": "ed1jqqq",
                                      "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jqqq/",
                                      "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jqqq/",
                                      "parentId": "t1_ed1joy6",
                                      "author": "HellInOurHearts",
                                      "text": "Respect.",
                                      "renderedHtml": "<div class=\"md\"><p>Respect.</p>\n</div>",
                                      "score": 519,
                                      "upvotes": 519,
                                      "createdAt": "2019-01-01T23:06:31.000Z",
                                      "createdUtc": 1546383991,
                                      "depth": 5,
                                      "isSubmitter": false,
                                      "stickied": false,
                                      "locked": false,
                                      "distinguished": null,
                                      "replies": {
                                        "items": [],
                                        "page": {
                                          "nextCursor": "ed1qc3r,ed223x1",
                                          "hasMore": true
                                        }
                                      }
                                    },
                                    {
                                      "id": "ed1kkn5",
                                      "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kkn5/",
                                      "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kkn5/",
                                      "parentId": "t1_ed1joy6",
                                      "author": "Singing_Sea_Shanties",
                                      "text": "Glad it worked out that way. Could have led to impacted stool. Not fun. I assume.",
                                      "renderedHtml": "<div class=\"md\"><p>Glad it worked out that way. Could have led to impacted stool. Not fun. I assume.</p>\n</div>",
                                      "score": 142,
                                      "upvotes": 142,
                                      "createdAt": "2019-01-01T23:17:52.000Z",
                                      "createdUtc": 1546384672,
                                      "depth": 5,
                                      "isSubmitter": false,
                                      "stickied": false,
                                      "locked": false,
                                      "distinguished": null,
                                      "replies": {
                                        "items": [
                                          {
                                            "id": "ed1mqcb",
                                            "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1mqcb/",
                                            "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1mqcb/",
                                            "parentId": "t1_ed1kkn5",
                                            "author": "halfdoublepurl",
                                            "text": "It’s awful. I got impacted the last time I was pregnant. No one told me prenatal pills and pregnancy slowing your digestive system causes constipation and you should take something if you haven’t shit in a few days. I went a week, and had to be disimpacted.",
                                            "renderedHtml": "<div class=\"md\"><p>It’s awful. I got impacted the last time I was pregnant. No one told me prenatal pills and pregnancy slowing your digestive system causes constipation and you should take something if you haven’t shit in a few days. I went a week, and had to be disimpacted.</p>\n</div>",
                                            "score": 168,
                                            "upvotes": 168,
                                            "createdAt": "2019-01-01T23:47:30.000Z",
                                            "createdUtc": 1546386450,
                                            "depth": 6,
                                            "isSubmitter": false,
                                            "stickied": false,
                                            "locked": false,
                                            "distinguished": null,
                                            "replies": {
                                              "items": [
                                                {
                                                  "id": "ed1n4tq",
                                                  "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1n4tq/",
                                                  "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1n4tq/",
                                                  "parentId": "t1_ed1mqcb",
                                                  "author": "anthony785",
                                                  "text": "Disimpacted?????",
                                                  "renderedHtml": "<div class=\"md\"><p>Disimpacted?????</p>\n</div>",
                                                  "score": 93,
                                                  "upvotes": 93,
                                                  "createdAt": "2019-01-01T23:53:00.000Z",
                                                  "createdUtc": 1546386780,
                                                  "depth": 7,
                                                  "isSubmitter": false,
                                                  "stickied": false,
                                                  "locked": false,
                                                  "distinguished": null,
                                                  "replies": {
                                                    "items": [
                                                      {
                                                        "id": "ed1nyb8",
                                                        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1nyb8/",
                                                        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1nyb8/",
                                                        "parentId": "t1_ed1n4tq",
                                                        "author": "[deleted]",
                                                        "text": "Someone gets to reach in you and get it out. Yes thats exactly what it sounds like.",
                                                        "renderedHtml": "<div class=\"md\"><p>Someone gets to reach in you and get it out. Yes thats exactly what it sounds like.</p>\n</div>",
                                                        "score": 163,
                                                        "upvotes": 163,
                                                        "createdAt": "2019-01-02T00:03:56.000Z",
                                                        "createdUtc": 1546387436,
                                                        "depth": 8,
                                                        "isSubmitter": false,
                                                        "stickied": false,
                                                        "locked": false,
                                                        "distinguished": null,
                                                        "replies": {
                                                          "items": [
                                                            {
                                                              "id": "ed1u7qa",
                                                              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1u7qa/",
                                                              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1u7qa/",
                                                              "parentId": "t1_ed1nyb8",
                                                              "author": "conspicuous86",
                                                              "text": "Doctor here. Yes, it’s exactly what it sounds like. It’s usually saved as a very very last resort (after enemas fail). Don’t worry, lots and lots of lube is used.\n\nFun fact: it’s the one of the things they “let” the medical student do. (More like force) Fortunately, I survived my medical training without having to do one. Probably because I have huge hands.",
                                                              "renderedHtml": "<div class=\"md\"><p>Doctor here. Yes, it’s exactly what it sounds like. It’s usually saved as a very very last resort (after enemas fail). Don’t worry, lots and lots of lube is used.</p>\n\n<p>Fun fact: it’s the one of the things they “let” the medical student do. (More like force) Fortunately, I survived my medical training without having to do one. Probably because I have huge hands.</p>\n</div>",
                                                              "score": 205,
                                                              "upvotes": 205,
                                                              "createdAt": "2019-01-02T01:33:07.000Z",
                                                              "createdUtc": 1546392787,
                                                              "depth": 9,
                                                              "isSubmitter": false,
                                                              "stickied": false,
                                                              "locked": false,
                                                              "distinguished": null,
                                                              "replies": {
                                                                "items": [],
                                                                "page": {
                                                                  "nextCursor": null,
                                                                  "hasMore": false
                                                                }
                                                              }
                                                            }
                                                          ],
                                                          "page": {
                                                            "nextCursor": "ed1xlmg,ed1zj7r,ed1vc07,ed22iuf,ed1wpbg,ed1ym62,ed1sxmd",
                                                            "hasMore": true
                                                          }
                                                        }
                                                      }
                                                    ],
                                                    "page": {
                                                      "nextCursor": "ed1pa0e,ed1wrkk,ed1wybo",
                                                      "hasMore": true
                                                    }
                                                  }
                                                }
                                              ],
                                              "page": {
                                                "nextCursor": "ed1u303,ed1rgx9,ed1wdhr,ed1wx52,ed25pjj,ed1z6wh,ed26vmm",
                                                "hasMore": true
                                              }
                                            }
                                          }
                                        ],
                                        "page": {
                                          "nextCursor": "ed1q9om",
                                          "hasMore": true
                                        }
                                      }
                                    }
                                  ],
                                  "page": {
                                    "nextCursor": "ed1mslf,ed1kz0r,ed1v1jz,ed1mety,ed25qyn,eq94t7w,ed1mxek,ed1n2vq,ed1oywd,ed1wl5m,ed22jqx,ed240ct,ed2hewy,ed2s2u7",
                                    "hasMore": true
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": null,
                              "hasMore": false
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1lcqy,ed1w43k,ed1ni64,ed1n3nk,ed1t473,ed1t7h6,ed1lfeo,ed24pap,ed1ujss,ed1w5ij",
                        "hasMore": true
                      }
                    }
                  },
                  {
                    "id": "ed1ixf5",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ixf5/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ixf5/",
                    "parentId": "t1_ed1in4r",
                    "author": "[deleted]",
                    "text": "[deleted]",
                    "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
                    "score": 172,
                    "upvotes": 172,
                    "createdAt": "2019-01-01T22:55:14.000Z",
                    "createdUtc": 1546383314,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [],
                      "page": {
                        "nextCursor": "ed1kfxy,ed1kodk,ed20296,ed1xw6o",
                        "hasMore": true
                      }
                    }
                  },
                  {
                    "id": "ed1j59g",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j59g/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j59g/",
                    "parentId": "t1_ed1in4r",
                    "author": "[deleted]",
                    "text": "Amateurs! I've done 14 days personal record. Would not recommend.",
                    "renderedHtml": "<div class=\"md\"><p>Amateurs! I&#39;ve done 14 days personal record. Would not recommend.</p>\n</div>",
                    "score": 236,
                    "upvotes": 236,
                    "createdAt": "2019-01-01T22:58:18.000Z",
                    "createdUtc": 1546383498,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1jqm9",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jqm9/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jqm9/",
                          "parentId": "t1_ed1j59g",
                          "author": "[deleted]",
                          "text": "[deleted]",
                          "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
                          "score": 225,
                          "upvotes": 225,
                          "createdAt": "2019-01-01T23:06:28.000Z",
                          "createdUtc": 1546383988,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "ed1kbnc",
                                "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kbnc/",
                                "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kbnc/",
                                "parentId": "t1_ed1jqm9",
                                "author": "[deleted]",
                                "text": "32 days. Not great",
                                "renderedHtml": "<div class=\"md\"><p>32 days. Not great</p>\n</div>",
                                "score": 143,
                                "upvotes": 143,
                                "createdAt": "2019-01-01T23:14:25.000Z",
                                "createdUtc": 1546384465,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [
                                    {
                                      "id": "ed1kp6l",
                                      "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kp6l/",
                                      "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kp6l/",
                                      "parentId": "t1_ed1kbnc",
                                      "author": "[deleted]",
                                      "text": "[deleted]",
                                      "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
                                      "score": 168,
                                      "upvotes": 168,
                                      "createdAt": "2019-01-01T23:19:39.000Z",
                                      "createdUtc": 1546384779,
                                      "depth": 5,
                                      "isSubmitter": false,
                                      "stickied": false,
                                      "locked": false,
                                      "distinguished": null,
                                      "replies": {
                                        "items": [
                                          {
                                            "id": "ed1vj8w",
                                            "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1vj8w/",
                                            "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1vj8w/",
                                            "parentId": "t1_ed1kp6l",
                                            "author": "iamevilcupcake",
                                            "text": "Eat. Pray. Shit.",
                                            "renderedHtml": "<div class=\"md\"><p>Eat. Pray. Shit.</p>\n</div>",
                                            "score": 85,
                                            "upvotes": 85,
                                            "createdAt": "2019-01-02T01:52:25.000Z",
                                            "createdUtc": 1546393945,
                                            "depth": 6,
                                            "isSubmitter": false,
                                            "stickied": false,
                                            "locked": false,
                                            "distinguished": null,
                                            "replies": {
                                              "items": [],
                                              "page": {
                                                "nextCursor": "ed1wx7r",
                                                "hasMore": true
                                              }
                                            }
                                          }
                                        ],
                                        "page": {
                                          "nextCursor": "eiorptk",
                                          "hasMore": true
                                        }
                                      }
                                    }
                                  ],
                                  "page": {
                                    "nextCursor": "ed1niwc,ed1p52o,ed1wkzw,ed221yh,ed1njer,ed1xgy6,ed1nhep,ed1q3pl,ed2oeno,ed1yuzl",
                                    "hasMore": true
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": "ed1k04q,ed1pcvr,ed1ohkh,ed1zxyr,ed1u3ou",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": null,
                        "hasMore": false
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1ki6h,ed1n8hr,ed1st8n,ed1moda,ed1pgok,ed1vmry,ed1yzr1,ed1ny24,ed1nsxh,ed1w13n,ed1wtyf,ed1zuwt,ed27x4z,ed1l4mu,ed1l3s6,ed1oafp,ed1p5bz,ed1x7l6,ed1xwn7,ed1z6bp,ed249zh,ed28zef,ed2x6b1,ed1khr5,ed1n8v7,ed1oidi,ed1sct5,ed1vnm4,ed1yc4b,ed2666u,ed2j1bj,edqll8n",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1jf7g",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jf7g/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jf7g/",
              "parentId": "t1_ed1dp7k",
              "author": "PM_ME_UR_LUNCH",
              "text": "There was that one chick that posted (I think in the beginning of the year) that hadn't pooped for like 2 weeks or something. Looked like she was pregnant.\n\nLet me see if I can find the post.\n\nEdit: found it...kinda nsfw\n\nhttps://www.reddit.com/r/WTF/comments/4ayeqk/i_havent_pooped_in_two_and_a_half_weeks_mild_nsfw/",
              "renderedHtml": "<div class=\"md\"><p>There was that one chick that posted (I think in the beginning of the year) that hadn&#39;t pooped for like 2 weeks or something. Looked like she was pregnant.</p>\n\n<p>Let me see if I can find the post.</p>\n\n<p>Edit: found it...kinda nsfw</p>\n\n<p><a href=\"https://www.reddit.com/r/WTF/comments/4ayeqk/i_havent_pooped_in_two_and_a_half_weeks_mild_nsfw/\">https://www.reddit.com/r/WTF/comments/4ayeqk/i_havent_pooped_in_two_and_a_half_weeks_mild_nsfw/</a></p>\n</div>",
              "score": 143,
              "upvotes": 143,
              "createdAt": "2019-01-01T23:02:08.000Z",
              "createdUtc": 1546383728,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed1t0s5,ed1yjy9",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1k9mw,ed1jja6,ed1j01m,ed1jqp8,ed1k6pw,ed1nnw3,ed23024,ed1ldep,ed1vzjx,ed2pdp5,ed9kjy8,ed1jzus,ed1kuxo,ed1lsrz,ed1mfu9,ed1mpdh,ed1oej8,ed1r656,ed1ruau,ed1t1w1,ed1tdh1,ed1tsux,ed1uhb1,ed1uqm5,ed1us79,ed1vh50,ed1vokr,ed1vve6,ed1vvyx,ed1w087,ed1w6l8,ed1w8aa,ed1wcws,ed1weqo,ed1wjk3,ed1wote,ed1wtxr,ed1wypy,ed1x2q9,ed1x4xx,ed1x701,ed1ximj,ed1xm8c,ed1ys75,ed1z4ao,ed1zfnw,ed1zfov,ed20vwp,ed20y9x,ed20zu7,ed21gbv,ed21s9w,ed21sbx,ed21vw4,ed220a3,ed23794,ed238ww,ed24pv5,ed24tm9,ed255ln,ed25lun,ed27gal,ed27sga,ed284fx,ed28a6o,ed28l56,ed298zs,ed2b23k,ed2cbbi,ed2dboh",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1dhka",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dhka/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dhka/",
        "parentId": "t3_ablzuq",
        "author": "[deleted]",
        "text": "[deleted]",
        "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
        "score": 141,
        "upvotes": 141,
        "createdAt": "2019-01-01T21:41:51.000Z",
        "createdUtc": 1546378911,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": "ed1s041,ed2qvds",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1cskg",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cskg/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cskg/",
        "parentId": "t3_ablzuq",
        "author": "FourEyesWhitePerson",
        "text": "My therapist says it’s because I have a hard time letting things go ",
        "renderedHtml": "<div class=\"md\"><p>My therapist says it’s because I have a hard time letting things go </p>\n</div>",
        "score": 1672,
        "upvotes": 1672,
        "createdAt": "2019-01-01T21:32:53.000Z",
        "createdUtc": 1546378373,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1d1h7",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1d1h7/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1d1h7/",
              "parentId": "t1_ed1cskg",
              "author": "ShoddySubstance",
              "text": "I'll hold your hand to help you out",
              "renderedHtml": "<div class=\"md\"><p>I&#39;ll hold your hand to help you out</p>\n</div>",
              "score": 785,
              "upvotes": 785,
              "createdAt": "2019-01-01T21:36:04.000Z",
              "createdUtc": 1546378564,
              "depth": 1,
              "isSubmitter": true,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1jsp7",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jsp7/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jsp7/",
                    "parentId": "t1_ed1d1h7",
                    "author": "pipsdontsqueak",
                    "text": "*I can be your hero, baby.*",
                    "renderedHtml": "<div class=\"md\"><p><em>I can be your hero, baby.</em></p>\n</div>",
                    "score": 191,
                    "upvotes": 191,
                    "createdAt": "2019-01-01T23:07:17.000Z",
                    "createdUtc": 1546384037,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [],
                      "page": {
                        "nextCursor": "ed1ojg2",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1l0ty,ed1nomp,ed24n8o,ed1mvcg,ed1z4du",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1iebm",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iebm/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iebm/",
              "parentId": "t1_ed1cskg",
              "author": "berniemax",
              "text": "Is your username an play on BlueEyesWhiteDragon from Yu-Gi-Óh?",
              "renderedHtml": "<div class=\"md\"><p>Is your username an play on BlueEyesWhiteDragon from Yu-Gi-Óh?</p>\n</div>",
              "score": 307,
              "upvotes": 307,
              "createdAt": "2019-01-01T22:47:57.000Z",
              "createdUtc": 1546382877,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1jzop",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jzop/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jzop/",
                    "parentId": "t1_ed1iebm",
                    "author": "FourEyesWhitePerson",
                    "text": "Yes and you’re the first person to ever realize that without me telling!",
                    "renderedHtml": "<div class=\"md\"><p>Yes and you’re the first person to ever realize that without me telling!</p>\n</div>",
                    "score": 284,
                    "upvotes": 284,
                    "createdAt": "2019-01-01T23:09:52.000Z",
                    "createdUtc": 1546384192,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [],
                      "page": {
                        "nextCursor": "ed1k6dl,ed1om6h,efzchfz,ed1v354",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1jlfx,ed1jr4m,ed8qs4p",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1ivyj,eiorqzo,ed1k4gm,ed1pay6,ed1qjwc,ed2akts",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1do9u",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1do9u/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1do9u/",
        "parentId": "t3_ablzuq",
        "author": "NoAffect4",
        "text": "IT WON'T COME OUT. I need help :(",
        "renderedHtml": "<div class=\"md\"><p>IT WON&#39;T COME OUT. I need help :(</p>\n</div>",
        "score": 393,
        "upvotes": 393,
        "createdAt": "2019-01-01T21:44:12.000Z",
        "createdUtc": 1546379052,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1dsn9",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dsn9/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dsn9/",
              "parentId": "t1_ed1do9u",
              "author": "ShoddySubstance",
              "text": "**PUSH**, but don't forget to breathe in between pushes . he he ho ho",
              "renderedHtml": "<div class=\"md\"><p><strong>PUSH</strong>, but don&#39;t forget to breathe in between pushes . he he ho ho</p>\n</div>",
              "score": 326,
              "upvotes": 326,
              "createdAt": "2019-01-01T21:45:47.000Z",
              "createdUtc": 1546379147,
              "depth": 1,
              "isSubmitter": true,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1jt3t",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jt3t/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jt3t/",
                    "parentId": "t1_ed1dsn9",
                    "author": "kookiemnstr",
                    "text": "But don't push too hard....hernias are a real thing.",
                    "renderedHtml": "<div class=\"md\"><p>But don&#39;t push too hard....hernias are a real thing.</p>\n</div>",
                    "score": 170,
                    "upvotes": 170,
                    "createdAt": "2019-01-01T23:07:26.000Z",
                    "createdUtc": 1546384046,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1k52y",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k52y/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1k52y/",
                          "parentId": "t1_ed1jt3t",
                          "author": "radwimps",
                          "text": "hemorrhoids too",
                          "renderedHtml": "<div class=\"md\"><p>hemorrhoids too</p>\n</div>",
                          "score": 136,
                          "upvotes": 136,
                          "createdAt": "2019-01-01T23:11:56.000Z",
                          "createdUtc": 1546384316,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [],
                            "page": {
                              "nextCursor": "ed1pszl",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1s69k,ed26c57,ed1lt7z",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1m1fb,ed1karx,ed2c3ml",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1e2ak",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e2ak/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e2ak/",
              "parentId": "t1_ed1do9u",
              "author": "[deleted]",
              "text": "Drink some water, eat some fiber, take a walk",
              "renderedHtml": "<div class=\"md\"><p>Drink some water, eat some fiber, take a walk</p>\n</div>",
              "score": 69,
              "upvotes": 69,
              "createdAt": "2019-01-01T21:49:19.000Z",
              "createdUtc": 1546379359,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed1p054,ed1oa2o",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1kg1g,ed1ksed,ed2irdj,ed1lisu,ed1mgb4,ed1nzg3,ed1qqdl,ed1twjc,ed1y9gb,ed20aba,ed227r3",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1bxsi",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1bxsi/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1bxsi/",
        "parentId": "t3_ablzuq",
        "author": "junk-trunk",
        "text": "...huh.. i just realized i haven't pooped today.\n\nEdit: obligatory thanks for the gold n' sliver. And my most upvoted comment is about poopin'  #hashtag!!1! blessed",
        "renderedHtml": "<div class=\"md\"><p>...huh.. i just realized i haven&#39;t pooped today.</p>\n\n<p>Edit: obligatory thanks for the gold n&#39; sliver. And my most upvoted comment is about poopin&#39;  #hashtag!!1! blessed</p>\n</div>",
        "score": 15299,
        "upvotes": 15299,
        "createdAt": "2019-01-01T21:22:40.000Z",
        "createdUtc": 1546377760,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1c4xr",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1c4xr/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1c4xr/",
              "parentId": "t1_ed1bxsi",
              "author": "ShoddySubstance",
              "text": "make a pot a coffee and give it 10 minutes\n\n**edit** thanks for the gold!",
              "renderedHtml": "<div class=\"md\"><p>make a pot a coffee and give it 10 minutes</p>\n\n<p><strong>edit</strong> thanks for the gold!</p>\n</div>",
              "score": 6225,
              "upvotes": 6225,
              "createdAt": "2019-01-01T21:25:04.000Z",
              "createdUtc": 1546377904,
              "depth": 1,
              "isSubmitter": true,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1et09",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1et09/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1et09/",
                    "parentId": "t1_ed1c4xr",
                    "author": "junk-trunk",
                    "text": "I am definitely a coffee pooper. I work nights so i haven't been up too long. Time to get cracking on making some butt brownies.",
                    "renderedHtml": "<div class=\"md\"><p>I am definitely a coffee pooper. I work nights so i haven&#39;t been up too long. Time to get cracking on making some butt brownies.</p>\n</div>",
                    "score": 1443,
                    "upvotes": 1443,
                    "createdAt": "2019-01-01T21:58:54.000Z",
                    "createdUtc": 1546379934,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1l089",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1l089/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1l089/",
                          "parentId": "t1_ed1et09",
                          "author": "NuclearInitiate",
                          "text": "> butt brownies.\n\nThere's something I wish I could erase from my memory. ",
                          "renderedHtml": "<div class=\"md\"><blockquote>\n<p>butt brownies.</p>\n</blockquote>\n\n<p>There&#39;s something I wish I could erase from my memory. </p>\n</div>",
                          "score": 556,
                          "upvotes": 556,
                          "createdAt": "2019-01-01T23:23:55.000Z",
                          "createdUtc": 1546385035,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [],
                            "page": {
                              "nextCursor": "ed1p26t,ed21o6q,ed1m4xv,ed1pcp7,ed1mu2l,ed1w3qq",
                              "hasMore": true
                            }
                          }
                        },
                        {
                          "id": "ed1ju3o",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ju3o/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ju3o/",
                          "parentId": "t1_ed1et09",
                          "author": "CRAZYPOULTRY",
                          "text": "Just need to throw a giant fuck you to midnights in here.  I hate rarely seeing the sun.  ",
                          "renderedHtml": "<div class=\"md\"><p>Just need to throw a giant fuck you to midnights in here.  I hate rarely seeing the sun.  </p>\n</div>",
                          "score": 178,
                          "upvotes": 178,
                          "createdAt": "2019-01-01T23:07:48.000Z",
                          "createdUtc": 1546384068,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [],
                            "page": {
                              "nextCursor": "ed1mn5p,ed1memt,ed1mz8s,ed1m3ds,ed1mpso,ed1mzf1",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1l782,ed1knvx,ed1ll2n,ed1kl5m,ed1n3l5,ed1lmjq,ed1m084,ed1m0a8,ed1m523",
                        "hasMore": true
                      }
                    }
                  },
                  {
                    "id": "ed1iy6p",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iy6p/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1iy6p/",
                    "parentId": "t1_ed1c4xr",
                    "author": "[deleted]",
                    "text": "How is it like being able to poop every day? \n\ni legit poop once  every 3 days ",
                    "renderedHtml": "<div class=\"md\"><p>How is it like being able to poop every day? </p>\n\n<p>i legit poop once  every 3 days </p>\n</div>",
                    "score": 129,
                    "upvotes": 129,
                    "createdAt": "2019-01-01T22:55:32.000Z",
                    "createdUtc": 1546383332,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1kakx",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kakx/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1kakx/",
                          "parentId": "t1_ed1iy6p",
                          "author": "JustADutchRudder",
                          "text": "I shit at 5am every day, well 7am on weekends. Wake up contacts, shit, shower, coffee and swear at the morning.",
                          "renderedHtml": "<div class=\"md\"><p>I shit at 5am every day, well 7am on weekends. Wake up contacts, shit, shower, coffee and swear at the morning.</p>\n</div>",
                          "score": 78,
                          "upvotes": 78,
                          "createdAt": "2019-01-01T23:14:00.000Z",
                          "createdUtc": 1546384440,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [],
                            "page": {
                              "nextCursor": "ed1l2ej,ed1w619,ed1kt81,ed1nsel",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1me7g,ed1kuh6,ed1p42y,ed1p5jm,ed1jxe5,ed1k5n8,ed2ucuh,ed1ldkj,ed1ldzi,ed1m59b,ed1mqt2,ed1mr3o,ed1ngaf,ed1nuzr,ed1obxr,ed1p8a6,ed1pv0e,ed1qqwt",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1d8a0,ed1igmr,ed1iext,ed1j7ab,ed1kub7,ed1pa1u,ed1iegk,ed1ilzl,ed1k1dm,ed1l55q,ed1lbmu,ed1lmng,ed1k65r,ed1l5th,ed1r5xm,ed1ilyd,ed1iouf,ed1ipp2,ed1iq63,ed1ivjr,ed1wzm4,ed1jb21,ed1ka61,ed1knuf,ed1laiy,ed1lj7s,ed1ljkx,ed1lszn,ed1lxeu,ed1m1td,ed1m8c3,ed1mehu,ed1mpnp,ed1mrlx,ed1mrnu,ed1n1mw,ed1nbp9,ed1no6y,ed1ohqo,ed1ow7z,ed1qt3g",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1eesk,ed1iz5f,ed1lh4c,ed1jx0v,ed2aald,ed1jzp6,ed1k3w0,ed1l8ke,ed1lfi1,ed1lmkz,ed1ln47,ed1ls1t,ed1md9p,ed1mgj9,ed1mh0o,ed1mjml,ed1mmgy,ed1mpok,ed1mq96,ed1mzqx,ed1ngsg,ed1nmt3,ed1nq6a,ed1nrg2,ed1pe6b,ed1pqsv,ed1q4xk,ed1q5d4,ed1q6uu,ed1so7b,ed22g4z",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1c6s4",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1c6s4/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1c6s4/",
        "parentId": "t3_ablzuq",
        "author": "CoreyC",
        "text": "I was actually sitting on the toilet at midnight.  New year, same shit.",
        "renderedHtml": "<div class=\"md\"><p>I was actually sitting on the toilet at midnight.  New year, same shit.</p>\n</div>",
        "score": 2364,
        "upvotes": 2364,
        "createdAt": "2019-01-01T21:25:41.000Z",
        "createdUtc": 1546377941,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1chiu",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1chiu/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1chiu/",
              "parentId": "t1_ed1c6s4",
              "author": "ShoddySubstance",
              "text": "different day!",
              "renderedHtml": "<div class=\"md\"><p>different day!</p>\n</div>",
              "score": 873,
              "upvotes": 873,
              "createdAt": "2019-01-01T21:29:15.000Z",
              "createdUtc": 1546378155,
              "depth": 1,
              "isSubmitter": true,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1imkr",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1imkr/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1imkr/",
                    "parentId": "t1_ed1chiu",
                    "author": "Crypto_dog",
                    "text": "Different year! ",
                    "renderedHtml": "<div class=\"md\"><p>Different year! </p>\n</div>",
                    "score": 316,
                    "upvotes": 316,
                    "createdAt": "2019-01-01T22:51:06.000Z",
                    "createdUtc": 1546383066,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "ed1jkrn",
                          "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jkrn/",
                          "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jkrn/",
                          "parentId": "t1_ed1imkr",
                          "author": "smithyrob",
                          "text": "Imagine the people who were pooping in 1999 going into 2000. Transmillenial shitting.",
                          "renderedHtml": "<div class=\"md\"><p>Imagine the people who were pooping in 1999 going into 2000. Transmillenial shitting.</p>\n</div>",
                          "score": 316,
                          "upvotes": 316,
                          "createdAt": "2019-01-01T23:04:15.000Z",
                          "createdUtc": 1546383855,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [],
                            "page": {
                              "nextCursor": "ed1ru6a,ed1r2zj,ed1x3rh,ed1kpvf,ed1qslv",
                              "hasMore": true
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": "ed1jlke,ed1jmev,ed1jha3",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1ir3d,ed1ivda",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1e53y",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e53y/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e53y/",
              "parentId": "t1_ed1c6s4",
              "author": "[deleted]",
              "text": "i purposely started peeing in 2018 and finished in 2019",
              "renderedHtml": "<div class=\"md\"><p>i purposely started peeing in 2018 and finished in 2019</p>\n</div>",
              "score": 242,
              "upvotes": 242,
              "createdAt": "2019-01-01T21:50:21.000Z",
              "createdUtc": 1546379421,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1jdwd",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jdwd/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1jdwd/",
                    "parentId": "t1_ed1e53y",
                    "author": "jayemt",
                    "text": "January 1st and you’re already achieving your dreams this year. Proud of you ",
                    "renderedHtml": "<div class=\"md\"><p>January 1st and you’re already achieving your dreams this year. Proud of you </p>\n</div>",
                    "score": 171,
                    "upvotes": 171,
                    "createdAt": "2019-01-01T23:01:38.000Z",
                    "createdUtc": 1546383698,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [],
                      "page": {
                        "nextCursor": null,
                        "hasMore": false
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "ed1jvgl,ed1kvxb,ed1x7hf,ed1maew,ed1q06b,ed2302m",
                  "hasMore": true
                }
              }
            },
            {
              "id": "ed1e41p",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e41p/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e41p/",
              "parentId": "t1_ed1c6s4",
              "author": "IIReallyDontCareDoU",
              "text": "I took a shit about 20 minutes before midnight. Then my dog started freaking out because my neighbor decided 11:40 was midnight. (Fireworks)\n\nTried to console him through the door then spent the rest of the night cuddling with him.\n\n\nBest New Years ever.",
              "renderedHtml": "<div class=\"md\"><p>I took a shit about 20 minutes before midnight. Then my dog started freaking out because my neighbor decided 11:40 was midnight. (Fireworks)</p>\n\n<p>Tried to console him through the door then spent the rest of the night cuddling with him.</p>\n\n<p>Best New Years ever.</p>\n</div>",
              "score": 225,
              "upvotes": 225,
              "createdAt": "2019-01-01T21:49:58.000Z",
              "createdUtc": 1546379398,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed1kxn6,ed1x67j",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1j006,ed1kcfg,ed1itnb,ed1jln9,ed1kyrp,ed1os0l,ed1zhe2,ed1iywo,ed1jk93,ed1kaux,ed1kg38,ed1vvw3",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1d0da",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1d0da/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1d0da/",
        "parentId": "t3_ablzuq",
        "author": "owen00600",
        "text": "I have trust issues ",
        "renderedHtml": "<div class=\"md\"><p>I have trust issues </p>\n</div>",
        "score": 442,
        "upvotes": 442,
        "createdAt": "2019-01-01T21:35:40.000Z",
        "createdUtc": 1546378540,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1d8xb",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1d8xb/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1d8xb/",
              "parentId": "t1_ed1d0da",
              "author": "ShoddySubstance",
              "text": "we can try and help relieve at least one issue",
              "renderedHtml": "<div class=\"md\"><p>we can try and help relieve at least one issue</p>\n</div>",
              "score": 202,
              "upvotes": 202,
              "createdAt": "2019-01-01T21:38:44.000Z",
              "createdUtc": 1546378724,
              "depth": 1,
              "isSubmitter": true,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed1qvvu",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed2b5tj,ed1jllb",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1i2l9",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i2l9/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i2l9/",
        "parentId": "t3_ablzuq",
        "author": "bluntsandthunder",
        "text": "I’ve poop twice since 2019 started, take that 2018! Your shit can’t hold me back any longer! ",
        "renderedHtml": "<div class=\"md\"><p>I’ve poop twice since 2019 started, take that 2018! Your shit can’t hold me back any longer! </p>\n</div>",
        "score": 371,
        "upvotes": 371,
        "createdAt": "2019-01-01T22:43:27.000Z",
        "createdUtc": 1546382607,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1i4n0",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i4n0/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i4n0/",
              "parentId": "t1_ed1i2l9",
              "author": "ShoddySubstance",
              "text": "take no shit from 2018!",
              "renderedHtml": "<div class=\"md\"><p>take no shit from 2018!</p>\n</div>",
              "score": 167,
              "upvotes": 167,
              "createdAt": "2019-01-01T22:44:14.000Z",
              "createdUtc": 1546382654,
              "depth": 1,
              "isSubmitter": true,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed1ocy6",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1qol0,ed1ldw6",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1j4ue",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j4ue/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1j4ue/",
        "parentId": "t3_ablzuq",
        "author": "Maverick039",
        "text": "I literally read this as I sat down for my first 2019 poop. ",
        "renderedHtml": "<div class=\"md\"><p>I literally read this as I sat down for my first 2019 poop. </p>\n</div>",
        "score": 93,
        "upvotes": 93,
        "createdAt": "2019-01-01T22:58:08.000Z",
        "createdUtc": 1546383488,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": "ed26s0r,ed1livk,ed1zq16",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1cf2z",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cf2z/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cf2z/",
        "parentId": "t3_ablzuq",
        "author": "greencannondale",
        "text": "I took Imodium for its labeled purpose yesterday evening and it is still working. ",
        "renderedHtml": "<div class=\"md\"><p>I took Imodium for its labeled purpose yesterday evening and it is still working. </p>\n</div>",
        "score": 89,
        "upvotes": 89,
        "createdAt": "2019-01-01T21:28:27.000Z",
        "createdUtc": 1546378107,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": "ed1nyck,ed2159t,ed1ln4t",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1b2m2",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1b2m2/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1b2m2/",
        "parentId": "t3_ablzuq",
        "author": "MerleyMonster",
        "text": "Alcohol makes me constipated :P",
        "renderedHtml": "<div class=\"md\"><p>Alcohol makes me constipated :P</p>\n</div>",
        "score": 555,
        "upvotes": 555,
        "createdAt": "2019-01-01T21:11:55.000Z",
        "createdUtc": 1546377115,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1e6be",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e6be/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1e6be/",
              "parentId": "t1_ed1b2m2",
              "author": "[deleted]",
              "text": "It does the complete opposite to me. The beer shits is literally a pain in the arse ",
              "renderedHtml": "<div class=\"md\"><p>It does the complete opposite to me. The beer shits is literally a pain in the arse </p>\n</div>",
              "score": 454,
              "upvotes": 454,
              "createdAt": "2019-01-01T21:50:47.000Z",
              "createdUtc": 1546379447,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": "ed1j821,ed1xdyp,ed1j8pv,ed1rj86,ed1izln,ed2m7t0,ed1iz3c,ed1jqzu,ed1kwta,ed1m39j,ed1yogw",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1ioyu,ed1by94,ed1j6ms,ed1djna,ed1jasj,ed1j5vr",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1i419",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i419/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i419/",
        "parentId": "t3_ablzuq",
        "author": "flumsi",
        "text": "cocaine",
        "renderedHtml": "<div class=\"md\"><p>cocaine</p>\n</div>",
        "score": 67,
        "upvotes": 67,
        "createdAt": "2019-01-01T22:44:01.000Z",
        "createdUtc": 1546382641,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": "ed240nr",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1ed00",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ed00/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ed00/",
        "parentId": "t3_ablzuq",
        "author": "[deleted]",
        "text": "I did an enema yesterday and didn't eat. 2019's first poop will be from food from 2019. Funny you should ask. ",
        "renderedHtml": "<div class=\"md\"><p>I did an enema yesterday and didn&#39;t eat. 2019&#39;s first poop will be from food from 2019. Funny you should ask. </p>\n</div>",
        "score": 184,
        "upvotes": 184,
        "createdAt": "2019-01-01T21:53:13.000Z",
        "createdUtc": 1546379593,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": "ed1jjt9,ed1jx9s",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1cbou",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cbou/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1cbou/",
        "parentId": "t3_ablzuq",
        "author": "DGiovanni",
        "text": "I don't poop at work",
        "renderedHtml": "<div class=\"md\"><p>I don&#39;t poop at work</p>\n</div>",
        "score": 227,
        "upvotes": 227,
        "createdAt": "2019-01-01T21:27:18.000Z",
        "createdUtc": 1546378038,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "ed1ck2x",
              "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ck2x/",
              "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ck2x/",
              "parentId": "t1_ed1cbou",
              "author": "ShoddySubstance",
              "text": "you should, boss makes a dollar, you make a dime, that's why you poop on company time.",
              "renderedHtml": "<div class=\"md\"><p>you should, boss makes a dollar, you make a dime, that&#39;s why you poop on company time.</p>\n</div>",
              "score": 713,
              "upvotes": 713,
              "createdAt": "2019-01-01T21:30:06.000Z",
              "createdUtc": 1546378206,
              "depth": 1,
              "isSubmitter": true,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "ed1ikbu",
                    "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ikbu/",
                    "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ikbu/",
                    "parentId": "t1_ed1ck2x",
                    "author": "HillarysDoubleChin",
                    "text": "I have IBS so my approach is slightly different.\n\nBoss makes a dollar, I make a dime, that's why I poop 16 times a day.",
                    "renderedHtml": "<div class=\"md\"><p>I have IBS so my approach is slightly different.</p>\n\n<p>Boss makes a dollar, I make a dime, that&#39;s why I poop 16 times a day.</p>\n</div>",
                    "score": 372,
                    "upvotes": 372,
                    "createdAt": "2019-01-01T22:50:16.000Z",
                    "createdUtc": 1546383016,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [],
                      "page": {
                        "nextCursor": "ed1izr6,ed2eg0y,ed1jdtw,ed1k9si,ed1zu37",
                        "hasMore": true
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": "eda01mk",
                  "hasMore": true
                }
              }
            }
          ],
          "page": {
            "nextCursor": "ed1qs4s,ed1oc3g",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1i065",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i065/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i065/",
        "parentId": "t3_ablzuq",
        "author": "Quinthyll",
        "text": "Because, much like 2018, I don't give a crap in 2019.",
        "renderedHtml": "<div class=\"md\"><p>Because, much like 2018, I don&#39;t give a crap in 2019.</p>\n</div>",
        "score": 85,
        "upvotes": 85,
        "createdAt": "2019-01-01T22:42:32.000Z",
        "createdUtc": 1546382552,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": "ed2g4bw",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1f39m",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1f39m/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1f39m/",
        "parentId": "t3_ablzuq",
        "author": "Seventy_x_7",
        "text": "Woke up at 3am because I caught the stomach virus my daughter and my son had. \n\nI’ve lost like 4 pounds in the last 12 hours thanks to pooping and vomiting.\n\nWahoo, back under my pre-pregnancy weight. ",
        "renderedHtml": "<div class=\"md\"><p>Woke up at 3am because I caught the stomach virus my daughter and my son had. </p>\n\n<p>I’ve lost like 4 pounds in the last 12 hours thanks to pooping and vomiting.</p>\n\n<p>Wahoo, back under my pre-pregnancy weight. </p>\n</div>",
        "score": 123,
        "upvotes": 123,
        "createdAt": "2019-01-01T22:02:37.000Z",
        "createdUtc": 1546380157,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": "ed1lg96,ed1t4tq,ed1qhd5,ed1ll1i,ed1u279,ed3bx19,ed2cc6g",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1i9jb",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i9jb/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1i9jb/",
        "parentId": "t3_ablzuq",
        "author": "The_Goondocks",
        "text": "It won't let go of ME!",
        "renderedHtml": "<div class=\"md\"><p>It won&#39;t let go of ME!</p>\n</div>",
        "score": 28,
        "upvotes": 28,
        "createdAt": "2019-01-01T22:46:07.000Z",
        "createdUtc": 1546382767,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": "ed1ifnc,ed26t07",
            "hasMore": true
          }
        }
      },
      {
        "id": "ed1ixhp",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ixhp/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1ixhp/",
        "parentId": "t3_ablzuq",
        "author": "I_Kaint_Spale",
        "text": "Then 2019 is official, right now, as I typed this...(grunt.. sigh) Happy New Year! ",
        "renderedHtml": "<div class=\"md\"><p>Then 2019 is official, right now, as I typed this...(grunt.. sigh) Happy New Year! </p>\n</div>",
        "score": 27,
        "upvotes": 27,
        "createdAt": "2019-01-01T22:55:16.000Z",
        "createdUtc": 1546383316,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": null,
            "hasMore": false
          }
        }
      },
      {
        "id": "ed1dn3p",
        "url": "https://www.reddit.com/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dn3p/",
        "permalink": "/r/AskReddit/comments/ablzuq/people_who_havent_pooped_in_2019_yet_why_are_you/ed1dn3p/",
        "parentId": "t3_ablzuq",
        "author": "Ammuniti0n",
        "text": "I'm not ready to release the humongous 2018 crap out yet. Give us time",
        "renderedHtml": "<div class=\"md\"><p>I&#39;m not ready to release the humongous 2018 crap out yet. Give us time</p>\n</div>",
        "score": 27,
        "upvotes": 27,
        "createdAt": "2019-01-01T21:43:47.000Z",
        "createdUtc": 1546379027,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": null,
            "hasMore": false
          }
        }
      }
    ]
  },
  "meta": {
    "requestId": "req_01example",
    "creditsCharged": 1,
    "version": "v1"
  }
}
```

### Example JSON (no_comments)

```json
{
  "data": {
    "lookupStatus": "found",
    "post": {
      "id": "1sgke73",
      "title": "CoinGecko 2026 Spot CEX Report",
      "url": "https://www.reddit.com/gallery/1sgke73",
      "permalink": "/r/coingecko/comments/1sgke73/coingecko_2026_spot_cex_report/",
      "subreddit": "coingecko",
      "subredditNamePrefixed": "r/coingecko",
      "author": "coingecko",
      "score": 1,
      "upvoteRatio": 1,
      "commentCount": 0,
      "createdAt": "2026-04-09T09:05:30.000Z",
      "createdUtc": 1775725530,
      "over18": false,
      "locked": false,
      "stickied": false
    },
    "page": {
      "nextCursor": null,
      "hasMore": false
    },
    "comments": []
  },
  "meta": {
    "requestId": "req_01example_nc",
    "creditsCharged": 1,
    "version": "v1"
  }
}
```

### Example JSON (last_page)

```json
{
  "data": {
    "lookupStatus": "found",
    "post": {
      "id": "1tgimff",
      "title": "Aura Displays debuts new portable monitor with foldable AMOLED display",
      "url": "https://www.notebookcheck.net/Aura-Displays-debuts-new-portable-monitor-with-foldable-AMOLED-display.1299245.0.html",
      "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/",
      "subreddit": "gadgets",
      "subredditNamePrefixed": "r/gadgets",
      "author": "dapperlemon",
      "score": 409,
      "upvoteRatio": 0.9,
      "commentCount": 39,
      "createdAt": "2026-05-18T10:35:29.000Z",
      "createdUtc": 1779100529,
      "over18": false,
      "locked": false,
      "stickied": false
    },
    "page": {
      "nextCursor": null,
      "hasMore": false
    },
    "comments": [
      {
        "id": "omgjq7a",
        "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omgjq7a/",
        "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omgjq7a/",
        "parentId": "t3_1tgimff",
        "author": "AutoModerator",
        "text": "\nWe have a giveaway running, be sure to enter in the post linked below for your chance to win!\n\n* [Intehill x r/Gadgets Giveaway — Win Stunning DuoTrek 1 & 2.5K 120Hz 16'' Portable Monitor 2!](https://old.reddit.com/r/gadgets/comments/1t962i5/giveaway_intehill_x_rgadgets_giveaway_win)\n\n\n*I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/gadgets) if you have any questions or concerns.*",
        "renderedHtml": "<div class=\"md\"><p>We have a giveaway running, be sure to enter in the post linked below for your chance to win!</p>\n\n<ul>\n<li><a href=\"https://old.reddit.com/r/gadgets/comments/1t962i5/giveaway_intehill_x_rgadgets_giveaway_win\">Intehill x r/Gadgets Giveaway — Win Stunning DuoTrek 1 &amp; 2.5K 120Hz 16&#39;&#39; Portable Monitor 2!</a></li>\n</ul>\n\n<p><em>I am a bot, and this action was performed automatically. Please <a href=\"/message/compose/?to=/r/gadgets\">contact the moderators of this subreddit</a> if you have any questions or concerns.</em></p>\n</div>",
        "score": 1,
        "upvotes": 1,
        "createdAt": "2026-05-18T10:35:30.000Z",
        "createdUtc": 1779100530,
        "depth": 0,
        "isSubmitter": false,
        "stickied": true,
        "locked": true,
        "distinguished": "moderator",
        "replies": {
          "items": [],
          "page": {
            "nextCursor": null,
            "hasMore": false
          }
        }
      },
      {
        "id": "omhevde",
        "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhevde/",
        "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhevde/",
        "parentId": "t3_1tgimff",
        "author": "narwhal_breeder",
        "text": "Cool - but I don’t really see the point of a folding monitor that would have no problem fitting in a laptop pouch unfolded. \n\nWouldn’t the use case for these being able to fit a larger than normal screen in a laptop bag? So 16in +? \n\nI use portable monitors alllll the time for work - and it always just goes in the same pouch as my laptop. \n\n$1299 for a 13.3 inch screen that would fit in any laptop pouch/bag unfolded with a laptop anyways..\n\nA solution in search of a problem. ",
        "renderedHtml": "<div class=\"md\"><p>Cool - but I don’t really see the point of a folding monitor that would have no problem fitting in a laptop pouch unfolded. </p>\n\n<p>Wouldn’t the use case for these being able to fit a larger than normal screen in a laptop bag? So 16in +? </p>\n\n<p>I use portable monitors alllll the time for work - and it always just goes in the same pouch as my laptop. </p>\n\n<p>$1299 for a 13.3 inch screen that would fit in any laptop pouch/bag unfolded with a laptop anyways..</p>\n\n<p>A solution in search of a problem. </p>\n</div>",
        "score": 34,
        "upvotes": 34,
        "createdAt": "2026-05-18T13:47:14.000Z",
        "createdUtc": 1779112034,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "omi3syt",
              "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omi3syt/",
              "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omi3syt/",
              "parentId": "t1_omhevde",
              "author": "RenderedMeat",
              "text": "Sheesh! $1300! You can buy a a 13” iPad for that much, use it as a second monitor, AND as an iPad. \n\nI use a 16” portable monitor with 1440p resolution and it cost like $80. And yeah, it slides right next to my laptop. ",
              "renderedHtml": "<div class=\"md\"><p>Sheesh! $1300! You can buy a a 13” iPad for that much, use it as a second monitor, AND as an iPad. </p>\n\n<p>I use a 16” portable monitor with 1440p resolution and it cost like $80. And yeah, it slides right next to my laptop. </p>\n</div>",
              "score": 21,
              "upvotes": 21,
              "createdAt": "2026-05-18T15:44:21.000Z",
              "createdUtc": 1779119061,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "omi438d",
                    "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omi438d/",
                    "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omi438d/",
                    "parentId": "t1_omi3syt",
                    "author": "narwhal_breeder",
                    "text": "You can get two 13 in iPads for that. ",
                    "renderedHtml": "<div class=\"md\"><p>You can get two 13 in iPads for that. </p>\n</div>",
                    "score": 4,
                    "upvotes": 4,
                    "createdAt": "2026-05-18T15:45:39.000Z",
                    "createdUtc": 1779119139,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "omj6o2y",
                          "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omj6o2y/",
                          "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omj6o2y/",
                          "parentId": "t1_omi438d",
                          "author": "zen1706",
                          "text": "No you can’t unless you buy used.",
                          "renderedHtml": "<div class=\"md\"><p>No you can’t unless you buy used.</p>\n</div>",
                          "score": 5,
                          "upvotes": 5,
                          "createdAt": "2026-05-18T18:56:04.000Z",
                          "createdUtc": 1779130564,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [],
                            "page": {
                              "nextCursor": null,
                              "hasMore": false
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": null,
                        "hasMore": false
                      }
                    }
                  },
                  {
                    "id": "omjjw9g",
                    "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjjw9g/",
                    "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjjw9g/",
                    "parentId": "t1_omi3syt",
                    "author": "Vandorol",
                    "text": "How do u use it as a second monitor with windows laptop?",
                    "renderedHtml": "<div class=\"md\"><p>How do u use it as a second monitor with windows laptop?</p>\n</div>",
                    "score": 1,
                    "upvotes": 1,
                    "createdAt": "2026-05-18T20:02:01.000Z",
                    "createdUtc": 1779134521,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "omjmbjf",
                          "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjmbjf/",
                          "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjmbjf/",
                          "parentId": "t1_omjjw9g",
                          "author": "RenderedMeat",
                          "text": "Requires an app, but there’s a few. Spacedesk, Duet Display, LetsView, others…",
                          "renderedHtml": "<div class=\"md\"><p>Requires an app, but there’s a few. Spacedesk, Duet Display, LetsView, others…</p>\n</div>",
                          "score": 5,
                          "upvotes": 5,
                          "createdAt": "2026-05-18T20:13:14.000Z",
                          "createdUtc": 1779135194,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "omjvxx8",
                                "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjvxx8/",
                                "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjvxx8/",
                                "parentId": "t1_omjmbjf",
                                "author": "Pleasant_Dot_189",
                                "text": "Those are all terrible imo. The latency lag makes the set up silly ",
                                "renderedHtml": "<div class=\"md\"><p>Those are all terrible imo. The latency lag makes the set up silly </p>\n</div>",
                                "score": 3,
                                "upvotes": 3,
                                "createdAt": "2026-05-18T20:57:25.000Z",
                                "createdUtc": 1779137845,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [
                                    {
                                      "id": "omk84wh",
                                      "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk84wh/",
                                      "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk84wh/",
                                      "parentId": "t1_omjvxx8",
                                      "author": "leastlol",
                                      "text": "Astropad sells a dongle/software for this as well:\n\nhttps://astropad.com/\n\nThe latency for any of these is obviously worse than a portable monitor with a direct connection, but they're also often more than adequate as a secondary display where the latency just doesn't matter as much.\n\nIf you're carrying an iPad already, I think it's more sensible than carrying a laptop, iPad, and portable monitor.",
                                      "renderedHtml": "<div class=\"md\"><p>Astropad sells a dongle/software for this as well:</p>\n\n<p><a href=\"https://astropad.com/\">https://astropad.com/</a></p>\n\n<p>The latency for any of these is obviously worse than a portable monitor with a direct connection, but they&#39;re also often more than adequate as a secondary display where the latency just doesn&#39;t matter as much.</p>\n\n<p>If you&#39;re carrying an iPad already, I think it&#39;s more sensible than carrying a laptop, iPad, and portable monitor.</p>\n</div>",
                                      "score": 5,
                                      "upvotes": 5,
                                      "createdAt": "2026-05-18T21:58:08.000Z",
                                      "createdUtc": 1779141488,
                                      "depth": 5,
                                      "isSubmitter": false,
                                      "stickied": false,
                                      "locked": false,
                                      "distinguished": null,
                                      "replies": {
                                        "items": [],
                                        "page": {
                                          "nextCursor": null,
                                          "hasMore": false
                                        }
                                      }
                                    },
                                    {
                                      "id": "omk9vwb",
                                      "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk9vwb/",
                                      "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk9vwb/",
                                      "parentId": "t1_omjvxx8",
                                      "author": "RenderedMeat",
                                      "text": "I haven’t used them. Using an iPad as a second screen with a Mac is seamless and fast. ",
                                      "renderedHtml": "<div class=\"md\"><p>I haven’t used them. Using an iPad as a second screen with a Mac is seamless and fast. </p>\n</div>",
                                      "score": 1,
                                      "upvotes": 1,
                                      "createdAt": "2026-05-18T22:07:40.000Z",
                                      "createdUtc": 1779142060,
                                      "depth": 5,
                                      "isSubmitter": false,
                                      "stickied": false,
                                      "locked": false,
                                      "distinguished": null,
                                      "replies": {
                                        "items": [],
                                        "page": {
                                          "nextCursor": null,
                                          "hasMore": false
                                        }
                                      }
                                    }
                                  ],
                                  "page": {
                                    "nextCursor": null,
                                    "hasMore": false
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": null,
                              "hasMore": false
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": null,
                        "hasMore": false
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": null,
                  "hasMore": false
                }
              }
            },
            {
              "id": "omhnl6z",
              "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhnl6z/",
              "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhnl6z/",
              "parentId": "t1_omhevde",
              "author": "5eppa",
              "text": "Came to basically say this. I get foldable phones because in a smaller amount of carrying space you're getting more total screen size. But this doesn't have a stand, costs a ton of money for what you get, and doesn't seem to do anything aside from fold. I just don't know what the use case for this is. Maybe if it had a couple of kick stands and was like a 26 inch screen that folded into the size of a 13 inch one then I could justify taking it with me on a trip because it would be highly portable and give me great real estate for working while traveling. ",
              "renderedHtml": "<div class=\"md\"><p>Came to basically say this. I get foldable phones because in a smaller amount of carrying space you&#39;re getting more total screen size. But this doesn&#39;t have a stand, costs a ton of money for what you get, and doesn&#39;t seem to do anything aside from fold. I just don&#39;t know what the use case for this is. Maybe if it had a couple of kick stands and was like a 26 inch screen that folded into the size of a 13 inch one then I could justify taking it with me on a trip because it would be highly portable and give me great real estate for working while traveling. </p>\n</div>",
              "score": 2,
              "upvotes": 2,
              "createdAt": "2026-05-18T14:30:05.000Z",
              "createdUtc": 1779114605,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "omk9agk",
                    "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk9agk/",
                    "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk9agk/",
                    "parentId": "t1_omhnl6z",
                    "author": "leastlol",
                    "text": "Asus showed off a folding laptop that kind of does this: \n\nhttps://www.asus.com/content/unfold-the-incredible-with-asus-zenbook-17-fold-oled/\n\nIt's not just a display, though. \n\nI think maybe one possible use case for the smaller folding 13 inch display is someone using their phone as a desktop computer (with Dex or whatever Google's new implementation for it is called) - you could maybe fit this display  into a small sling instead of a backpack/messenger bag. Still does feel like it's a solution in search of a problem.",
                    "renderedHtml": "<div class=\"md\"><p>Asus showed off a folding laptop that kind of does this: </p>\n\n<p><a href=\"https://www.asus.com/content/unfold-the-incredible-with-asus-zenbook-17-fold-oled/\">https://www.asus.com/content/unfold-the-incredible-with-asus-zenbook-17-fold-oled/</a></p>\n\n<p>It&#39;s not just a display, though. </p>\n\n<p>I think maybe one possible use case for the smaller folding 13 inch display is someone using their phone as a desktop computer (with Dex or whatever Google&#39;s new implementation for it is called) - you could maybe fit this display  into a small sling instead of a backpack/messenger bag. Still does feel like it&#39;s a solution in search of a problem.</p>\n</div>",
                    "score": 2,
                    "upvotes": 2,
                    "createdAt": "2026-05-18T22:04:23.000Z",
                    "createdUtc": 1779141863,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "omk9v1h",
                          "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk9v1h/",
                          "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk9v1h/",
                          "parentId": "t1_omk9agk",
                          "author": "5eppa",
                          "text": "Fair, yeah their foldable laptop feels sort of more like a tablet where again I get the point. Like you said there probably is some clever use cases for this. I just struggle to see where I justify the proce tag for it. ",
                          "renderedHtml": "<div class=\"md\"><p>Fair, yeah their foldable laptop feels sort of more like a tablet where again I get the point. Like you said there probably is some clever use cases for this. I just struggle to see where I justify the proce tag for it. </p>\n</div>",
                          "score": 1,
                          "upvotes": 1,
                          "createdAt": "2026-05-18T22:07:33.000Z",
                          "createdUtc": 1779142053,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [],
                            "page": {
                              "nextCursor": null,
                              "hasMore": false
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": null,
                        "hasMore": false
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": null,
                  "hasMore": false
                }
              }
            },
            {
              "id": "omhruif",
              "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhruif/",
              "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhruif/",
              "parentId": "t1_omhevde",
              "author": "bluepie",
              "text": "yeah they should use this tech to make like 20\" screens fold down to small laptop size",
              "renderedHtml": "<div class=\"md\"><p>yeah they should use this tech to make like 20&quot; screens fold down to small laptop size</p>\n</div>",
              "score": 2,
              "upvotes": 2,
              "createdAt": "2026-05-18T14:49:59.000Z",
              "createdUtc": 1779115799,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": null,
                  "hasMore": false
                }
              }
            },
            {
              "id": "omht4r0",
              "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omht4r0/",
              "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omht4r0/",
              "parentId": "t1_omhevde",
              "author": "rosen380",
              "text": "While I agree that it'd be silly if you are carrying around a laptop bag that it could fit into unfolded and that the price is silly for almost any use case -- maybe something like Samsung DeX, driven by the phone you are already carrying, along with 1-2 of these (assuming that they can get the price down pretty far from $1300) would make for a compact solution for travel?",
              "renderedHtml": "<div class=\"md\"><p>While I agree that it&#39;d be silly if you are carrying around a laptop bag that it could fit into unfolded and that the price is silly for almost any use case -- maybe something like Samsung DeX, driven by the phone you are already carrying, along with 1-2 of these (assuming that they can get the price down pretty far from $1300) would make for a compact solution for travel?</p>\n</div>",
              "score": 2,
              "upvotes": 2,
              "createdAt": "2026-05-18T14:55:50.000Z",
              "createdUtc": 1779116150,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "omhyxeu",
                    "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhyxeu/",
                    "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhyxeu/",
                    "parentId": "t1_omht4r0",
                    "author": "narwhal_breeder",
                    "text": "You’d be surprised at how much space carrying around a keyboard + mouse + dock + power supply for the monitors doesn’t save Compared to a much more powerful MacBook Air you can use without an outlet. \n\nPretty much nobody uses dex for their jobs. ",
                    "renderedHtml": "<div class=\"md\"><p>You’d be surprised at how much space carrying around a keyboard + mouse + dock + power supply for the monitors doesn’t save Compared to a much more powerful MacBook Air you can use without an outlet. </p>\n\n<p>Pretty much nobody uses dex for their jobs. </p>\n</div>",
                    "score": 2,
                    "upvotes": 2,
                    "createdAt": "2026-05-18T15:22:16.000Z",
                    "createdUtc": 1779117736,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "omi3361",
                          "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omi3361/",
                          "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omi3361/",
                          "parentId": "t1_omhyxeu",
                          "author": "rosen380",
                          "text": "\"Pretty much nobody uses dex\"\n\nSure-- but since this isn't priced to be a useful product in 2026, I'm thinking more of it as a proof of concept where changes in tech get us to a point where for normal work use cases, a computer that requires the space that a laptop presently takes up would be way overkill.\n\n  \nSo maybe when your run-of-the-mill flagship phone is about as powerful as a typical modern laptop...\n\nAnd maybe since you'll have the external screens, you are using your phone screen as a touchpad...\n\nAnd maybe you are charging your battery powered phone and screens with a single charging block and a couple of cables (with the connections between devices being wireless)...\n\nAnd most work laptops don't have keyboards that are that great, perhaps a a folding keyboard (so not wider than the screens when they are folded) would be sufficient and we'd still be looking at a complete package that is still far more compact that a 13-15\" laptop bag.\n\n",
                          "renderedHtml": "<div class=\"md\"><p>&quot;Pretty much nobody uses dex&quot;</p>\n\n<p>Sure-- but since this isn&#39;t priced to be a useful product in 2026, I&#39;m thinking more of it as a proof of concept where changes in tech get us to a point where for normal work use cases, a computer that requires the space that a laptop presently takes up would be way overkill.</p>\n\n<p>So maybe when your run-of-the-mill flagship phone is about as powerful as a typical modern laptop...</p>\n\n<p>And maybe since you&#39;ll have the external screens, you are using your phone screen as a touchpad...</p>\n\n<p>And maybe you are charging your battery powered phone and screens with a single charging block and a couple of cables (with the connections between devices being wireless)...</p>\n\n<p>And most work laptops don&#39;t have keyboards that are that great, perhaps a a folding keyboard (so not wider than the screens when they are folded) would be sufficient and we&#39;d still be looking at a complete package that is still far more compact that a 13-15&quot; laptop bag.</p>\n</div>",
                          "score": 1,
                          "upvotes": 1,
                          "createdAt": "2026-05-18T15:41:10.000Z",
                          "createdUtc": 1779118870,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "omi3kk4",
                                "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omi3kk4/",
                                "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omi3kk4/",
                                "parentId": "t1_omi3361",
                                "author": "narwhal_breeder",
                                "text": "Great - so all we need to do is invent 5 or so other devices to make this one useful ",
                                "renderedHtml": "<div class=\"md\"><p>Great - so all we need to do is invent 5 or so other devices to make this one useful </p>\n</div>",
                                "score": 1,
                                "upvotes": 1,
                                "createdAt": "2026-05-18T15:43:19.000Z",
                                "createdUtc": 1779118999,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [
                                    {
                                      "id": "omia4xa",
                                      "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omia4xa/",
                                      "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omia4xa/",
                                      "parentId": "t1_omi3kk4",
                                      "author": "rosen380",
                                      "text": "Which is often the case for products that would be deemed proofs of concepts, which was my caveat right in my follow-up comment.\n\nWe had electric motors and batteries and such for a long time which demonstrated that it was theoretically possible to have long range vehicles running with those, yet it took advancements in various technologies to get to the first actual production cars capable of driving a couple of hundred miles on a single charge.\n\nAnd even still -- for a lot of people that still isn't enough if other bits of technology don't make it reasonable for them to switch to a full EV yet, if they have no access to recharging at home or work... \n\n  \n\"so all we need to do is invent 5 or so other devices\" -- and what five devices?\n\nUsing the phone as a touchpad is already a feature of DeX.  A single charging block with multiple ports on it already exist.  \n\nFolding keyboards already exist, I have one that is terrible.  But was made like 10-15 years ago, so I guess I have to imagine they've made some improvements by now...?\n\nAnd the computing power?  For anything that really needs a lot of computing power, I'm just going to remote in to a more powerful server.  For editing some spreadsheets or writing some PHP code or whatever, I suspect that a modern flagship phone is more than capable.\n\n",
                                      "renderedHtml": "<div class=\"md\"><p>Which is often the case for products that would be deemed proofs of concepts, which was my caveat right in my follow-up comment.</p>\n\n<p>We had electric motors and batteries and such for a long time which demonstrated that it was theoretically possible to have long range vehicles running with those, yet it took advancements in various technologies to get to the first actual production cars capable of driving a couple of hundred miles on a single charge.</p>\n\n<p>And even still -- for a lot of people that still isn&#39;t enough if other bits of technology don&#39;t make it reasonable for them to switch to a full EV yet, if they have no access to recharging at home or work... </p>\n\n<p>&quot;so all we need to do is invent 5 or so other devices&quot; -- and what five devices?</p>\n\n<p>Using the phone as a touchpad is already a feature of DeX.  A single charging block with multiple ports on it already exist.  </p>\n\n<p>Folding keyboards already exist, I have one that is terrible.  But was made like 10-15 years ago, so I guess I have to imagine they&#39;ve made some improvements by now...?</p>\n\n<p>And the computing power?  For anything that really needs a lot of computing power, I&#39;m just going to remote in to a more powerful server.  For editing some spreadsheets or writing some PHP code or whatever, I suspect that a modern flagship phone is more than capable.</p>\n</div>",
                                      "score": 1,
                                      "upvotes": 1,
                                      "createdAt": "2026-05-18T16:13:19.000Z",
                                      "createdUtc": 1779120799,
                                      "depth": 5,
                                      "isSubmitter": false,
                                      "stickied": false,
                                      "locked": false,
                                      "distinguished": null,
                                      "replies": {
                                        "items": [],
                                        "page": {
                                          "nextCursor": null,
                                          "hasMore": false
                                        }
                                      }
                                    }
                                  ],
                                  "page": {
                                    "nextCursor": null,
                                    "hasMore": false
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": null,
                              "hasMore": false
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": null,
                        "hasMore": false
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": null,
                  "hasMore": false
                }
              }
            },
            {
              "id": "omjekei",
              "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjekei/",
              "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjekei/",
              "parentId": "t1_omhevde",
              "author": "grahamulax",
              "text": "Bingo. Give me a foldable monitor that basically can fit in my pocket or one hand. I wanna unfold it twice. \n\nHere’s my useless product idea. \n\nCube oled. 6 screens as a cube that unfolds into one screen. You can store the charger inside when folded as a cube. Or it’s a battery. \n\nTada! 🎉 ",
              "renderedHtml": "<div class=\"md\"><p>Bingo. Give me a foldable monitor that basically can fit in my pocket or one hand. I wanna unfold it twice. </p>\n\n<p>Here’s my useless product idea. </p>\n\n<p>Cube oled. 6 screens as a cube that unfolds into one screen. You can store the charger inside when folded as a cube. Or it’s a battery. </p>\n\n<p>Tada! 🎉 </p>\n</div>",
              "score": 1,
              "upvotes": 1,
              "createdAt": "2026-05-18T19:36:51.000Z",
              "createdUtc": 1779133011,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [
                  {
                    "id": "omjf2qh",
                    "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjf2qh/",
                    "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjf2qh/",
                    "parentId": "t1_omjekei",
                    "author": "narwhal_breeder",
                    "text": "I dont think id want to use a monitor shaped like this:  \n[https://www.math.union.edu/\\~dpvc/talks/2001-04-28.HRUMC/GIF/Cube-Unfolded.gif](https://www.math.union.edu/~dpvc/talks/2001-04-28.HRUMC/GIF/Cube-Unfolded.gif)",
                    "renderedHtml": "<div class=\"md\"><p>I dont think id want to use a monitor shaped like this:<br/>\n<a href=\"https://www.math.union.edu/%7Edpvc/talks/2001-04-28.HRUMC/GIF/Cube-Unfolded.gif\">https://www.math.union.edu/~dpvc/talks/2001-04-28.HRUMC/GIF/Cube-Unfolded.gif</a></p>\n</div>",
                    "score": 2,
                    "upvotes": 2,
                    "createdAt": "2026-05-18T19:39:17.000Z",
                    "createdUtc": 1779133157,
                    "depth": 2,
                    "isSubmitter": false,
                    "stickied": false,
                    "locked": false,
                    "distinguished": null,
                    "replies": {
                      "items": [
                        {
                          "id": "omjfly1",
                          "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjfly1/",
                          "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjfly1/",
                          "parentId": "t1_omjf2qh",
                          "author": "grahamulax",
                          "text": "LOL OH WAIT. hahaha. Fuck. I was thinking 9 sides then and 3 for each? My brains not in a topology mode clearly but you got me laughing HARD at my own stupidity lolllll ",
                          "renderedHtml": "<div class=\"md\"><p>LOL OH WAIT. hahaha. Fuck. I was thinking 9 sides then and 3 for each? My brains not in a topology mode clearly but you got me laughing HARD at my own stupidity lolllll </p>\n</div>",
                          "score": 2,
                          "upvotes": 2,
                          "createdAt": "2026-05-18T19:41:50.000Z",
                          "createdUtc": 1779133310,
                          "depth": 3,
                          "isSubmitter": false,
                          "stickied": false,
                          "locked": false,
                          "distinguished": null,
                          "replies": {
                            "items": [
                              {
                                "id": "oml3rqz",
                                "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/oml3rqz/",
                                "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/oml3rqz/",
                                "parentId": "t1_omjfly1",
                                "author": "Buscemi_D_Sanji",
                                "text": "You've got me laughing too, I was reading this like what the fuck is he talking about hahaha",
                                "renderedHtml": "<div class=\"md\"><p>You&#39;ve got me laughing too, I was reading this like what the fuck is he talking about hahaha</p>\n</div>",
                                "score": 2,
                                "upvotes": 2,
                                "createdAt": "2026-05-19T00:59:31.000Z",
                                "createdUtc": 1779152371,
                                "depth": 4,
                                "isSubmitter": false,
                                "stickied": false,
                                "locked": false,
                                "distinguished": null,
                                "replies": {
                                  "items": [],
                                  "page": {
                                    "nextCursor": null,
                                    "hasMore": false
                                  }
                                }
                              }
                            ],
                            "page": {
                              "nextCursor": null,
                              "hasMore": false
                            }
                          }
                        }
                      ],
                      "page": {
                        "nextCursor": null,
                        "hasMore": false
                      }
                    }
                  }
                ],
                "page": {
                  "nextCursor": null,
                  "hasMore": false
                }
              }
            },
            {
              "id": "omlwy0h",
              "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omlwy0h/",
              "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omlwy0h/",
              "parentId": "t1_omhevde",
              "author": "GreenFox1505",
              "text": "Laptops do a better job of protecting their screens than portable monitors do. Portable monitors basically have a sheet of card board covered in fake leather thay function as scratch protection. They do almost nothing for impact protection. A folding monitor would likely have better side-on impact protection.\n\n\nBut really the solution here is portable monitors deserve better hard covers than the shit they give you. \n\n",
              "renderedHtml": "<div class=\"md\"><p>Laptops do a better job of protecting their screens than portable monitors do. Portable monitors basically have a sheet of card board covered in fake leather thay function as scratch protection. They do almost nothing for impact protection. A folding monitor would likely have better side-on impact protection.</p>\n\n<p>But really the solution here is portable monitors deserve better hard covers than the shit they give you. </p>\n</div>",
              "score": 1,
              "upvotes": 1,
              "createdAt": "2026-05-19T03:49:29.000Z",
              "createdUtc": 1779162569,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": null,
                  "hasMore": false
                }
              }
            }
          ],
          "page": {
            "nextCursor": null,
            "hasMore": false
          }
        }
      },
      {
        "id": "omhg6uc",
        "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhg6uc/",
        "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhg6uc/",
        "parentId": "t3_1tgimff",
        "author": "vaanen",
        "text": "completely missed the mark by making AGAIN a screen that can already fit in a small laptop bag. nobody will ever pay for a 13 inch foldable screen when normal 13inch screen are like 300 bucks",
        "renderedHtml": "<div class=\"md\"><p>completely missed the mark by making AGAIN a screen that can already fit in a small laptop bag. nobody will ever pay for a 13 inch foldable screen when normal 13inch screen are like 300 bucks</p>\n</div>",
        "score": 8,
        "upvotes": 8,
        "createdAt": "2026-05-18T13:53:57.000Z",
        "createdUtc": 1779112437,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "omjpjce",
              "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjpjce/",
              "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjpjce/",
              "parentId": "t1_omhg6uc",
              "author": "roguebananah",
              "text": "Or get one that isn’t foldable, it’s a 13 inch screen and it’s $50. It’s powered by thunderbolt (at least the ones are that I travel with)\n\n3 screens including my laptop monitor is incredible for business travel in a hotel room ",
              "renderedHtml": "<div class=\"md\"><p>Or get one that isn’t foldable, it’s a 13 inch screen and it’s $50. It’s powered by thunderbolt (at least the ones are that I travel with)</p>\n\n<p>3 screens including my laptop monitor is incredible for business travel in a hotel room </p>\n</div>",
              "score": 3,
              "upvotes": 3,
              "createdAt": "2026-05-18T20:27:50.000Z",
              "createdUtc": 1779136070,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": null,
                  "hasMore": false
                }
              }
            }
          ],
          "page": {
            "nextCursor": null,
            "hasMore": false
          }
        }
      },
      {
        "id": "omgsyv7",
        "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omgsyv7/",
        "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omgsyv7/",
        "parentId": "t3_1tgimff",
        "author": "[deleted]",
        "text": "[deleted]",
        "renderedHtml": "<div class=\"md\"><p>[deleted]</p>\n</div>",
        "score": 6,
        "upvotes": 6,
        "createdAt": "2026-05-18T11:41:57.000Z",
        "createdUtc": 1779104517,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [
            {
              "id": "omgxyzg",
              "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omgxyzg/",
              "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omgxyzg/",
              "parentId": "t1_omgsyv7",
              "author": "Small_Editor_3693",
              "text": "Not for $1500 though",
              "renderedHtml": "<div class=\"md\"><p>Not for $1500 though</p>\n</div>",
              "score": 4,
              "upvotes": 4,
              "createdAt": "2026-05-18T12:13:42.000Z",
              "createdUtc": 1779106422,
              "depth": 1,
              "isSubmitter": false,
              "stickied": false,
              "locked": false,
              "distinguished": null,
              "replies": {
                "items": [],
                "page": {
                  "nextCursor": null,
                  "hasMore": false
                }
              }
            }
          ],
          "page": {
            "nextCursor": null,
            "hasMore": false
          }
        }
      },
      {
        "id": "omh3ytj",
        "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omh3ytj/",
        "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omh3ytj/",
        "parentId": "t3_1tgimff",
        "author": "level-zer0",
        "text": "Very cool - would love to check it out.   Seems kinda pricey compared to to something like the SideTrak - but I’m sure the cost will come down over time.   ",
        "renderedHtml": "<div class=\"md\"><p>Very cool - would love to check it out.   Seems kinda pricey compared to to something like the SideTrak - but I’m sure the cost will come down over time.   </p>\n</div>",
        "score": 7,
        "upvotes": 7,
        "createdAt": "2026-05-18T12:49:09.000Z",
        "createdUtc": 1779108549,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": null,
            "hasMore": false
          }
        }
      },
      {
        "id": "omjckou",
        "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjckou/",
        "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjckou/",
        "parentId": "t3_1tgimff",
        "author": "GregLittlefield",
        "text": "There is no use case for a laptop since a 13\" portable monitor will fill in the laptop case without needing to be folded...\n\nThere would be a use case as a monitor for a tablet, but then how would you connect it to the tablet?  (USB to HDMI adapter? would that work?)",
        "renderedHtml": "<div class=\"md\"><p>There is no use case for a laptop since a 13&quot; portable monitor will fill in the laptop case without needing to be folded...</p>\n\n<p>There would be a use case as a monitor for a tablet, but then how would you connect it to the tablet?  (USB to HDMI adapter? would that work?)</p>\n</div>",
        "score": 3,
        "upvotes": 3,
        "createdAt": "2026-05-18T19:26:30.000Z",
        "createdUtc": 1779132390,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": null,
            "hasMore": false
          }
        }
      },
      {
        "id": "omh9tr3",
        "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omh9tr3/",
        "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omh9tr3/",
        "parentId": "t3_1tgimff",
        "author": "furculture",
        "text": "Always thought about something like this getting made when I first saw foldable screen tech getting put in more consumer electronics. So much closer to getting a foldable monitor with more gaming-capable specs to it at some point in the future. ",
        "renderedHtml": "<div class=\"md\"><p>Always thought about something like this getting made when I first saw foldable screen tech getting put in more consumer electronics. So much closer to getting a foldable monitor with more gaming-capable specs to it at some point in the future. </p>\n</div>",
        "score": 1,
        "upvotes": 1,
        "createdAt": "2026-05-18T13:20:56.000Z",
        "createdUtc": 1779110456,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": null,
            "hasMore": false
          }
        }
      },
      {
        "id": "omhlop2",
        "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhlop2/",
        "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omhlop2/",
        "parentId": "t3_1tgimff",
        "author": "ImALeaf_OnTheWind",
        "text": "This is great for a smaller portable display when you're sourcing from a phone like a Samsung or Motorola that can be the brains when you don't want to carry a full laptop around. \n\nProblem is why would I want this when Xreal/Rokid/Viture/Rayneo microOLED wearable display glasses costs less than that and is even more portable and comfortable to use? ",
        "renderedHtml": "<div class=\"md\"><p>This is great for a smaller portable display when you&#39;re sourcing from a phone like a Samsung or Motorola that can be the brains when you don&#39;t want to carry a full laptop around. </p>\n\n<p>Problem is why would I want this when Xreal/Rokid/Viture/Rayneo microOLED wearable display glasses costs less than that and is even more portable and comfortable to use? </p>\n</div>",
        "score": 1,
        "upvotes": 1,
        "createdAt": "2026-05-18T14:21:00.000Z",
        "createdUtc": 1779114060,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": null,
            "hasMore": false
          }
        }
      },
      {
        "id": "omjtm8q",
        "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjtm8q/",
        "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjtm8q/",
        "parentId": "t3_1tgimff",
        "author": "descendantofJanus",
        "text": "Isn't this what they had in Westworld? ",
        "renderedHtml": "<div class=\"md\"><p>Isn&#39;t this what they had in Westworld? </p>\n</div>",
        "score": 1,
        "upvotes": 1,
        "createdAt": "2026-05-18T20:46:32.000Z",
        "createdUtc": 1779137192,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": null,
            "hasMore": false
          }
        }
      },
      {
        "id": "omjz8oh",
        "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjz8oh/",
        "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omjz8oh/",
        "parentId": "t3_1tgimff",
        "author": "Tegumentario",
        "text": "At the low low cost of a whole brand new computer",
        "renderedHtml": "<div class=\"md\"><p>At the low low cost of a whole brand new computer</p>\n</div>",
        "score": 1,
        "upvotes": 1,
        "createdAt": "2026-05-18T21:12:55.000Z",
        "createdUtc": 1779138775,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": null,
            "hasMore": false
          }
        }
      },
      {
        "id": "omk0pgd",
        "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk0pgd/",
        "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk0pgd/",
        "parentId": "t3_1tgimff",
        "author": "semibiquitous",
        "text": "This company will be bankrupt in 3...2...1...",
        "renderedHtml": "<div class=\"md\"><p>This company will be bankrupt in 3...2...1...</p>\n</div>",
        "score": 1,
        "upvotes": 1,
        "createdAt": "2026-05-18T21:19:58.000Z",
        "createdUtc": 1779139198,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": null,
            "hasMore": false
          }
        }
      },
      {
        "id": "omk2agr",
        "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk2agr/",
        "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omk2agr/",
        "parentId": "t3_1tgimff",
        "author": "Starstriker",
        "text": "People don't care about foldables. Just make gadgets with good enough specs and a lower price.",
        "renderedHtml": "<div class=\"md\"><p>People don&#39;t care about foldables. Just make gadgets with good enough specs and a lower price.</p>\n</div>",
        "score": 1,
        "upvotes": 1,
        "createdAt": "2026-05-18T21:27:44.000Z",
        "createdUtc": 1779139664,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": null,
            "hasMore": false
          }
        }
      },
      {
        "id": "omlt9hm",
        "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omlt9hm/",
        "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omlt9hm/",
        "parentId": "t3_1tgimff",
        "author": "Raven_gif",
        "text": "$1300 for 300nits. You could buy multiple pro grade monitors for that price. They gotta get that cost down another $1000 at the minimum.",
        "renderedHtml": "<div class=\"md\"><p>$1300 for 300nits. You could buy multiple pro grade monitors for that price. They gotta get that cost down another $1000 at the minimum.</p>\n</div>",
        "score": 1,
        "upvotes": 1,
        "createdAt": "2026-05-19T03:26:53.000Z",
        "createdUtc": 1779161213,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": null,
            "hasMore": false
          }
        }
      },
      {
        "id": "omlygmv",
        "url": "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omlygmv/",
        "permalink": "/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/omlygmv/",
        "parentId": "t3_1tgimff",
        "author": "JimmyKillsAlot",
        "text": "I understand early adopter tax but there is no way they are selling these in a range people will actually buy them enough to scale.",
        "renderedHtml": "<div class=\"md\"><p>I understand early adopter tax but there is no way they are selling these in a range people will actually buy them enough to scale.</p>\n</div>",
        "score": 1,
        "upvotes": 1,
        "createdAt": "2026-05-19T03:59:14.000Z",
        "createdUtc": 1779163154,
        "depth": 0,
        "isSubmitter": false,
        "stickied": false,
        "locked": false,
        "distinguished": null,
        "replies": {
          "items": [],
          "page": {
            "nextCursor": null,
            "hasMore": false
          }
        }
      }
    ]
  },
  "meta": {
    "requestId": "req_01example_lp",
    "creditsCharged": 1,
    "version": "v1"
  }
}
```

### Example JSON (not_found)

```json
{
  "data": {
    "lookupStatus": "not_found",
    "post": null,
    "comments": [],
    "page": {
      "nextCursor": null,
      "hasMore": false
    }
  },
  "meta": {
    "requestId": "req_01example_nf",
    "creditsCharged": 1,
    "version": "v1"
  }
}
```

### Machine-readable error codes

When an error JSON body is returned, it may include one of these `error.code` values (derived from the OpenAPI schemas for this operation; additional codes may exist at runtime):

- `bad_request`

## Error handling & retries

Interpret HTTP status codes using the descriptions below. Do not assume a JSON body unless the OpenAPI schema defines one for that status.

- **400**: Invalid request **Retry:** Fix the request; retrying the same invalid payload will not help.
- **401**: Missing or invalid API key **Retry:** Fix the API key first; retrying without changes will not help.
- **402**: Insufficient credits **Retry:** Do not retry without resolving billing/credits (retrying the same request will not help).
- **500**: Unexpected or billing error
- **502**: Lookup could not be completed from the response (unexpected or invalid data). **Retry:** May be transient; a few retries with backoff are reasonable.
- **503**: Service temporarily unavailable; safe to retry with backoff. **Retry:** Usually safe to retry with exponential backoff and jitter.

### Suggested client defaults

- Send the API key using the `x-api-key` header on every request.
- On `503` (and sometimes `502`), retry with backoff; cap retries and surface a clear error to the user.
- On `402`, surface an actionable billing message rather than blind retries.

## Examples

### TypeScript SDK

```typescript
import { SocialFetchClient } from "@socialfetch/sdk";

const client = new SocialFetchClient({
  apiKey: process.env.SOCIALFETCH_API_KEY!,
});

const result = await client.reddit.listPostComments({
  url: "https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/",
});

if (!result.ok) {
  console.error(result.error);
} else {
  console.log(result.value.data);
}
```

### Node.js

```javascript
const response = await fetch(
  "https://api.socialfetch.dev/v1/reddit/posts/comments?url=https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/",
  {
    headers: {
      "x-api-key": "YOUR_API_KEY",
    }
  }
);

const data = await response.json();
console.log(data);
```

### cURL

```bash
curl "https://api.socialfetch.dev/v1/reddit/posts/comments?url=https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/" \
  -H "x-api-key: YOUR_API_KEY"
```

### Python

```python
import requests

response = requests.get(
    "https://api.socialfetch.dev/v1/reddit/posts/comments?url=https://www.reddit.com/r/gadgets/comments/1tgimff/aura_displays_debuts_new_portable_monitor_with/",
    headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()
print(data)
```

### Example: optional query parameters

First request illustrating common optional query flags (adjust values to your integration):

```javascript
const url = "https://api.socialfetch.dev/v1/reddit/posts/comments?trim=true";
const response = await fetch(url, {
  headers: { "x-api-key": "YOUR_API_KEY" },
});
const data = await response.json();
```

### Example: next page (pagination)

After a successful response, if pagination is not finished, request the next page using `cursor` (URL-encode when composing the query string):

```javascript
const previous = await response.json();
const nextCursor = previous?.data?.page?.nextCursor;
const hasMore = previous?.data?.page?.hasMore;
if (!hasMore || nextCursor == null) {
  // no more pages
} else {
  const nextUrl = new URL("https://api.socialfetch.dev/v1/reddit/posts/comments");
  nextUrl.searchParams.set("cursor", nextCursor);
  // optionally preserve sort: nextUrl.searchParams.set("sortBy", "latest");
  const nextResponse = await fetch(nextUrl.toString(), {
    headers: { "x-api-key": "YOUR_API_KEY" },
  });
  const nextData = await nextResponse.json();
}
```