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

# Generate API अवलोकन

> विभिन्न वर्कफ़्लो के लिए AI उपयोगिताएँ

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={true} />

हम AI उपयोगिताओं का एक सेट प्रदान करते हैं जो सोशल मीडिया पोस्ट बनाने में सहायता करती हैं।

<CardGroup cols={2}>
  <Card title="Generate Text" icon="code" href="/apis/generate/post-text" horizontal />

  <Card title="Rewrite a Post" icon="code" href="/apis/generate/rewrite-post" horizontal />

  <Card title="Transcribe a Video" icon="code" href="/apis/generate/transcribe-video" horizontal />

  <Card title="Translate Post Text" icon="code" href="/apis/generate/translate-post" horizontal />

  <Card title="Generate Alt Text" icon="code" href="/apis/generate/image-alt-text" horizontal />

  <Card title="Sentiment Analysis" icon="code" href="/apis/generate/sentiment" horizontal />
</CardGroup>

## टोकन सीमाएँ

AI एंडपॉइंट्स को की गई प्रत्येक API कॉल के लिए, "टोकन" की एक निश्चित संख्या का उपयोग किया जाता है। ये टोकन आपके भेजे और प्राप्त डेटा के आधार पर परिकलित किए जाते हैं। हर महीने, आपके Max Pack और समग्र Ayrshare खाते को Business योजनाओं के लिए कुल 300,000 टोकन, Premium Plus योजनाओं के लिए 100,000, और Premium योजनाओं के लिए 50,000 आवंटित किए जाते हैं।

यह आवंटन प्रत्येक महीने के पहले दिन ताज़ा होता है। यह देखने के लिए कि किसी विशिष्ट API कॉल ने कितने टोकन का उपयोग किया, साथ ही महीने के लिए आपका कुल उपयोग, कृपया HTTP प्रतिक्रिया की जाँच करें।
