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

> ## Agent Instructions
> PostQueen's hosted API is https://api.postqueen.ai. The public API base is https://api.postqueen.ai/public/v1 and takes the raw API key in the Authorization header, with no Bearer prefix.
> The MCP server for posting is https://api.postqueen.ai/mcp/YOUR_API_KEY (or /mcp with Authorization: Bearer YOUR_API_KEY). docs.postqueen.ai/mcp only searches these docs and cannot post.
> The API key is under Connections > API Keys in the app, and only workspace admins can see it.

# Reddit

> What PostQueen will post to Reddit, and the limits it checks before a post is scheduled.

export const ChannelStatus = ({status, children}) => {
  const look = ({
    available: {
      color: 'green',
      label: 'Available'
    },
    'in-review': {
      color: 'yellow',
      label: 'In review'
    },
    soon: {
      color: 'gray',
      label: 'Soon'
    }
  })[status] || ({
    color: 'gray',
    label: status
  });
  return <div className="pq-status not-prose" data-status={status}>
      <Badge color={look.color} shape="pill" size="md">{look.label}</Badge>
      {children ? <span className="pq-status-note">{children}</span> : null}
    </div>;
};

<ChannelStatus status="soon">Cannot be connected on PostQueen yet.</ChannelStatus>

PostQueen will post text, link, image and video posts to the subreddits you pick, each with the title, post type and flair that subreddit needs.

<div className="pq-visual pq-visual-card pq-tint-lilac">
  <img noZoom src="https://mintcdn.com/forceplay/CEQwaAjYodG7Gh_r/images/site/channels/reddit.webp?fit=max&auto=format&n=CEQwaAjYodG7Gh_r&q=85&s=0cdc8589ca6a03249e04ac2915b10482" alt="A new Reddit post in the PostQueen composer, with the post types Reddit takes and the time it goes out" width="1200" height="1078" data-path="images/site/channels/reddit.webp" />
</div>

## What you can post

<CardGroup cols={2}>
  <Card title="Text" icon="type">
    Up to 10,000 characters of body text, and a title of 2 to 300 characters for each subreddit.
  </Card>

  <Card title="Media" icon="image">
    A media post takes exactly one image or one MP4 video. A video needs a thumbnail.
  </Card>

  <Card title="Post types" icon="layers">
    Text post, link post, and image or video post, to one subreddit or several at once.
  </Card>

  <Card title="Analytics" icon="chart-line">
    No analytics for Reddit.
  </Card>
</CardGroup>

**Not supported:** galleries, polls, NSFW and spoiler flags, video GIFs, and private or restricted subreddits.

## Connect Reddit

<Note>
  Reddit is listed in **Add Channel**, but it cannot be connected on PostQueen yet. Each subreddit's own rules, karma and flair requirements will still apply to the account you connect.
</Note>

## Post settings

Reddit posts are set up per subreddit. Choose **Add Subreddit** for each one, then:

* **Search Subreddit**: type a name, or paste an `r/name` or `reddit.com/r/name` link. Only public subreddits are offered.
* The post type: **Post** for text, **Link** or **Media**. Only the types the subreddit accepts are offered.
* **Title**: 2 to 300 characters.
* **Flair**: the subreddit's flairs. Required when the subreddit demands flair.
* **URL**: the link, for a **Link** post.

The body text is the same in every subreddit: only the title, type, link and flair differ. The field names and values for the API are on [Reddit posting settings](/public-api/providers/reddit).

## Good to know

* Before a post is scheduled, PostQueen checks that a media post has exactly one file and that a video has a thumbnail, and that each subreddit has a title of 2 to 300 characters.
* Reddit's Responsible Builder Policy forbids automated posting of identical or substantially similar content across subreddits. Write each post for its community.
* **Add comment** adds top-level comments under the post, each with its own delay. They work on a post to one subreddit: on a post sent to several subreddits, the comments fail.
* Subreddits are posted one at a time. If Reddit refuses one, PostQueen shows Reddit's own reason.
* When Reddit's answer is late, PostQueen checks your account for the post before it tries again, so a post is not sent twice.

## Next steps

<CardGroup cols={2}>
  <Card title="Create a post" icon="square-pen" href="/using/create-a-post">
    Write once for several channels, then schedule it, save a draft or post now.
  </Card>

  <Card title="Channels and their status" icon="layout-grid" href="/channels/overview">
    Which networks you can connect today, what each one posts, and its text limit.
  </Card>

  <Card title="Post from an AI agent" icon="bot" href="/agents/overview">
    Ask Claude, ChatGPT, Grok Bot or another agent to schedule the post for you.
  </Card>

  <Card title="A post did not go out" icon="triangle-alert" href="/troubleshooting/post-failed">
    Why a post fails and what to do about it.
  </Card>
</CardGroup>
