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

# VK

> What PostQueen will post to VK, 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 and photos to your personal VK wall, with follow-ups as comments on the post.

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

## What you can post

<CardGroup cols={2}>
  <Card title="Text" icon="type">
    Up to 2,048 characters.
  </Card>

  <Card title="Media" icon="image">
    Photos, uploaded to VK for you. VK takes up to 10 attachments on a post and photos of up to 50 MB.
  </Card>

  <Card title="Post types" icon="layers">
    Wall post on your own wall, with comments under it.
  </Card>

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

**Not supported:** video (attach photos only), community and group walls, posting as a community, documents, link cards and polls.

## Connect VK

<Note>
  VK is listed in **Add Channel**, but it cannot be connected on PostQueen yet. It will connect a personal VK account through VK ID, and posts will go to that account's own wall.
</Note>

## Post settings

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

## Good to know

* **Add comment** adds comments under the wall post, each with its own delay. A comment can carry photos.
* PostQueen does not check the number of photos or their size first: VK refuses what it does not accept.
* VK reports some errors inside a normal-looking answer. A post VK refused can then show as published, with a link that leads nowhere, so check the wall after the first posts.
* The link to a published post opens it in the VK feed.

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