> ## 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-lookup-endpoints">
  ## X API के सूची lookup endpoints की तुलना
</div>

v2 सूची lookup endpoint समूह standard v1.1 [GET lists/show](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-show) और  [GET lists/ownership](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-ownerships) endpoints की जगह लेगा। अगर आपके पास ऐसा code, ऐप, या tool है जो सूची lookup endpoints के इन versions में से किसी एक का उपयोग करता है और आप नए X API v2 endpoint पर migrate करने पर विचार कर रहे हैं, तो guides का यह सेट आपके लिए है।

नीचे दी गई तालिकाएँ standard v1.1 और X API v2 सूची endpoints की तुलना करती हैं:

**id के आधार पर सूची lookup**

|                                                                        |                                                                                                                                                 |                                                                                                                                                 |
| :--------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------- |
| विवरण                                                                  | Standard v1.1                                                                                                                                   | X API v2                                                                                                                                        |
| समर्थित HTTP methods                                                   | `GET`                                                                                                                                           | `GET`                                                                                                                                           |
| Host domain                                                            | `https://api.x.com`                                                                                                                             | `https://api.x.com`                                                                                                                             |
| Endpoint path                                                          | `/1.1/lists/show.json`                                                                                                                          | `/2/lists/:id`                                                                                                                                  |
| [प्रमाणीकरण](/hi/resources/fundamentals/authentication)                | OAuth 1.0a User Context<br /><br />केवल ऐप                                                                                                      | OAuth 1.0a User Context<br /><br />PKCE के साथ OAuth 2.0 Authorization Code<br /><br />केवल ऐप                                                  |
| डिफ़ॉल्ट request [रेट लिमिट्स](/hi/resources/fundamentals/rate-limits) | OAuth 1.0a के साथ 15 मिनट में 75 requests<br /><br />OAuth 2.0 के साथ 15 मिनट में 75 requests<br /><br />केवल ऐप के साथ 15 मिनट में 75 requests | OAuth 1.0a के साथ 15 मिनट में 75 requests<br /><br />OAuth 2.0 के साथ 15 मिनट में 75 requests<br /><br />केवल ऐप के साथ 15 मिनट में 75 requests |

**उपयोगकर्ता के स्वामित्व वाली सूची lookup**

|                                                                        |                                                                                             |                                                                                                                                                 |
| :--------------------------------------------------------------------- | :------------------------------------------------------------------------------------------ | :---------------------------------------------------------------------------------------------------------------------------------------------- |
| विवरण                                                                  | Standard v1.1                                                                               | X API v2                                                                                                                                        |
| समर्थित HTTP methods                                                   | `GET`                                                                                       | `GET`                                                                                                                                           |
| Host domain                                                            | `https://api.x.com`                                                                         | `https://api.x.com`                                                                                                                             |
| Endpoint path                                                          | `/1.1/lists/ownerships.json`                                                                | `/2/users/:id/owned_lists`                                                                                                                      |
| [प्रमाणीकरण](/hi/resources/fundamentals/authentication)                | OAuth 1.0a User Context<br /><br />केवल ऐप                                                  | OAuth 1.0a User Context<br /><br />PKCE के साथ OAuth 2.0 Authorization Code<br /><br />केवल ऐप                                                  |
| डिफ़ॉल्ट request [रेट लिमिट्स](/hi/resources/fundamentals/rate-limits) | OAuth 1.0a के साथ 15 मिनट में 15 requests<br /><br />केवल ऐप के साथ 15 मिनट में 15 requests | OAuth 1.0a के साथ 15 मिनट में 15 requests<br /><br />OAuth 2.0 के साथ 15 मिनट में 15 requests<br /><br />केवल ऐप के साथ 15 मिनट में 15 requests |

X API v2 endpoints तक पहुँचने के लिए, आपको [डेवलपर खाता](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 endpoints का access पाने के बारे में अधिक जानने के लिए हमारा [getting started](/hi/x-api/getting-started/getting-access) page देखें।

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

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

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