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