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

v2 리스트 포스트 조회 엔드포인트는 기존 v1.1 표준 [GET lists/statuses](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/get-lists-statuses)를 대체합니다. 이 버전의 엔드포인트를 사용하는 코드, App 또는 도구가 있고 최신 X API v2 엔드포인트로 마이그레이션을 고려하고 있다면 이 가이드 모음이 도움이 될 것입니다.

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

**id로 리스트 조회**

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

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/list-tweets/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>
