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

# अवलोकन

export const Button = ({href, children}) => {
  return <div className="not-prose group">
    <a href={href}>
      <button className="flex items-center space-x-2.5 py-1 px-4 bg-primary-dark dark:bg-white text-white dark:text-gray-950 rounded-full group-hover:opacity-[0.9] font-medium">
        <span>
          {children}
        </span>
        <svg width="3" height="24" viewBox="0 -9 3 24" class="h-6 rotate-0 overflow-visible"><path d="M0 0L3 3L0 6" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"></path></svg>
      </button>
    </a>
  </div>;
};

<div id="comparing-x-apis-list-posts-lookup-endpoints">
  ## X API के सूची पोस्ट्स लुकअप एंडपॉइंट्स की तुलना
</div>

v2 सूची पोस्ट्स लुकअप एंडपॉइंट, मानक v1.1 [GET lists/statuses](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-statuses) की जगह लेगा। अगर आपके पास ऐसा कोड, ऐप्स या टूल हैं जो एंडपॉइंट के इस संस्करण का उपयोग करते हैं, और आप नए X API v2 एंडपॉइंट पर माइग्रेट करने पर विचार कर रहे हैं, तो गाइड्स का यह सेट आपके लिए है।

नीचे दी गई तालिकाएँ मानक v1.1 और X API v2 सूची एंडपॉइंट्स की तुलना करती हैं:

**id द्वारा सूची लुकअप**

|                                                                       |                                                                                           |                                                                                                                                              |
| :-------------------------------------------------------------------- | :---------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------- |
| विवरण                                                                 | मानक v1.1                                                                                 | X API v2                                                                                                                                     |
| समर्थित HTTP मेथड्स                                                   | `GET`                                                                                     | `GET`                                                                                                                                        |
| होस्ट डोमेन                                                           | `https://api.x.com`                                                                       | `https://api.x.com`                                                                                                                          |
| एंडपॉइंट पाथ                                                          | `/1.1/lists/statuses.json`                                                                | `/2/lists/:id/tweets`                                                                                                                        |
| [प्रमाणीकरण](/hi/resources/fundamentals/authentication)               | OAuth 1.0a उपयोगकर्ता संदर्भ<br /><br />केवल ऐप                                           | OAuth 1.0a उपयोगकर्ता संदर्भ<br /><br />PKCE के साथ OAuth 2.0 Authorization Code<br /><br />केवल ऐप                                          |
| डिफ़ॉल्ट अनुरोध [रेट लिमिट्स](/hi/resources/fundamentals/rate-limits) | OAuth 1.0a के साथ 15 मिनट में 900 अनुरोध<br /><br />केवल ऐप के साथ 15 मिनट में 900 अनुरोध | OAuth 1.0a के साथ 15 मिनट में 900 अनुरोध<br /><br />OAuth 2.0 के साथ 15 मिनट में 900 अनुरोध<br /><br />केवल ऐप के साथ 15 मिनट में 900 अनुरोध |

X API v2 एंडपॉइंट्स तक पहुँचने के लिए, आपको [डेवलपर खाते के लिए साइन अप](https://developer.x.com/en/portal/petition/essential/basic-info) करना होगा। प्रमाणीकरण करते समय, आपको ऐसे [डेवलपर ऐप](/hi/resources/fundamentals/developer-apps) की keys और tokens का उपयोग करना होगा, जो किसी [Project](/hi/resources/fundamentals/developer-apps) के भीतर स्थित हो। 

X API v2 एंडपॉइंट्स तक पहुँच पाने के बारे में अधिक जानने के लिए, हमारा [शुरुआत करना](/hi/x-api/getting-started/getting-access) पेज देखें।

<div className="flex space-x-2">
  <Button href="/hi/x-api/lists/list-tweets/quickstart">
    त्वरित शुरुआत
  </Button>

  <Button href="https://github.com/xdevplatform/Twitter-API-v2-sample-code">
    नमूना कोड
  </Button>

  <Button href="https://app.getpostman.com/run-collection/9956214-784efcda-ed4c-4491-a4c0-a26470a67400">
    Postman में चलाएँ
  </Button>
</div>
