> ## Documentation Index
> Fetch the complete documentation index at: https://docs.x.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Manage Lists 마이그레이션 개요

> Standard v1.1의 lists 엔드포인트에서 X API v2 manage Lists 엔드포인트로 List 생성, 업데이트, 삭제를 매개변수 및 제한 매핑과 함께 이전합니다.

export const Button = ({href, children}) => {
  return <div className="not-prose">
    <a href={href}>
      <button className="x-btn">
        <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>;
};

## X API의 Lists 엔드포인트 비교

v2 manage Lists 엔드포인트는 결국 [POST lists/create](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/post-lists-create), [POST lists/destroy](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/post-lists-destroy) 및 [POST lists/update](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/post-lists-update)를 대체할 예정입니다. 이 엔드포인트의 이전 버전을 사용하는 코드, 앱 또는 도구를 가지고 있고, 새로운 X API v2로 마이그레이션을 고려하고 있다면 이 가이드가 도움이 될 것입니다.

다음 표는 standard v1.1과 X API v2의 List 엔드포인트를 비교합니다:

**List 생성**

| Description                                             | Standard v1.1                          | X API v2                               |
| :------------------------------------------------------ | :------------------------------------- | :------------------------------------- |
| 지원되는 HTTP 메서드                                           | POST                                   | POST                                   |
| Host 도메인                                                | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com) |
| 엔드포인트 경로                                                | /1.1/lists/create.json                 | /2/lists                               |
| [인증](/resources/fundamentals/authentication)            | OAuth 1.0a User Context                | OAuth 1.0a User Context                |
| 기본 요청 [rate limit](/resources/fundamentals/rate-limits) | 없음                                     | 15분당 300회 요청 (사용자당)                    |

**List 삭제**

| Description                                             | Standard v1.1                          | X API v2                               |
| :------------------------------------------------------ | :------------------------------------- | :------------------------------------- |
| 지원되는 HTTP 메서드                                           | POST                                   | DELETE                                 |
| Host 도메인                                                | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com) |
| 엔드포인트 경로                                                | /1.1/lists/destroy.json                | /2/lists/:id                           |
| [인증](/resources/fundamentals/authentication)            | OAuth 1.0a User Context                | OAuth 1.0a User Context                |
| 기본 요청 [rate limit](/resources/fundamentals/rate-limits) | 없음                                     | 15분당 300회 요청 (사용자당)                    |

**List 업데이트**

| Description                                             | Standard v1.1                          | X API v2                               |
| :------------------------------------------------------ | :------------------------------------- | :------------------------------------- |
| 지원되는 HTTP 메서드                                           | POST                                   | PUT                                    |
| Host 도메인                                                | [https://api.x.com](https://api.x.com) | [https://api.x.com](https://api.x.com) |
| 엔드포인트 경로                                                | /1.1/lists/update.json                 | /2/lists/:id                           |
| [인증](/resources/fundamentals/authentication)            | OAuth 1.0a User Context                | OAuth 1.0a User Context                |
| 기본 요청 [rate limit](/resources/fundamentals/rate-limits) | 없음                                     | 15분당 300회 요청 (사용자당)                    |

X API v2 엔드포인트에 액세스하려면 [developer account에 가입](https://developer.x.com/en/portal/petition/essential/basic-info)해야 합니다. 인증할 때는 [Project](/resources/fundamentals/developer-apps) 내에 있는 [developer App](/resources/fundamentals/developer-apps)의 key와 token을 사용해야 합니다.

X API v2 엔드포인트에 액세스하는 방법에 대해 자세히 알아보려면 [시작하기](/x-api/getting-started/getting-access) 페이지를 참조하세요.

<div className="flex space-x-2">
  <Button href="/x-api/lists/manage-lists/quickstart">
    퀵스타트
  </Button>

  <Button href="https://github.com/xdevplatform/Twitter-API-v2-sample-code">
    예제 코드
  </Button>

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