> ## 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 members migration overview

> Compare Standard v1.1 List members endpoints with X API v2 List members lookup and manage List members endpoints for migration planning.

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 members endpoints

The v2 List members endpoint group will replace the standard v1.1 [GET lists/members](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-members), [GET lists/memberships](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-memberships), [POST lists/members/create](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/post-lists-members-create) and [POST lists/members/destroy](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/post-lists-members-destroy) endpoints. If you have code, apps, or tools that use one of these versions of the List member endpoints, and are considering migrating to the newer X API v2 endpoint, then this set of guides is for you. 

### List members lookup

The v2 List members lookup endpoints will replace the standard  [GET lists/members](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-members), [GET lists/memberships](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-memberships), endpoints.

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

**List member 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/members.json`                                                              | `/2/lists/:id/members`                                                                                                                     |
| [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) | 900 requests per 15 min with OAuth 1.0a<br /><br />75 requests per 15min with App only | 900 requests per 15 min with OAuth 1.0a<br /><br />900 requests per 15 min with OAuth 2.0<br /><br />900 requests per 15 min with App only |

**List membership 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/memberships.json`                                                         | `/2/users/:id/list_memberships`                                                                                                        |
| [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 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 15min with App only |

### Manage List members

The v2 manage List members endpoints will replace the standard [POST lists/members/create](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/post-lists-members-create), [POST lists/members/destroy](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/post-lists-members-destroy) endpoints.

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

**Add member**

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

**Remove member**

| Description                                                        | Standard v1.1                          | X API v2                                                                  |
| :----------------------------------------------------------------- | :------------------------------------- | :------------------------------------------------------------------------ |
| HTTP methods supported                                             | POST                                   | DELETE                                                                    |
| Host domain                                                        | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com)                                    |
| Endpoint path                                                      | /1.1/lists/members/destroy.json        | /2/lists/:id/:user\_id                                                    |
| [Authentication](/resources/fundamentals/authentication)           | OAuth 1.0a User Context                | OAuth 1.0a User Context<br /><br />OAuth 2.0 Authorization Code with PKCE |
| Default request [rate limits](/resources/fundamentals/rate-limits) | None                                   | 300 requests per 15 min (per user)                                        |

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-members/quickstart/overview">
    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>
