---
title: "Get Reddit detailed posts"
method: GET
path: "/uploadposts/reddit/detailed-posts"
tags: ["Platform Integration"]
---

# Get Reddit detailed posts

`GET /uploadposts/reddit/detailed-posts`

Retrieve detailed posts from a Reddit account connected to a profile, including complete media information. Supports automatic pagination up to 2000 posts.

## Query parameters

- `profile_username` string, required

## Response `200`

Reddit posts retrieved successfully.

- object
  - `posts` RedditPost[]
    - `id` string
    - `title` string
    - `subreddit` string
    - `body` string
    - `likes` integer
    - `comments` integer
    - `impressions` integer
    - `has_image` boolean
    - `has_video` boolean
    - `media` object[]
      - `type` 'image' | 'video' | 'external_video'
      - `url` string
      - `width` integer
      - `height` integer
      - `duration` number — Duration in seconds (video only).
      - `thumbnail` string — Thumbnail URL (external_video only).
      - `provider` string — Provider name (external_video only).
    - `url` string
    - `created_at` string, date-time
    - `thumbnail` string

## Other responses

- `400` — Bad Request — Missing or invalid parameters.
- `500` — Internal Server Error.

---

[API](https://skmtc.dev/upload-post/apis/upload-post-api.md) · [All operations](https://skmtc.dev/upload-post/apis/upload-post-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/upload-post/upload-post-api/revisions/10bd964e4415/schema)
