> ## 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.

# Twitch

> What PostQueen will post to Twitch, 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 chat messages and colored announcements into your own Twitch chat, such as a go-live reminder. Twitch's API cannot publish videos or posts, so chat is what PostQueen sends.

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

## What you can post

<CardGroup cols={2}>
  <Card title="Text" icon="type">
    Up to 500 characters per message.
  </Card>

  <Card title="Media" icon="image">
    None. Chat is text only: media on the post is not sent.
  </Card>

  <Card title="Post types" icon="layers">
    Chat message or announcement, with replies after it.
  </Card>

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

**Not supported:** videos and clips, the stream title, category and tags, and chats of channels you do not own.

## Connect Twitch

<Note>
  Twitch is listed in **Add Channel**, but it cannot be connected on PostQueen yet. It will post into the chat of the Twitch channel you sign in with.
</Note>

## Post settings

Each Twitch post in the composer has these settings:

* **Message Type**: **Chat Message** or **Announcement**. It starts on **Chat Message**.
* **Announcement Color**: **Primary (Default)**, **Blue**, **Green**, **Orange** or **Purple**. Shown for announcements only.

The field names and values for the API are on [Twitch posting settings](/public-api/providers/twitch).

## Good to know

* **Add comment** adds follow-up messages, each with its own delay and no media. Each chat message replies to the one before. When the post is an announcement, the follow-ups are announcements too.
* Before a post is scheduled, PostQueen checks that each message has at most 500 characters.
* PostQueen does not read Twitch's answer to an announcement, so it is recorded as posted even when Twitch refused it.
* The link to a published message is your channel page, not the message.

## 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>
