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

# Dribbble

> What PostQueen will post to Dribbble, 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 Dribbble shots for you or for one of your teams: one image at exactly 400 × 300 or 800 × 600 pixels, with a title and a description.

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

## What you can post

<CardGroup cols={2}>
  <Card title="Text" icon="type">
    A description of up to 40,000 characters, and a title, which every shot needs.
  </Card>

  <Card title="Media" icon="image">
    Exactly one image of 400 × 300 or 800 × 600 pixels. Dribbble takes GIF, JPG or PNG files of up to 8 MB.
  </Card>

  <Card title="Post types" icon="layers">
    Shot, on your own profile or for a team you belong to.
  </Card>

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

**Not supported:** video and animated shots, tags, larger images such as 1600 × 1200, and comments or follow-ups.

## Connect Dribbble

<Note>
  Dribbble is listed in **Add Channel**, but it cannot be connected on PostQueen yet. The account you connect will need to be allowed to upload shots.
</Note>

## Post settings

Each Dribbble post in the composer has these settings:

* **Title**: the shot title. Required.
* **Select a team**: post the shot for one of your Dribbble teams. Shown only when your account belongs to a team. Leave it empty to post on your own profile.

The post text becomes the shot description. The field names and values for the API are on [Dribbble posting settings](/public-api/providers/dribbble).

## Good to know

* Before a post is scheduled, PostQueen checks that it has exactly one image, that it is not an MP4, and that it measures exactly 400 × 300 or 800 × 600 pixels.
* File size and format are Dribbble's rules, and PostQueen does not check them first: Dribbble refuses other files when the shot is published.
* A Dribbble connection does not expire. If access is withdrawn on Dribbble's side, the channel asks to be reconnected.

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