> ## 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 अवलोकन

> अपनी पोस्ट में जोड़ने के लिए हैशटैग उत्पन्न करें

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 आपकी सोशल मीडिया सामग्री को प्रासंगिक हैशटैग के साथ बेहतर बनाने के लिए शक्तिशाली टूल प्रदान करता है:

<ul className="custom-bullets">
  <li>
    <strong>बुद्धिमान हैशटैग निर्माण:</strong> आपकी सामग्री के कीवर्ड के आधार पर स्वचालित रूप से अनुकूलित हैशटैग बनाएँ,
    दृश्यता और एंगेजमेंट को अधिकतम करने के लिए रीयल-टाइम लोकप्रियता डेटा का लाभ उठाएँ।
  </li>

  <li>
    <strong>क्रॉस-प्लेटफ़ॉर्म समर्थन:</strong> Facebook, Instagram, LinkedIn, Threads, TikTok, Twitter और YouTube के लिए
    प्लेटफ़ॉर्म-विशिष्ट हैशटैग उत्पन्न करें ताकि प्रत्येक नेटवर्क पर प्रदर्शन को अनुकूलित किया जा सके।
  </li>

  <li>
    <strong>Instagram हैशटैग अनुसंधान:</strong> अपनी सामग्री रणनीति को सूचित करने और ट्रेंडिंग विषयों की पहचान करने के लिए किसी भी दिए गए हैशटैग
    के लिए सबसे लोकप्रिय या प्रासंगिक Instagram पोस्ट खोजें और उनका विश्लेषण करें।
  </li>

  <li>
    <strong>प्रदर्शन अनुकूलन:</strong> ऐसे ट्रेंडिंग, प्रासंगिक हैशटैग शामिल करके पोस्ट की खोज योग्यता और पहुँच में सुधार करें
    जो आपकी सामग्री और लक्षित दर्शकों के साथ संरेखित हों।
  </li>
</ul>
