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

> Generate hashtags to add to your posts

export const PlansAvailable = ({plans = [], maxPackRequired}) => {
  let displayPlans = plans;
  if (plans && plans.length === 1) {
    const lowerCasePlan = plans[0].toLowerCase();
    if (lowerCasePlan === "basic") {
      displayPlans = ["Basic", "Premium", "Business", "Enterprise"];
    } else if (lowerCasePlan === "business") {
      displayPlans = ["Business", "Enterprise"];
    } else if (lowerCasePlan === "premium") {
      displayPlans = ["Premium", "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 Features

The Hashtags API provides powerful tools to enhance your social media content with relevant hashtags:

<ul className="custom-bullets">
  <li>
    <strong>Intelligent Hashtag Generation:</strong> Automatically create optimized hashtags based
    on your content's keywords, leveraging real-time popularity data to maximize visibility and
    engagement.
  </li>

  <li>
    <strong>Cross-Platform Support:</strong> Generate platform-specific hashtags tailored for
    Facebook, Instagram, LinkedIn, Threads, TikTok, Twitter, and YouTube to optimize performance on each
    network.
  </li>

  <li>
    <strong>Instagram Hashtag Research:</strong> Search and analyze the most popular or relevant
    Instagram posts for any given hashtag to inform your content strategy and identify trending
    topics.
  </li>

  <li>
    <strong>Performance Optimization:</strong> Improve post discoverability and reach by
    incorporating trending, relevant hashtags that align with your content and target audience.
  </li>
</ul>
