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

# Hashtags API 概览

> 为你的帖子生成 hashtag

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} />

## Hashtags API 功能

Hashtags API 提供强大工具，帮助你用相关 hashtag 增强社交媒体内容：

<ul className="custom-bullets">
  <li>
    <strong>智能 hashtag 生成：</strong>根据内容关键词自动生成优化后的 hashtag，
    结合实时热度数据，最大化曝光与互动。
  </li>

  <li>
    <strong>跨平台支持：</strong>为 Facebook、Instagram、LinkedIn、Threads、TikTok、Twitter 和 YouTube
    生成各平台专属 hashtag，以优化每个网络的表现。
  </li>

  <li>
    <strong>Instagram hashtag 研究：</strong>搜索并分析给定 hashtag 下最热门或最相关的
    Instagram 帖子，为内容策略提供依据，发现流行话题。
  </li>

  <li>
    <strong>性能优化：</strong>通过加入与内容和目标受众契合的热门相关 hashtag，
    提升帖子的可发现性与触达范围。
  </li>
</ul>
