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

# Supported Social Networks

> All social networks supported by the Ayrshare /post API: Bluesky, Facebook, Google Business Profile, Instagram, LinkedIn, Pinterest, Reddit, Snapchat, Telegram, Threads, TikTok, X/Twitter, and YouTube, each with its own publishing options and limits.

export const PlansAvailable = ({plans = [], maxPackRequired}) => {
  let displayPlans = plans;
  if (plans && plans.length === 1) {
    const lowerCasePlan = plans[0].toLowerCase();
    if (lowerCasePlan === "business") {
      displayPlans = ["Launch", "Business", "Enterprise"];
    } else if (lowerCasePlan === "premium") {
      displayPlans = ["Premium", "Launch", "Business", "Enterprise"];
    }
  }
  return <Note>
Available on {displayPlans.length === 1 ? "the " : ""}
{displayPlans.join(", ").replace(/\b\w/g, l => l.toUpperCase())}{" "}
{displayPlans.length > 1 ? "plans" : "plan"}.

{maxPackRequired && <span onClick={() => window.open('https://www.ayrshare.com/docs/additional/maxpack', '_self')} className="flex items-center mt-2 cursor-pointer">
 <span className="px-1.5 py-0.5 rounded text-sm" style={{
    backgroundColor: '#C264B6',
    color: 'white',
    fontSize: '12px'
  }}>
   Max Pack required
 </span>
</span>}
</Note>;
};

<PlansAvailable plans={["premium"]} maxPackRequired={false} />

The Ayrshare [/post endpoint](/apis/post/post) publishes to every social network below from a single API call.
Add one or more networks to the `platforms` array and Ayrshare handles the network-specific formatting, media conversion, and delivery.

Each network supports its own publishing options, media types, and limits. Select a network below for its full reference.

## Supported Social Networks

<CardGroup cols={3}>
  <Card title="Bluesky" icon="bluesky" iconType="duotone" href="/apis/post/social-networks/bluesky">
    Text posts with up to 4 images or 1 video, alt text, and animated GIFs.
  </Card>

  <Card title="Facebook" icon="facebook" iconType="duotone" href="/apis/post/social-networks/facebook">
    Page posts, Reels, image carousels, and automatic link previews.
  </Card>

  <Card title="Google Business Profile" icon="google" iconType="duotone" href="/apis/post/social-networks/google">
    Standard What's New posts, events, and offers, plus single image or video uploads.
  </Card>

  <Card title="Instagram" icon="instagram" iconType="duotone" href="/apis/post/social-networks/instagram">
    Feed posts, Reels, Stories, and carousels of up to 10 images or videos.
  </Card>

  <Card title="LinkedIn" icon="linkedin" iconType="duotone" href="/apis/post/social-networks/linkedin">
    Personal and company pages, documents (PDF/PPT/DOC), and up to 9 images.
  </Card>

  <Card title="Pinterest" icon="pinterest" iconType="duotone" href="/apis/post/social-networks/pinterest">
    Image and video Pins, carousels of up to 5 images, and board selection.
  </Card>

  <Card title="Reddit" icon="reddit" iconType="duotone" href="/apis/post/social-networks/reddit">
    Submit image or text posts to any subreddit you have access to.
  </Card>

  <Card title="Snapchat" icon="snapchat" iconType="duotone" href="/apis/post/social-networks/snapchat">
    Stories and Spotlight Snaps with a single image or video per post.
  </Card>

  <Card title="Telegram" icon="telegram" iconType="duotone" href="/apis/post/social-networks/telegram">
    Channel and group posts with an image or video, animated GIFs, and link previews.
  </Card>

  <Card title="Threads" icon="threads" iconType="duotone" href="/apis/post/social-networks/threads">
    Text posts and carousels of up to 20 combined images or videos.
  </Card>

  <Card title="TikTok" icon="tiktok" iconType="duotone" href="/apis/post/social-networks/tiktok">
    Direct video publishing plus photo posts of up to 35 images.
  </Card>

  <Card title="X (Twitter)" icon="x-twitter" iconType="duotone" href="/apis/post/social-networks/x-twitter">
    Tweets with up to 4 images or 1 video, long video, and BYO credentials.
  </Card>

  <Card title="YouTube" icon="youtube" iconType="duotone" href="/apis/post/social-networks/youtube">
    Publish videos with a title, description, tags, visibility, and playlists.
  </Card>
</CardGroup>

## Posting at a Glance

A quick reference for the most common publishing limits. See [Character Limits](/help-center/technical-support/character_limits) and [Media Requirements](/media-guidelines/overview) for the complete, per-network reference.

| Network                                                      | Post Characters      | Max Images | Video             |
| ------------------------------------------------------------ | -------------------- | ---------- | ----------------- |
| [Bluesky](/apis/post/social-networks/bluesky)                | 300                  | 4          | 1                 |
| [Facebook](/apis/post/social-networks/facebook)              | 63,206               | 10         | 1                 |
| [Google Business Profile](/apis/post/social-networks/google) | 1,500                | 1          | 1                 |
| [Instagram](/apis/post/social-networks/instagram)            | 2,200                | 10         | 1                 |
| [LinkedIn](/apis/post/social-networks/linkedin)              | 3,000                | 9          | 1                 |
| [Pinterest](/apis/post/social-networks/pinterest)            | 500                  | 5          | 1                 |
| [Reddit](/apis/post/social-networks/reddit)                  | 5,000                | 1          | Not yet supported |
| [Snapchat](/apis/post/social-networks/snapchat)              | 500                  | 1          | 1                 |
| [Telegram](/apis/post/social-networks/telegram)              | 1,024                | 1          | 1                 |
| [Threads](/apis/post/social-networks/threads)                | 500                  | 20         | 1                 |
| [TikTok](/apis/post/social-networks/tiktok)                  | 2,200                | 35         | 1                 |
| [X (Twitter)](/apis/post/social-networks/x-twitter)          | 280 (25,000 Premium) | 4          | 1                 |
| [YouTube](/apis/post/social-networks/youtube)                | 5,000                | Video only | 1                 |

<Info>
  Most networks accept **either** multiple images **or** a single video in one post, not both. Instagram and Threads are the
  exceptions: their carousels may combine images and videos (up to 10 and 20 items respectively). See each network's page and the
  [Media Requirements](/media-guidelines/overview) for the exact rules.
</Info>

## Posting to Multiple Networks

Publish the same content everywhere by listing each network in the `platforms` array. Network-specific options are passed in their
own object (for example, `instagramOptions` or `youTubeOptions`) and are ignored by the other networks.

```json Post to Multiple Networks theme={"system"}
{
  "post": "Launch day is here! 🚀",
  "platforms": ["bluesky", "facebook", "instagram", "linkedin", "twitter"],
  "mediaUrls": ["https://img.ayrshare.com/012/gb.jpg"]
}
```

<Note>
  Each network must first be linked to the user profile. See [Connect Social Accounts](/dashboard/connect-social-accounts/overview)
  to authorize the networks you want to publish to.
</Note>
