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

v2 리스트 관리 엔드포인트는 최종적으로 [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)를 대체하게 됩니다. 이 엔드포인트의 이전 버전을 사용하는 코드, App 또는 도구가 있고 새로운 X API v2로 마이그레이션하는 것을 고려 중이라면 이 가이드를 참고하세요. 

아래 표는 표준 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/create.json                 | /2/lists                               |
| [Authentication](/ko/resources/fundamentals/authentication) | OAuth 1.0a User Context                | OAuth 1.0a User Context                |
| 기본 [요청 한도](/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/destroy.json                | /2/lists/:id                           |
| [Authentication](/ko/resources/fundamentals/authentication) | OAuth 1.0a User Context                | OAuth 1.0a User Context                |
| 기본 [요청 한도](/ko/resources/fundamentals/rate-limits)          | 없음                                     | 15분당 300회 요청(사용자 기준)                   |

**리스트 업데이트**

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

X API v2 엔드포인트에 액세스하려면 [개발자 계정에 가입](https://developer.x.com/en/portal/petition/essential/basic-info)해야 합니다. 인증 시에는 [developer App](/ko/resources/fundamentals/developer-apps)에서 발급된 키와 토큰을 사용해야 하며, 이 App은 [Project](/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/manage-lists/quickstart">
    빠른 시작
  </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>
