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

# Kick

> What PostQueen will post to Kick, 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 into your own Kick channel, such as a go-live reminder, with follow-ups as replies. Kick's API has no way to upload videos, 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/kick.webp?fit=max&auto=format&n=CEQwaAjYodG7Gh_r&q=85&s=1f6de987bfb3bebe7c2b21ea2493f75d" alt="A new Kick post in the PostQueen composer, with the post types Kick takes and the time it goes out" width="1200" height="1078" data-path="images/site/channels/kick.webp" />
</div>

## What you can post

<CardGroup cols={2}>
  <Card title="Text" icon="type">
    Up to 500 characters per message. Kick also caps a message at 2,048 bytes, so a message heavy in emoji holds fewer.
  </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, with replies after it.
  </Card>

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

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

## Connect Kick

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

## Post settings

Kick posts have no settings of their own in the composer: the message text is all a post carries. The API fields are on [Kick posting settings](/public-api/providers/kick).

## Good to know

* **Add comment** adds follow-up messages, each with its own delay and no media. Each one replies to the message before it.
* Before a post is scheduled, PostQueen checks that each message has at most 500 characters.
* 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>
