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

# List lookup migration overview

> Compare Standard v1.1 lists/show and lists/list with X API v2 List lookup endpoints, including new fields, expansions, and authentication options.

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>;
};

## Comparing X API’s List lookup endpoints

The v2 List lookup endpoint group will replace the 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) and  [GET lists/ownership](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-ownerships) endpoints. If you have code, apps, or tools that use one of these versions of the List lookup endpoints, and are considering migrating to the newer X API v2 endpoint, then this set of guides is for you.

The following tables compare the standard v1.1 and X API v2 List endpoints:

**List Lookup by ID**

|                                                                    |                                                                                                                                        |                                                                                                                                         |
| :----------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------- |
| Description                                                        | Standard v1.1                                                                                                                          | X API v2                                                                                                                                |
| HTTP methods supported                                             | `GET`                                                                                                                                  | `GET`                                                                                                                                   |
| Host domain                                                        | `https://api.x.com`                                                                                                                    | `https://api.x.com`                                                                                                                     |
| Endpoint path                                                      | `/1.1/lists/show.json`                                                                                                                 | `/2/lists/:id`                                                                                                                          |
| [Authentication](/resources/fundamentals/authentication)           | OAuth 1.0a User Context<br /><br />App only                                                                                            | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE<br /><br />App only                                           |
| Default request [rate limits](/resources/fundamentals/rate-limits) | 75 requests per 15 min with OAuth 1.0a<br /><br />75 requests per 15min with OAuth 2.0<br /><br />75 requests per 15 min with App only | 75 requests per 15 min with OAuth 1.0a<br /><br />75 requests per 15 min with OAuth 2.0<br /><br />75 requests per 15 min with App only |

**User owned List lookup**

|                                                                    |                                                                                        |                                                                                                                                        |
| :----------------------------------------------------------------- | :------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------- |
| Description                                                        | Standard v1.1                                                                          | X API v2                                                                                                                               |
| HTTP methods supported                                             | `GET`                                                                                  | `GET`                                                                                                                                  |
| Host domain                                                        | `https://api.x.com`                                                                    | `https://api.x.com`                                                                                                                    |
| Endpoint path                                                      | `/1.1/lists/ownerships.json`                                                           | `/2/users/:id/owned_lists`                                                                                                             |
| [Authentication](/resources/fundamentals/authentication)           | OAuth 1.0a User Context<br /><br />App only                                            | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE<br /><br />App only                                          |
| Default request [rate limits](/resources/fundamentals/rate-limits) | 15 requests per 15 min with OAuth 1.0a<br /><br />15 requests per 15 min with App only | 15 requests per 15 min with OAuth 1.0a<br /><br />15 requests per 15min with OAuth 2.0<br /><br />15 requests per 15 min with App only |

To access the X API v2 endpoints, you must [sign up for a developer account](https://developer.x.com/en/portal/petition/essential/basic-info). When authenticating, you must use keys and tokens from a [developer App](/resources/fundamentals/developer-apps) that is located within a [Project](/resources/fundamentals/developer-apps). 

Learn more about getting access to the X API v2 endpoints in our [getting started](/x-api/getting-started/getting-access) page.

<div className="flex space-x-2">
  <Button href="/x-api/lists/list-lookup/introduction">
    Quick start
  </Button>

  <Button href="https://github.com/xdevplatform/Twitter-API-v2-sample-code">
    Sample code
  </Button>

  <Button href="https://www.postman.com/xapidevelopers/x-api-public-workspace/collection/34902927-2efc5689-99c6-4ab6-8091-996f35c2fd80">
    Run in Postman
  </Button>
</div>
