> ## 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-members-endpoints">
  ## X API의 리스트 멤버 엔드포인트 비교
</div>

v2 리스트 멤버 엔드포인트 그룹은 표준 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) 및 [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) 엔드포인트를 대체합니다. 이러한 리스트 멤버 엔드포인트 버전 중 하나를 사용하는 코드, App 또는 도구가 있고 더 새로운 X API v2 엔드포인트로 마이그레이션하는 것을 고려 중이라면, 이 가이드 모음이 도움이 될 것입니다. 

<div id="list-members-lookup">
  ### 리스트 멤버 조회
</div>

v2 리스트 멤버 조회 엔드포인트는 기존 표준 [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) 엔드포인트를 대체합니다.

다음 표는 기존 v1.1과 X API v2 리스트 엔드포인트를 비교한 것입니다:

**리스트 멤버 조회**

|                                                       |                                                                   |                                                                                                           |
| :---------------------------------------------------- | :---------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------- |
| 설명                                                    | 표준 v1.1                                                           | X API v2                                                                                                  |
| 지원 HTTP 메서드                                           | `GET`                                                             | `GET`                                                                                                     |
| 호스트 도메인                                               | `https://api.x.com`                                               | `https://api.x.com`                                                                                       |
| 엔드포인트 경로                                              | `/1.1/lists/members.json`                                         | `/2/lists/:id/members`                                                                                    |
| [인증](/ko/resources/fundamentals/authentication)       | OAuth 1.0a 사용자 컨텍스트<br /><br />App only                           | OAuth 1.0a 사용자 컨텍스트<br /><br />OAuth 2.0 Authorization Code with PKCE<br /><br />App only                 |
| 기본 요청 [요청 한도](/ko/resources/fundamentals/rate-limits) | OAuth 1.0a 사용 시 15분당 900회 요청<br /><br />App only 사용 시 15분당 75회 요청 | OAuth 1.0a 사용 시 15분당 900회 요청<br /><br />OAuth 2.0 사용 시 15분당 900회 요청<br /><br />App only 사용 시 15분당 900회 요청 |

**리스트 멤버십 조회**

|                                                       |                                                                  |                                                                                                        |
| :---------------------------------------------------- | :--------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------- |
| 설명                                                    | 표준 v1.1                                                          | X API v2                                                                                               |
| 지원 HTTP 메서드                                           | `GET`                                                            | `GET`                                                                                                  |
| 호스트 도메인                                               | `https://api.x.com`                                              | `https://api.x.com`                                                                                    |
| 엔드포인트 경로                                              | `/1.1/lists/memberships.json`                                    | `/2/users/:id/list_memberships`                                                                        |
| [인증](/ko/resources/fundamentals/authentication)       | OAuth 1.0a 사용자 컨텍스트<br /><br />App only                          | OAuth 1.0a 사용자 컨텍스트<br /><br />OAuth 2.0 Authorization Code with PKCE<br /><br />App only              |
| 기본 요청 [요청 한도](/ko/resources/fundamentals/rate-limits) | OAuth 1.0a 사용 시 15분당 75회 요청<br /><br />App only 사용 시 15분당 75회 요청 | OAuth 1.0a 사용 시 15분당 75회 요청<br /><br />OAuth 2.0 사용 시 15분당 75회 요청<br /><br />App only 사용 시 15분당 75회 요청 |

<div id="manage-list-members">
  ### 리스트 멤버 관리
</div>

v2 리스트 멤버 관리 엔드포인트는 기존 [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) 엔드포인트를 대체합니다.

아래 표는 기존 v1.1과 X API v2 리스트 엔드포인트를 비교한 것입니다:

**멤버 추가**

| 설명                                                 | 기존 v1.1                                | X API v2                                                              |
| :------------------------------------------------- | :------------------------------------- | :-------------------------------------------------------------------- |
| 지원 HTTP 메서드                                        | POST                                   | POST                                                                  |
| 호스트 도메인                                            | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com)                                |
| 엔드포인트 경로                                           | /1.1/lists/members/create.json         | /2/lists/:id/members                                                  |
| [인증](/ko/resources/fundamentals/authentication)    | OAuth 1.0a 사용자 컨텍스트                    | OAuth 1.0a 사용자 컨텍스트<br /><br />OAuth 2.0 Authorization Code with PKCE |
| 기본 [요청 한도](/ko/resources/fundamentals/rate-limits) | 없음                                     | 사용자당 15분에 300개 요청                                                     |

**멤버 제거**

| 설명                                                 | 기존 v1.1                                | X API v2                                                              |
| :------------------------------------------------- | :------------------------------------- | :-------------------------------------------------------------------- |
| 지원 HTTP 메서드                                        | POST                                   | DELETE                                                                |
| 호스트 도메인                                            | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com)                                |
| 엔드포인트 경로                                           | /1.1/lists/members/destroy.json        | /2/lists/:id/:user\_id                                                |
| [인증](/ko/resources/fundamentals/authentication)    | OAuth 1.0a 사용자 컨텍스트                    | OAuth 1.0a 사용자 컨텍스트<br /><br />OAuth 2.0 Authorization Code with PKCE |
| 기본 [요청 한도](/ko/resources/fundamentals/rate-limits) | 없음                                     | 사용자당 15분에 300개 요청                                                     |

X API v2 엔드포인트에 액세스하려면 먼저 [개발자 계정에 가입](https://developer.x.com/en/portal/petition/essential/basic-info)해야 합니다. 인증 시에는 [프로젝트](/ko/resources/fundamentals/developer-apps) 내에 있는 [개발자 App](/ko/resources/fundamentals/developer-apps)의 키와 토큰을 사용해야 합니다. 

X API v2 엔드포인트에 대한 액세스 방법은 [시작하기](/ko/x-api/getting-started/getting-access) 페이지에서 자세히 알아볼 수 있습니다.

<div className="flex space-x-2">
  <Button href="/ko/x-api/lists/list-members/quickstart/overview">
    빠른 시작
  </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>
