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

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

छवियों और वीडियो को अपलोड और पुनर्प्राप्त करके अपनी छवि और वीडियो गैलरी प्रबंधित करें। कृपया पोस्ट करने के लिए उपयोग करने से पहले मीडिया URL को सत्यापित करना सुनिश्चित करें।

<Tip>यदि आपका मीडिया पहले से ही किसी बाहरी URL, जैसे S3 bucket, द्वारा एक्सेस करने योग्य है, तो आप Ayrshare पर फ़ाइलें अपलोड करना छोड़ सकते हैं। बस `mediaURLs` body पैरामीटर में अपने बाहरी रूप से एक्सेस करने योग्य URL के साथ `/post` एंडपॉइंट पर POST करें और आपकी फ़ाइल अपने आप अपलोड हो जाएगी।</Tip>
