> ## Documentation Index
> Fetch the complete documentation index at: https://generaltranslation.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# X Developer Platform लाइवस्ट्रीम्स

export const BroadcastCarousel = ({broadcasts}) => {
  if (!broadcasts) {
    return null;
  }
  if (broadcasts.length === 0) {
    return null;
  }
  const sorted = [...broadcasts].sort((a, b) => {
    const dateA = a.date ? new Date(a.date) : null;
    const dateB = b.date ? new Date(b.date) : null;
    if (!dateA && !dateB) return 0;
    if (!dateA) return 1;
    if (!dateB) return -1;
    if (isNaN(dateA.getTime()) || isNaN(dateB.getTime())) return 0;
    return dateB - dateA;
  });
  return <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 py-5">
      {sorted.map((broadcast, index) => {
    if (!broadcast.url) return null;
    return <a key={broadcast.url || index} href={broadcast.url} target="_blank" rel="noopener noreferrer" className="block not-prose text-inherit no-underline rounded-xl overflow-hidden bg-black border border-gray-700 transition-transform hover:-translate-y-0.5 hover:shadow-lg" style={{
      margin: 0
    }}>
            <div className="relative w-full overflow-hidden" style={{
      paddingTop: '56.25%',
      background: 'linear-gradient(135deg, #0f0f0f 0%, #050505 100%)',
      backgroundSize: 'cover',
      backgroundPosition: 'center'
    }}>
              <div className="absolute opacity-[0.15]" style={{
      bottom: '-14%',
      left: '-7%',
      width: '300px',
      height: '300px'
    }}>
                <svg width="300" height="300" viewBox="0 0 1200 1227" fill="none" xmlns="http://www.w3.org/2000/svg">
                  <path d="M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z" fill="white" />
                </svg>
              </div>
              <div className="absolute text-white cursor-pointer bg-black/30" style={{
      top: '50%',
      left: '50%',
      transform: 'translate(-50%, -50%)',
      width: '100%',
      height: '100%',
      display: 'flex',
      alignItems: 'center',
      justifyContent: 'center'
    }}>
                <div className="w-16 h-16 rounded-full bg-black/90 border-2 border-white/30 flex items-center justify-center transition-transform hover:scale-110" style={{
      display: 'flex',
      alignItems: 'center',
      justifyContent: 'center'
    }}>
                  <div className="text-white text-2xl" style={{
      marginLeft: '2px'
    }}>▶</div>
                </div>
              </div>
            </div>
            {broadcast.title && <div className="p-3 bg-black border-t border-gray-700">
                <div className="text-white text-sm font-semibold leading-snug mb-1">
                  {broadcast.title}
                </div>
                {broadcast.date && <div className="text-gray-400 text-xs font-normal leading-snug">
                    {broadcast.date}
                  </div>}
              </div>}
          </a>;
  })}
    </div>;
};

X Developer Platform के बारे में पिछले प्रसारणों की रिकॉर्डिंग और रीप्ले देखें, जिन्हें डेवलपर समुदाय को हमारे टूल्स के साथ सीखने और निर्माण करने में मदद देने के लिए तैयार किया गया है।

इनमें गहन जानकारी, शुरुआत करने की गाइड, और बहुत कुछ शामिल है।

<div id="past-broadcasts">
  ## पिछले प्रसारण
</div>

<BroadcastCarousel
  broadcasts={[
{
url: 'https://x.com/i/broadcasts/1dRKZayWLvwxB',
title: 'Community Notes AI Note Writer API',
date: '25 सितंबर, 2025'
},
{
url: 'https://x.com/i/broadcasts/1vOxwdbkgMdKB',
title: 'X API v2 के साथ रीयल-टाइम डेटा स्ट्रीमिंग',
date: '21 अगस्त, 2025'
},
{
url: 'https://x.com/i/broadcasts/1jMJgkmOONyJL',
title: 'Account Activity API v2',
date: '24 जुलाई, 2025'
},
{
url: 'https://x.com/i/broadcasts/1BdGYqOwPXyGX',
title: 'नए X API v2 analytics endpoints को समझना',
date: '12 जून, 2025'
},
{
url: 'https://x.com/i/broadcasts/1yoJMoLQqdRKQ',
title: 'X API Developer Experience को समझना',
date: '9 अप्रैल, 2025'
},
{
url: 'https://x.com/i/broadcasts/1yoKMoQbjlXJQ',
title: 'X API v2 में नए Media Upload endpoint के साथ शुरुआत',
date: '5 मार्च, 2025'
},
{
url: 'https://x.com/i/broadcasts/1BRJjPqnBqaKw',
title: 'डेवलपर ऐप्स को X API 2 पर माइग्रेट करना',
date: '14 मई, 2024'
}
]}
/>
